diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2014-10-24 14:48:14 -0400 |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2014-10-24 15:29:51 -0400 |
commit | 7d708e422397fb0ba8ac29855eb27964115e7217 (patch) | |
tree | 4bc144c393ff8c14d2a6bd443668088f4db5a189 /tests/core_tests | |
parent | cmake: fix up miniupnpc's define (diff) | |
download | monero-7d708e422397fb0ba8ac29855eb27964115e7217.tar.xz |
cmake: support 2.8.7
Older versions of CMake support LINK_{PUBLIC,PRIVATE} while newer
versions prefer PUBLIC and PRIVATE instead, but still support the LINK_
prefix.
Diffstat (limited to 'tests/core_tests')
-rw-r--r-- | tests/core_tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/core_tests/CMakeLists.txt b/tests/core_tests/CMakeLists.txt index b8f07b3d2..72c079554 100644 --- a/tests/core_tests/CMakeLists.txt +++ b/tests/core_tests/CMakeLists.txt @@ -58,7 +58,7 @@ add_executable(coretests ${core_tests_sources} ${core_tests_headers}) target_link_libraries(coretests - PRIVATE + LINK_PRIVATE cryptonote_core ${Boost_FILESYSTEM_LIBRARY} ${Boost_SYSTEM_LIBRARY} |