mirror of
https://github.com/libgit2/libgit2.git
synced 2026-06-22 06:26:26 +00:00
Introduced LINK_WITH_STATIC_LIBRARIES per PR comments.
This commit is contained in:
@@ -301,6 +301,8 @@ compiler and linker. These flags are rarely used but can be useful for
|
||||
- `CMAKE_FIND_ROOT_PATH`: Override the search path for libraries
|
||||
- `ZLIB_LIBRARY`, `OPENSSL_SSL_LIBRARY` AND `OPENSSL_CRYPTO_LIBRARY`:
|
||||
Tell CMake where to find those specific libraries
|
||||
- `LINK_WITH_STATIC_LIBRARIES`: Link only with static versions of
|
||||
system libraries
|
||||
|
||||
MacOS X
|
||||
-------
|
||||
|
||||
@@ -92,7 +92,7 @@ else()
|
||||
set(CMAKE_C_ARCHIVE_FINISH "<CMAKE_RANLIB> -D <TARGET>")
|
||||
endif()
|
||||
|
||||
if(NOT APPLE AND NOT BUILD_SHARED_LIBS)
|
||||
if(NOT BUILD_SHARED_LIBS AND LINK_WITH_STATIC_LIBRARIES)
|
||||
set(CMAKE_FIND_LIBRARY_SUFFIXES ".a")
|
||||
endif()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user