diff options
author | Gav Wood <g@ethdev.com> | 2015-06-30 17:32:08 +0800 |
---|---|---|
committer | Gav Wood <g@ethdev.com> | 2015-06-30 17:32:08 +0800 |
commit | c81ab63779cde7bf5bf80d043bc0889d90cb1a3f (patch) | |
tree | a92b70a03448d166f9e3c3047083ac46aef8fe9f | |
parent | 59399f6f038f9e8ef45a21f0a65466f46a2a49c3 (diff) | |
parent | 102d729592d22a8e68b85295ee0d8595d5534e76 (diff) | |
download | dexon-solidity-c81ab63779cde7bf5bf80d043bc0889d90cb1a3f.tar.gz dexon-solidity-c81ab63779cde7bf5bf80d043bc0889d90cb1a3f.tar.zst dexon-solidity-c81ab63779cde7bf5bf80d043bc0889d90cb1a3f.zip |
Merge pull request #2297 from subtly/secp-prep
Prep for #2094 and supporting both cryptopp and secp256k1
-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) |