forgot to svn add some CMakeLists

This commit is contained in:
Benoit Jacob 2007-09-05 10:42:54 +00:00
parent 1dabb45d94
commit 13a82795f7

12
src/CMakeLists.txt Normal file
View File

@ -0,0 +1,12 @@
FILE(GLOB Eigen_SRCS "*.h")
SET(INCLUDE_INSTALL_DIR
"${CMAKE_INSTALL_PREFIX}/include/eigen2"
CACHE PATH
"The directory where we install the header files"
FORCE)
INSTALL(FILES
${Eigen_SRCS}
DESTINATION ${INCLUDE_INSTALL_DIR}
)