diff options
author | sveneh <sven@ethdev.com> | 2014-11-11 03:31:15 +0800 |
---|---|---|
committer | sveneh <sven@ethdev.com> | 2014-11-11 03:31:15 +0800 |
commit | c492df94fb760b9c9541a785ffb03e4456dcff63 (patch) | |
tree | 37b268da64aa5ec473282de9cc9542874352559a /CMakeLists.txt | |
parent | 09564024698f25e648820673ac915b808081bb5f (diff) | |
download | dexon-solidity-c492df94fb760b9c9541a785ffb03e4456dcff63.tar.gz dexon-solidity-c492df94fb760b9c9541a785ffb03e4456dcff63.tar.zst dexon-solidity-c492df94fb760b9c9541a785ffb03e4456dcff63.zip |
compiles fine now (on Linux) with both cryptopp and json-rpc-cpp dependencies
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4f02f96b..38e3ca1c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ target_link_libraries(testeth webthree) #TODO this on should not be necessary, it should have been brought in from ethcore dependency... target_link_libraries(testeth ${CRYPTOPP_LIBRARIES}) -if(JSONRPC_LS) +if(JSON_RPC_CPP_FOUND) target_link_libraries(testeth web3jsonrpc) endif() |