mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
7 lines
156 B
CMake
7 lines
156 B
CMake
file(GLOB Eigen_src_subdirectories "*")
|
|
foreach(f ${Eigen_src_subdirectories})
|
|
if(NOT f MATCHES ".txt")
|
|
add_subdirectory(${f})
|
|
endif()
|
|
endforeach()
|