Add lib/cmake/Catch2 to conan builddirs in package recipe so extras/*.cmake files are packaged

This commit is contained in:
Murray Johnson 2022-06-13 08:54:16 -07:00 committed by Martin Hořeňovský
parent fa9416426a
commit 8110ee9206
1 changed files with 1 additions and 0 deletions

View File

@ -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"