diff options
author | Gav Wood <g@ethdev.com> | 2015-07-27 22:36:51 +0800 |
---|---|---|
committer | Gav Wood <g@ethdev.com> | 2015-07-27 22:36:51 +0800 |
commit | 9e61a8adb1c4368b56cd0bbe4f9423e0c433c6ee (patch) | |
tree | 162371d59d3086eb466007d07220e673293166b6 | |
parent | b5ae82d712a40e3c822baeb4553fc702f1b2cb81 (diff) | |
parent | bf6747ff868c2c3783e7882efdc2c767df52fa95 (diff) | |
download | dexon-solidity-9e61a8adb1c4368b56cd0bbe4f9423e0c433c6ee.tar.gz dexon-solidity-9e61a8adb1c4368b56cd0bbe4f9423e0c433c6ee.tar.zst dexon-solidity-9e61a8adb1c4368b56cd0bbe4f9423e0c433c6ee.zip |
Merge pull request #2571 from subtly/iwannagofast
Update secp256k1
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6bdefd65..6e24e334 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -75,7 +75,9 @@ target_link_libraries(testeth ${CURL_LIBRARIES}) target_link_libraries(testeth ${CRYPTOPP_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) |