diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2014-12-12 20:13:29 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2014-12-12 20:13:29 +0800 |
commit | 84b0fc08b772c4d551ce8ab18879eb3a22fc8ca6 (patch) | |
tree | 017e5f0a8f63dd91dfd751363d901a0385502fb2 /CMakeLists.txt | |
parent | 3fefc4df0bf65d060695b1a0e6149ec7a6d8dbfd (diff) | |
download | dexon-solidity-84b0fc08b772c4d551ce8ab18879eb3a22fc8ca6.tar dexon-solidity-84b0fc08b772c4d551ce8ab18879eb3a22fc8ca6.tar.gz dexon-solidity-84b0fc08b772c4d551ce8ab18879eb3a22fc8ca6.tar.bz2 dexon-solidity-84b0fc08b772c4d551ce8ab18879eb3a22fc8ca6.tar.lz dexon-solidity-84b0fc08b772c4d551ce8ab18879eb3a22fc8ca6.tar.xz dexon-solidity-84b0fc08b772c4d551ce8ab18879eb3a22fc8ca6.tar.zst dexon-solidity-84b0fc08b772c4d551ce8ab18879eb3a22fc8ca6.zip |
jsonrpc _library -> _libraries
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 73003e80..7e618f7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,19 +12,19 @@ file(GLOB HEADERS "*.h") add_executable(testeth ${SRC_LIST} ${HEADERS}) add_executable(createRandomTest createRandomTest.cpp vm.cpp TestHelper.cpp) +target_link_libraries(testeth ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE}) +target_link_libraries(testeth ${CURL_LIBRARIES}) target_link_libraries(testeth ethereum) target_link_libraries(testeth ethcore) target_link_libraries(testeth secp256k1) target_link_libraries(testeth solidity) target_link_libraries(testeth webthree) -target_link_libraries(testeth ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE}) -target_link_libraries(testeth ${CURL_LIBRARIES}) if (JSONRPC) target_link_libraries(testeth web3jsonrpc) - target_link_libraries(testeth ${JSON_RPC_CPP_CLIENT_LIBRARY}) + target_link_libraries(testeth ${JSON_RPC_CPP_CLIENT_LIBRARIES}) endif() +target_link_libraries(createRandomTest ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE}) target_link_libraries(createRandomTest ethereum) target_link_libraries(createRandomTest ethcore) -target_link_libraries(createRandomTest ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE}) |