2010-10-14 19:46:01 +08:00
|
|
|
project(EigenBlas CXX Fortran)
|
2009-10-03 00:45:24 +08:00
|
|
|
|
2009-09-28 05:48:53 +08:00
|
|
|
add_custom_target(blas)
|
2009-09-25 19:08:39 +08:00
|
|
|
|
2010-03-02 21:50:41 +08:00
|
|
|
set(EigenBlas_SRCS single.cpp double.cpp complex_single.cpp complex_double.cpp xerbla.cpp)
|
2009-09-25 19:08:39 +08:00
|
|
|
|
2010-03-25 02:34:18 +08:00
|
|
|
add_library(eigen_blas_static ${EigenBlas_SRCS})
|
|
|
|
add_library(eigen_blas SHARED ${EigenBlas_SRCS})
|
2010-04-19 23:19:22 +08:00
|
|
|
|
|
|
|
if(EIGEN_STANDARD_LIBRARIES_TO_LINK_TO)
|
|
|
|
target_link_libraries(eigen_blas_static ${EIGEN_STANDARD_LIBRARIES_TO_LINK_TO})
|
|
|
|
target_link_libraries(eigen_blas ${EIGEN_STANDARD_LIBRARIES_TO_LINK_TO})
|
|
|
|
endif()
|
|
|
|
|
2010-03-25 02:34:18 +08:00
|
|
|
add_dependencies(blas eigen_blas eigen_blas_static)
|
2009-09-25 19:08:39 +08:00
|
|
|
|
|
|
|
install(TARGETS eigen_blas
|
|
|
|
RUNTIME DESTINATION bin
|
|
|
|
LIBRARY DESTINATION lib
|
|
|
|
ARCHIVE DESTINATION lib)
|
|
|
|
|
2010-10-14 19:46:01 +08:00
|
|
|
add_subdirectory(testing)
|