aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Zawłocki <artur.zawlocki@imapp.pl>2014-11-18 01:10:54 +0800
committerArtur Zawłocki <artur.zawlocki@imapp.pl>2014-11-18 01:10:54 +0800
commit07e60499672e4db5054dad15adb4422fe2322006 (patch)
tree0c2c6366c1fe1bee412ddb45ed94dd7b5aa02d67
parent578a0391cd9fee49429389fd39043cea8ae21570 (diff)
downloaddexon-solidity-07e60499672e4db5054dad15adb4422fe2322006.tar.gz
dexon-solidity-07e60499672e4db5054dad15adb4422fe2322006.tar.zst
dexon-solidity-07e60499672e4db5054dad15adb4422fe2322006.zip
fixed libevmjit dependencies in cmake files
-rw-r--r--CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 951db2c9..8d8430b5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -21,6 +21,7 @@ if(JSONRPC_LS)
target_link_libraries(testeth web3jsonrpc)
endif()
if (EVMJIT)
+ target_link_libraries(testeth evm)
target_link_libraries(testeth evmjit)
endif()
@@ -29,6 +30,7 @@ target_link_libraries(createRandomTest ethcore)
target_link_libraries(createRandomTest boost_chrono)
target_link_libraries(createRandomTest boost_unit_test_framework)
if (EVMJIT)
+ target_link_libraries(createRandomTest evm)
target_link_libraries(createRandomTest evmjit)
endif()