mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
3eccfd1a78
-fix CMakeLists, public headers weren't getting installed
14 lines
304 B
CMake
14 lines
304 B
CMake
SET(Eigen_SRCS Core CoreDeclarations LU Cholesky QR)
|
|
|
|
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}/Eigen
|
|
)
|
|
|
|
ADD_SUBDIRECTORY(src) |