aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/CMakeLists.txt
blob: 34408c017004409072f71b860477790cb767dadf (plain)
1
2
3
4
5
6
7
8
9
10
11
add_subdirectory(Eigen)
if(EIGEN_BUILD_DOC)
  add_subdirectory(doc EXCLUDE_FROM_ALL)
endif()
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()