aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/CMakeLists.txt
blob: 2d96726d442fe0bdd7cf66d522e3bdfc1a5d1fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
file(GLOB Eigen_directory_files "*")
foreach(f ${Eigen_directory_files})
  if(NOT f MATCHES ".txt" AND NOT f MATCHES "${CMAKE_CURRENT_SOURCE_DIR}/src")
    list(APPEND Eigen_directory_files_to_install ${f})
  endif()
endforeach(f ${Eigen_directory_files})

install(FILES
  ${Eigen_directory_files_to_install}
  DESTINATION ${INCLUDE_INSTALL_DIR}/Eigen COMPONENT Devel
  )

add_subdirectory(src)