mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
c4fc2611ba
* * * disable unsupportet/test when test are disabled * * * rename EIGEN_ENABLE_TESTS to BUILD_TESTING * * * consider BUILD_TESTING in blas
10 lines
263 B
CMake
10 lines
263 B
CMake
add_subdirectory(Eigen)
|
|
add_subdirectory(doc EXCLUDE_FROM_ALL)
|
|
if(BUILD_TESTING)
|
|
if(EIGEN_LEAVE_TEST_IN_ALL_TARGET)
|
|
add_subdirectory(test) # can't do EXCLUDE_FROM_ALL here, breaks CTest
|
|
else()
|
|
add_subdirectory(test EXCLUDE_FROM_ALL)
|
|
endif()
|
|
endif()
|