mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
6fb3e5f176
Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style.
18 lines
604 B
CMake
18 lines
604 B
CMake
|
|
if (OPENBLAS_LIBRARIES)
|
|
set(OPENBLAS_FIND_QUIETLY TRUE)
|
|
endif ()
|
|
|
|
find_file(OPENBLAS_LIBRARIES NAMES libopenblas.so libopenblas.so.0 PATHS /usr/lib /usr/lib64 $ENV{OPENBLASDIR} ${LIB_INSTALL_DIR})
|
|
find_library(OPENBLAS_LIBRARIES openblas PATHS $ENV{OPENBLASDIR} ${LIB_INSTALL_DIR})
|
|
|
|
if(OPENBLAS_LIBRARIES AND CMAKE_COMPILER_IS_GNUCXX)
|
|
set(OPENBLAS_LIBRARIES ${OPENBLAS_LIBRARIES} "-lpthread -lgfortran")
|
|
endif()
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(OPENBLAS DEFAULT_MSG
|
|
OPENBLAS_LIBRARIES)
|
|
|
|
mark_as_advanced(OPENBLAS_LIBRARIES)
|