- write extentive unit tests (maybe this already exist in other projects) - the level2 functions still have to be implemented
11 lines
257 B
CMake
11 lines
257 B
CMake
|
|
set(EigenBlas_SRCS single.cpp double.cpp complex_single.cpp complex_double.cpp)
|
|
|
|
add_library(eigen_blas SHARED ${EigenBlas_SRCS})
|
|
|
|
install(TARGETS eigen_blas
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib)
|
|
|