From b5c0d20d05be427b002cdbd6b7b08b56872509c2 Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Thu, 5 Jun 2025 16:48:13 -0500 Subject: Include headers in installation --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index a460044..b3c83bc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,3 +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) -- cgit