mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-04 18:54:00 +08:00
Pulled latest updates from trunk
This commit is contained in:
parent
f899e08946
commit
6f3cd529af
@ -126,7 +126,8 @@ if(NOT MSVC)
|
||||
if(COMPILER_SUPPORT_WERROR)
|
||||
set(CMAKE_REQUIRED_FLAGS "-Werror")
|
||||
endif()
|
||||
|
||||
ei_add_cxx_compiler_flag("-static")
|
||||
ei_add_cxx_compiler_flag("-fPIC")
|
||||
ei_add_cxx_compiler_flag("-pedantic")
|
||||
ei_add_cxx_compiler_flag("-Wall")
|
||||
ei_add_cxx_compiler_flag("-Wextra")
|
||||
|
@ -29,16 +29,16 @@ else()
|
||||
endif()
|
||||
|
||||
add_library(eigen_blas_static ${EigenBlas_SRCS})
|
||||
add_library(eigen_blas SHARED ${EigenBlas_SRCS})
|
||||
#add_library(eigen_blas SHARED ${EigenBlas_SRCS})
|
||||
|
||||
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})
|
||||
# target_link_libraries(eigen_blas ${EIGEN_STANDARD_LIBRARIES_TO_LINK_TO})
|
||||
endif()
|
||||
|
||||
add_dependencies(blas eigen_blas eigen_blas_static)
|
||||
add_dependencies(blas eigen_blas_static)
|
||||
|
||||
install(TARGETS eigen_blas eigen_blas_static
|
||||
install(TARGETS eigen_blas_static
|
||||
RUNTIME DESTINATION bin
|
||||
LIBRARY DESTINATION lib
|
||||
ARCHIVE DESTINATION lib)
|
||||
|
@ -6,7 +6,7 @@ macro(ei_add_blas_test testname)
|
||||
set(filename ${testname}.f)
|
||||
add_executable(${targetname} ${filename})
|
||||
|
||||
target_link_libraries(${targetname} eigen_blas)
|
||||
target_link_libraries(${targetname} eigen_blas_static)
|
||||
|
||||
if(EIGEN_STANDARD_LIBRARIES_TO_LINK_TO)
|
||||
target_link_libraries(${targetname} ${EIGEN_STANDARD_LIBRARIES_TO_LINK_TO})
|
||||
|
Loading…
x
Reference in New Issue
Block a user