diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-01-10 11:53:26 +0100 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-01-10 11:53:26 +0100 |
commit | d08aee7a7eae23aaf35c1f129faa5a70d2f5510f (patch) | |
tree | 900362d33e020797fa6b2b7bafc87e9a39172b10 /external | |
parent | Merge pull request #2990 (diff) | |
parent | Add misc hardening flags to the cmake machinery (diff) | |
download | monero-d08aee7a7eae23aaf35c1f129faa5a70d2f5510f.tar.xz |
Merge pull request #2993
776b44f1 Add misc hardening flags to the cmake machinery (moneromooo-monero)
Diffstat (limited to 'external')
-rw-r--r-- | external/db_drivers/liblmdb/CMakeLists.txt | 1 | ||||
-rw-r--r-- | external/easylogging++/CMakeLists.txt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/external/db_drivers/liblmdb/CMakeLists.txt b/external/db_drivers/liblmdb/CMakeLists.txt index d3d3df6ad..3a09712de 100644 --- a/external/db_drivers/liblmdb/CMakeLists.txt +++ b/external/db_drivers/liblmdb/CMakeLists.txt @@ -54,3 +54,4 @@ if(${ARCH_WIDTH} EQUAL 32) target_compile_definitions(lmdb PUBLIC -DMDB_VL32) endif() +set_property(TARGET lmdb APPEND PROPERTY COMPILE_FLAGS "-fPIC") diff --git a/external/easylogging++/CMakeLists.txt b/external/easylogging++/CMakeLists.txt index 97d0bf571..8fe3fa487 100644 --- a/external/easylogging++/CMakeLists.txt +++ b/external/easylogging++/CMakeLists.txt @@ -54,4 +54,5 @@ if (BUILD_GUI_DEPS) ARCHIVE DESTINATION ${lib_folder} LIBRARY DESTINATION ${lib_folder}) endif() +set_property(TARGET easylogging APPEND PROPERTY COMPILE_FLAGS "-fPIC") |