diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-02-13 19:51:56 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-02-13 19:51:56 +0200 |
commit | 354d47828607d3de103048f5e4143f13f7e14b37 (patch) | |
tree | 428aca0d999c95b471ea4c45188528697ddba447 /CMakeLists.txt | |
parent | Merge pull request #652 (diff) | |
parent | cmake: Include OpenSSL libraries in static linking (diff) | |
download | monero-354d47828607d3de103048f5e4143f13f7e14b37.tar.xz |
Merge pull request #656
9832d18 cmake: Include OpenSSL libraries in static linking (warptangent)
c2f2437 cmake: Remove unused variable (warptangent)
7205210 cmake: Fix unbound config compile settings (warptangent)
3e72d97 cmake: Fix overly broad use of dynamic link settings (warptangent)
Diffstat (limited to '')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ff4f88536..3e95f48ff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -437,7 +437,7 @@ elseif(APPLE OR FREEBSD OR OPENBSD) set(EXTRA_LIBRARIES "") elseif(NOT MSVC) find_library(RT rt) - set(EXTRA_LIBRARIES ${RT} ${DL}) + set(EXTRA_LIBRARIES ${RT}) endif() include(version.cmake) |