From 9108b8e36c44478502e6affadc474b207055dc15 Mon Sep 17 00:00:00 2001 From: scott snyder Date: Wed, 12 Feb 2020 04:06:31 -0500 Subject: [PATCH] Fix list of headers to install in CMakeLists.txt The path of headers to install was pointing at a nonexistent directory. Fix. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a86d5bd..0040790 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,7 +115,7 @@ install(FILES ${CMAKE_CURRENT_BINARY_DIR}/this${PackageName}.sh #--- install target------------------------------------- -FILE(GLOB hfiles "ILD/include/*.h") +FILE(GLOB hfiles "include/DDKalTest/*.h") INSTALL(FILES ${hfiles} DESTINATION include/${PackageName} )