From cbf26a42df0c323e00a2444932be0a4c66b44f74 Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sat, 7 Jun 2025 06:51:46 -0700 Subject: Update CMakeLists with include/install fix --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') 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) -- cgit