From 9cb9e6e968b37a3b7c5ee3da806ff1870b5f0b09 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Mon, 3 Jun 2024 10:48:07 -0500 Subject: [PATCH] added install --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a1c48f..7b08f20 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,3 +22,9 @@ option(DTL_ENABLE_EXAMPLES "Enable DTL examples" OFF) if(DTL_ENABLE_EXAMPLES) include(examples/CMakeLists.txt) endif() + +install( + DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/include/ + DESTINATION include + FILES_MATCHING PATTERN "*.hpp" +)