From cee32ce1323508a992dab8368ae01d90dcac91a4 Mon Sep 17 00:00:00 2001 From: Eyck Jentzsch Date: Mon, 13 Apr 2026 22:10:03 -0700 Subject: [PATCH] fixes installtion setup to also install nonstd and rigtorp --- src/common/CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 33981b5d..d6817e22 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -78,3 +78,14 @@ install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/util COMPONENT util FILES_MATCHING # install only matched files PATTERN "*.h" # select header files ) +install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/nonstd COMPONENT util + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} # target directory + FILES_MATCHING # install only matched files + PATTERN "*.h" # select header files + ) + install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/rigtorp COMPONENT util + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} # target directory + FILES_MATCHING # install only matched files + PATTERN "*.h" # select header files + ) + \ No newline at end of file