aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CMakeLists.txt
blob: d5cdda888077eebf63d9fa818e7a9c590ab2c501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set(Eigen_SRCS
  All
  Core
  Manip
)

SET(INCLUDE_INSTALL_DIR
    "${CMAKE_INSTALL_PREFIX}/include/eigen2"
    CACHE PATH
    "The directory where we install the header files"
    FORCE)

INSTALL(FILES 
  ${Eigen_SRCS}
  DESTINATION ${INCLUDE_INSTALL_DIR}
  )

add_subdirectory(internal)