* * *
disable unsupportet/test when test are disabled
* * *
rename EIGEN_ENABLE_TESTS to BUILD_TESTING
* * *
consider BUILD_TESTING in blas
(grafted from c4fc2611ba
)
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()
|