You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
607 B
19 lines
607 B
include(RegexUtils) |
|
test_escape_string_as_regex() |
|
|
|
file(GLOB Eigen_directory_files "*") |
|
|
|
escape_string_as_regex(ESCAPED_CMAKE_CURRENT_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}") |
|
|
|
foreach(f ${Eigen_directory_files}) |
|
if(NOT f MATCHES "\\.txt" AND NOT f MATCHES "${ESCAPED_CMAKE_CURRENT_SOURCE_DIR}/[.].+" AND NOT f MATCHES "${ESCAPED_CMAKE_CURRENT_SOURCE_DIR}/src") |
|
list(APPEND Eigen_directory_files_to_install ${f}) |
|
endif() |
|
endforeach(f ${Eigen_directory_files}) |
|
|
|
install(FILES |
|
${Eigen_directory_files_to_install} |
|
DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen COMPONENT Devel |
|
) |
|
|
|
add_subdirectory(src)
|
|
|