Browse Source

Building utest does not absolutely depend on fortran anymore

(this is the cmake equivalent of #2141, useful for testing on time-limited CI)
pull/2165/head
Martin Kroeker GitHub 7 years ago
parent
commit
d2703cfee2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      CMakeLists.txt

+ 2
- 1
CMakeLists.txt View File

@@ -211,7 +211,8 @@ if (USE_THREAD)
target_link_libraries(${OpenBLAS_LIBNAME} ${CMAKE_THREAD_LIBS_INIT}) target_link_libraries(${OpenBLAS_LIBNAME} ${CMAKE_THREAD_LIBS_INIT})
endif() endif()


if (MSVC OR NOT NOFORTRAN)
#if (MSVC OR NOT NOFORTRAN)
if (NOT NO_CBLAS)
# Broken without fortran on unix # Broken without fortran on unix
add_subdirectory(utest) add_subdirectory(utest)
endif() endif()


Loading…
Cancel
Save