From e68c2707cf2bed657b4ee5445d7e04ce35ea2f57 Mon Sep 17 00:00:00 2001 From: Lukas Spies Date: Mon, 18 May 2026 16:26:23 +0200 Subject: [PATCH 1/2] also install sai2.hpp and util.hpp, install into libsai subfolder --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b619e04..6d634e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -169,7 +169,9 @@ if( MASTER_PROJECT ) install( FILES include/sai.hpp - DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} + include/sai2.hpp + include/util.hpp + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libsai ) endif() From 7302021ea120bd5ec102ef33a9d20c59d8574710 Mon Sep 17 00:00:00 2001 From: Lukas Spies Date: Tue, 19 May 2026 09:31:39 +0200 Subject: [PATCH 2/2] change include subdir to sai, omitting lib prefix --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d634e9..30f1ac5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -171,7 +171,7 @@ if( MASTER_PROJECT ) FILES include/sai.hpp include/sai2.hpp include/util.hpp - DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/libsai + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/sai ) endif()