aboutsummaryrefslogtreecommitdiffhomepage
path: root/blas/CMakeLists.txt
blob: 477693bad37dcf4e572175464235288d69568cf5 (plain)
1
2
3
4
5
6
7
8
9
10

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)