From efdc525a22f9673de7a8a19c4cf75f3ab9ccead7 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Wed, 27 Apr 2022 21:03:14 -0700 Subject: [PATCH] cmake: try harder to find the cmake modules we install While I clearly recall that in the past the couple of cmake modules that were installed when building the dependencies were found, in my latest tests on macOS 12 with the latest cmake this seems to fail. This seems like a cheap quick way to ensure that things behave as expected. Signed-off-by: Dirk Hohndel --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b21347766..8293fd754 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,6 +20,7 @@ endif () set(CMAKE_MODULE_PATH ${${PROJECT_NAME}_SOURCE_DIR}/cmake/Modules + ${${PROJECT_NAME}_SOURCE_DIR}/../install-root/lib/cmake ${CMAKE_MODULE_PATH} )