From 8110ee92060f3734af9210ecec4ff41b8e361b56 Mon Sep 17 00:00:00 2001 From: Murray Johnson Date: Mon, 13 Jun 2022 08:54:16 -0700 Subject: [PATCH] Add lib/cmake/Catch2 to conan builddirs in package recipe so extras/*.cmake files are packaged --- conanfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conanfile.py b/conanfile.py index c6f12e07..7aa27ef5 100644 --- a/conanfile.py +++ b/conanfile.py @@ -51,6 +51,7 @@ conan_basic_setup()'''.format(line_to_replace, self.install_folder.replace("\\", self.cpp_info.components["catch2base"].names["cmake_find_package_multi"] = "Catch2" self.cpp_info.components["catch2base"].names["pkg_config"] = "Catch2" self.cpp_info.components["catch2base"].libs = ["Catch2" + lib_suffix] + self.cpp_info.components["catch2base"].builddirs.append("lib/cmake/Catch2") # Catch2WithMain self.cpp_info.components["catch2main"].names["cmake_find_package"] = "Catch2WithMain" self.cpp_info.components["catch2main"].names["cmake_find_package_multi"] = "Catch2WithMain"