eigen/tvmet-1.7.1/include/tvmet/CMakeLists.txt

21 lines
501 B
CMake
Raw Normal View History

INCLUDE (CheckIncludeFiles)
2007-05-30 14:57:40 +08:00
# the following are directories where stuff will be installed to
set(INCLUDE_INSTALL_DIR
"${CMAKE_INSTALL_PREFIX}/include/tvmet"
CACHE PATH
"The subdirectory to the header prefix"
FORCE)
2007-05-30 14:57:40 +08:00
FILE(GLOB gmm_header_SRCS "*.h")
CHECK_INCLUDE_FILES (dlfcn.h TVMET_HAVE_DLFCN_H)
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/config.h.cmake
${INCLUDE_INSTALL_DIR}/config.h)
2007-05-30 14:57:40 +08:00
install(FILES
${gmm_header_SRCS}
DESTINATION ${INCLUDE_INSTALL_DIR}
2007-05-30 14:57:40 +08:00
)