1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-29 04:54:28 +01:00

Fix header install location. (#256)

This commit is contained in:
Alex Collins
2017-10-11 21:37:23 +01:00
committed by Matias Fontanini
parent 6429dcd03f
commit ab2850e22e

View File

@@ -343,11 +343,10 @@ INSTALL(
COMPONENT dev
)
#Recursively list of all headers, with paths relative to include/tins
FILE(GLOB_RECURSE INCLUDE_FILES "include/tins/*.h")
# Install all headers in include/
INSTALL(
FILES ${INCLUDE_FILES}
DESTINATION .
DIRECTORY ${CMAKE_SOURCE_DIR}/include/
DESTINATION include
COMPONENT Headers
FILES_MATCHING PATTERN "*.h*"
)