Browse Source

Merge pull request #5274 from martin-frbg/issue5247

Expressly provide a shared libs option in CMakelists.txt
tags/v0.3.30
Martin Kroeker GitHub 8 months ago
parent
commit
a5f701c4ab
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      CMakeLists.txt

+ 1
- 0
CMakeLists.txt View File

@@ -62,6 +62,7 @@ option(CPP_THREAD_SAFETY_TEST "Run a massively parallel DGEMM test to confirm th

option(CPP_THREAD_SAFETY_GEMV "Run a massively parallel DGEMV test to confirm thread safety of the library (requires OpenMP)" OFF)
option(BUILD_STATIC_LIBS "Build static library" OFF)
option(BUILD_SHARED_LIBS "Build shared library" OFF)
if(NOT BUILD_STATIC_LIBS AND NOT BUILD_SHARED_LIBS)
set(BUILD_STATIC_LIBS ON CACHE BOOL "Build static library" FORCE)
endif()


Loading…
Cancel
Save