From 24bebf14901a0140207313cb84d4f69f74892b06 Mon Sep 17 00:00:00 2001 From: jkriege2 Date: Wed, 3 Jan 2024 21:15:49 +0100 Subject: [PATCH] fixed https://github.com/jkriege2/JKQtPlotter/issues/113: bug in CMake install()-commmand for jkqtplotter (some headers were missing) --- lib/jkqtplotter/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jkqtplotter/CMakeLists.txt b/lib/jkqtplotter/CMakeLists.txt index d8a0067f677..8ef4e03c249 100644 --- a/lib/jkqtplotter/CMakeLists.txt +++ b/lib/jkqtplotter/CMakeLists.txt @@ -307,7 +307,7 @@ if(JKQtPlotter_BUILD_STATIC_LIBS) DESTINATION lib/cmake ) endif(JKQtPlotter_BUILD_STATIC_LIBS) -install(FILES ${HEADERS} +install(FILES ${HEADERS_BASE} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/${libIncludeSubdir} COMPONENT Headers)