From 7d9b0aeadd7a7e58e85ff3bf64087fec9fb55514 Mon Sep 17 00:00:00 2001 From: mjvk Date: Tue, 9 Jun 2020 05:03:02 +0200 Subject: [PATCH] Install norm into include instead of include/norm (#11) * Install norm into include instead of include/norm Does not break existing use of norm * Only installs normApi.h --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1f5f885..a65c3d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -108,7 +108,7 @@ install( EXPORT normTargets DESTINATION ${INSTALL_CONFIGDIR} ) -install(DIRECTORY include/ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/norm) +install(FILES include/normApi.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) # Create a ConfigVersion.cmake file include(CMakePackageConfigHelpers)