aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/CMakeLists.txt
blob: 9a5666105a95bfac9c18c2913f14ad74d998162b (plain)
1
2
3
4
5
6
7
8
9
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()