From fc27f36decb04199ebe86bbdff7c91b1ff0bd4f2 Mon Sep 17 00:00:00 2001 From: LTLA Date: Sat, 5 Aug 2023 14:25:53 -0700 Subject: [PATCH] Use consistent namespacing for the include install location. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 663168b..61e73a4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ include(GNUInstallDirs) target_include_directories(tatami_mtx INTERFACE "$" - "$" + "$" ) # Building the test-related machinery, if we are compiling this library directly. @@ -47,7 +47,7 @@ endif() include(CMakePackageConfigHelpers) install(DIRECTORY include/ - DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/tatami_mtx) + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/tatami_tatami_mtx) install(TARGETS tatami_mtx EXPORT tatami_mtxTargets)