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 /src/wallet | |
| parent | 464c2805e5512117970974d5cadc4e59eee5d921 (diff) | |
| download | monzero-core-7d708e422397fb0ba8ac29855eb27964115e7217.tar.gz monzero-core-7d708e422397fb0ba8ac29855eb27964115e7217.tar.xz monzero-core-7d708e422397fb0ba8ac29855eb27964115e7217.zip | |
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 'src/wallet')
| -rw-r--r-- | src/wallet/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/CMakeLists.txt b/src/wallet/CMakeLists.txt index e32d86a59..af3ec0fb8 100644 --- a/src/wallet/CMakeLists.txt +++ b/src/wallet/CMakeLists.txt @@ -46,10 +46,10 @@ bitmonero_add_library(wallet ${wallet_headers} ${wallet_private_headers}) target_link_libraries(wallet - PUBLIC + LINK_PUBLIC cryptonote_core mnemonics - PRIVATE + LINK_PRIVATE ${Boost_SERIALIZATION_LIBRARY} ${Boost_SYSTEM_LIBRARY} ${Boost_THREAD_LIBRARY} |
