diff --git a/CMakeLists.txt b/CMakeLists.txt index 4a567ef5a..9ec1476fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -190,15 +190,6 @@ set(INCLUDE_DIR include) set(DOC_DIR "share/doc/${CPACK_PACKAGE_NAME}") set(DATA_DIR share/${CPACK_PACKAGE_NAME}) - -######################################################################## -# Install headers -######################################################################## -INSTALL(DIRECTORY include/ - DESTINATION "${INCLUDE_DIR}" - FILES_MATCHING PATTERN "*.h" -) - ######################################################################## # Compiler specific setup ######################################################################## diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index f35e79bf2..6b638cef5 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -25,3 +25,10 @@ add_subdirectory(src) add_subdirectory(include) add_subdirectory(examples) add_subdirectory(test) + +######################################################################## +# Install library headers +######################################################################## +INSTALL( DIRECTORY include/ + DESTINATION "${INCLUDE_DIR}" + FILES_MATCHING PATTERN "*.h" )