diff options
author | subtly <subtly> | 2015-07-05 15:48:22 +0800 |
---|---|---|
committer | subtly <subtly> | 2015-07-05 15:48:22 +0800 |
commit | 5ca31adda6ad8b6391a463cb48476a63a195c9b7 (patch) | |
tree | b6d7098348915e3663cda20dc9c42d93b5af7bb2 /CMakeLists.txt | |
parent | 235f17c67427ed23c98f74c5863f7e1722815cce (diff) | |
parent | a393acd0b26d6c9cc2bd7c74730fdfb9d6fc9ed6 (diff) | |
download | dexon-solidity-5ca31adda6ad8b6391a463cb48476a63a195c9b7.tar.gz dexon-solidity-5ca31adda6ad8b6391a463cb48476a63a195c9b7.tar.zst dexon-solidity-5ca31adda6ad8b6391a463cb48476a63a195c9b7.zip |
Merge branch 'develop' into rlpx
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d39a5cca..952b1674 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -74,7 +74,9 @@ 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) -target_link_libraries(testeth secp256k1) +if (NOT WIN32) + target_link_libraries(testeth secp256k1) +endif() if (JSCONSOLE) target_link_libraries(testeth jsengine) |