Install functor folder with cmake

This commit is contained in:
Leszek Swirski 2013-11-08 14:07:11 +00:00
parent cb8da751a0
commit b93520b1a5
2 changed files with 7 additions and 0 deletions

View File

@ -8,3 +8,4 @@ INSTALL(FILES
ADD_SUBDIRECTORY(products)
ADD_SUBDIRECTORY(util)
ADD_SUBDIRECTORY(arch)
ADD_SUBDIRECTORY(functors)

View File

@ -0,0 +1,6 @@
FILE(GLOB Eigen_Core_Functor_SRCS "*.h")
INSTALL(FILES
${Eigen_Core_Functor_SRCS}
DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen/src/Core/functors COMPONENT Devel
)