diff options
author | ethdev <marek.kotewicz@gmail.com> | 2014-12-16 02:01:20 +0800 |
---|---|---|
committer | ethdev <marek.kotewicz@gmail.com> | 2014-12-16 02:01:20 +0800 |
commit | 8266da7f60d8fea5899611cc9bc26452c1d4681f (patch) | |
tree | 518345ddac586db228d9ba1b75fba57b0cfb4eab | |
parent | a576b38125cf0f1b11c97849cafeb36aa0e7c8eb (diff) | |
download | dexon-solidity-8266da7f60d8fea5899611cc9bc26452c1d4681f.tar.gz dexon-solidity-8266da7f60d8fea5899611cc9bc26452c1d4681f.tar.zst dexon-solidity-8266da7f60d8fea5899611cc9bc26452c1d4681f.zip |
boost library -> libraries
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e618f7e..f862de24 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ 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 ${Boost_UNIT_TEST_FRAMEWORK_LIBRARIES}) target_link_libraries(testeth ${CURL_LIBRARIES}) target_link_libraries(testeth ethereum) target_link_libraries(testeth ethcore) @@ -25,6 +25,6 @@ if (JSONRPC) target_link_libraries(testeth ${JSON_RPC_CPP_CLIENT_LIBRARIES}) endif() -target_link_libraries(createRandomTest ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE}) +target_link_libraries(createRandomTest ${Boost_UNIT_TEST_FRAMEWORK_LIBRARIES}) target_link_libraries(createRandomTest ethereum) target_link_libraries(createRandomTest ethcore) |