From 3b492861a8de855130bfdab2ad62a2812a7acad8 Mon Sep 17 00:00:00 2001
From: Cristian C Lalescu <Cristian.Lalescu@ds.mpg.de>
Date: Mon, 11 Mar 2019 15:28:06 +0100
Subject: [PATCH] keep header files in their own subfolder

We have many, some with generic names, so it's probably safer this way.
---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index a79942a5..7bf9c04b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -108,7 +108,7 @@ add_library(bfps ${source_files})
 target_link_libraries(bfps ${BFPS_LIBS})
 
 install(TARGETS bfps EXPORT BFPS_EXPORT DESTINATION lib/ )
-install(DIRECTORY ${PROJECT_SOURCE_DIR}/bfps/cpp DESTINATION include/ FILES_MATCHING PATTERN "*.h*")
+install(DIRECTORY ${PROJECT_SOURCE_DIR}/bfps/cpp DESTINATION include/bfps/ FILES_MATCHING PATTERN "*.h*")
 
 #####################################################################################
 ## Export the configuration
-- 
GitLab