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.
7 lines
308 B
7 lines
308 B
file(GLOB Eigen_src_subdirectories "*")
|
|
escape_string_as_regex(ESCAPED_CMAKE_CURRENT_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
foreach(f ${Eigen_src_subdirectories})
|
|
if(NOT f MATCHES "\\.txt" AND NOT f MATCHES "${ESCAPED_CMAKE_CURRENT_SOURCE_DIR}/[.].+" )
|
|
add_subdirectory(${f})
|
|
endif()
|
|
endforeach()
|