From b9d2a99f551243cd003baec653ffc751c41a3bb8 Mon Sep 17 00:00:00 2001 From: Juan Miguel Carceller Date: Wed, 25 Mar 2026 18:49:52 +0100 Subject: [PATCH] Install cmake files to lib/cmake/${PROJECT_NAME} Similar to what was done in iLCSoft/iLCUtil#36 and iLCSoft/iLCUtil#41. This is needed to make this package work with views in LCGCMake. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b026fc..e120c6d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -132,5 +132,5 @@ install(TARGETS ${PROJECT_NAME} # generate and install following configuration files CONFIGURE_FILE( ${PROJECT_SOURCE_DIR}/cmake/aidaTTConfig.cmake.in aidaTTConfig.cmake @ONLY ) -INSTALL( FILES ${PROJECT_BINARY_DIR}/aidaTTConfig.cmake DESTINATION . ) +INSTALL( FILES ${PROJECT_BINARY_DIR}/aidaTTConfig.cmake DESTINATION lib/cmake/${PROJECT_NAME} )