* Introduce make targets btest (build tests), blas (build blas lib), demos (build demos).

* 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
This commit is contained in:
Benoit Jacob
2009-09-27 17:48:53 -04:00
parent 6b23cb2101
commit 92480ffd26
14 changed files with 47 additions and 173 deletions

View File

@@ -1,7 +1,9 @@
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