diff options
author | ethdev zug <marek.kotewicz@gmail.com> | 2015-05-27 05:27:28 +0800 |
---|---|---|
committer | ethdev zug <marek.kotewicz@gmail.com> | 2015-05-27 05:27:28 +0800 |
commit | 8586aae5e6598d31f5098c49e5b734d778e41816 (patch) | |
tree | 73f15cc7499e3ef0f317d34dbc3e4e6ee65612da | |
parent | cfaa99727a5f55759e1f78349737a9dc07735984 (diff) | |
parent | 373a296314f5de477a5950baacbab6b371d6674b (diff) | |
download | dexon-solidity-8586aae5e6598d31f5098c49e5b734d778e41816.tar.gz dexon-solidity-8586aae5e6598d31f5098c49e5b734d778e41816.tar.zst dexon-solidity-8586aae5e6598d31f5098c49e5b734d778e41816.zip |
Merge branch 'develop' of https://github.com/lotrf3/cpp-ethereum into develop
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 39a235c5..69a3d51e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,6 +69,9 @@ endforeach(file) file(GLOB HEADERS "*.h") add_executable(testeth ${SRC_LIST} ${HEADERS}) +if(WIN32) + target_link_libraries(testeth Iphlpapi) +endif() target_link_libraries(testeth ${Boost_UNIT_TEST_FRAMEWORK_LIBRARIES}) target_link_libraries(testeth ${CURL_LIBRARIES}) target_link_libraries(testeth ethereum) |