diff options
author | Aaditya Dhruv <[email protected]> | 2025-06-07 06:51:46 -0700 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-06-07 06:51:46 -0700 |
commit | cbf26a42df0c323e00a2444932be0a4c66b44f74 (patch) | |
tree | 6a01ce3312e47140cd443bd94be6acb43f5ddd25 /CMakeLists.txt | |
parent | b5c0d20d05be427b002cdbd6b7b08b56872509c2 (diff) |
Update CMakeLists with include/install fix
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b3c83bc..132397b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,5 +6,5 @@ project(libjunk VERSION 1.0 add_library(junk SHARED) add_subdirectory(src) target_include_directories(junk PUBLIC include) -install(TARGETS junk DESTINATION lib) -install(FILES include DESTINATION include) +install(TARGETS junk) +install(DIRECTORY include/ DESTINATION include) |