* remove EIGEN_BUILD_TESTS and siblings * add summary at the end of cmake run, hopefully not too verbose * fix build of quaternion demo * kill remnants of old binary library option
13 lines
315 B
CMake
13 lines
315 B
CMake
add_custom_target(blas)
|
|
|
|
set(EigenBlas_SRCS single.cpp double.cpp complex_single.cpp complex_double.cpp)
|
|
|
|
add_library(eigen_blas SHARED ${EigenBlas_SRCS})
|
|
add_dependencies(blas eigen_blas)
|
|
|
|
install(TARGETS eigen_blas
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib)
|
|
|