diff --git a/CMakeLists.txt b/CMakeLists.txt index 9918b4ee1..ec2c90cc7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -176,8 +176,7 @@ if (NOT LANGUAGES) endif() if (EVMJIT) - add_subdirectory(libevmjit) - add_subdirectory(evmcc) + add_subdirectory(evmjit) endif() diff --git a/eth/CMakeLists.txt b/eth/CMakeLists.txt index 9239e79ac..918e8d047 100644 --- a/eth/CMakeLists.txt +++ b/eth/CMakeLists.txt @@ -14,8 +14,7 @@ target_link_libraries(${EXECUTABLE} secp256k1) target_link_libraries(${EXECUTABLE} gmp) if(EVMJIT) - target_link_libraries(${EXECUTABLE} evm) - target_link_libraries(${EXECUTABLE} evmjit) + target_link_libraries(${EXECUTABLE} evmjit-cpp) endif() if(MINIUPNPC_LS) diff --git a/exp/CMakeLists.txt b/exp/CMakeLists.txt index fce739007..a5e1cefea 100644 --- a/exp/CMakeLists.txt +++ b/exp/CMakeLists.txt @@ -18,7 +18,7 @@ endif() target_link_libraries(${EXECUTABLE} ${LEVELDB_LS}) if(EVMJIT) - target_link_libraries(${EXECUTABLE} evmjit) + target_link_libraries(${EXECUTABLE} evmjit-cpp) endif() if ("${TARGET_PLATFORM}" STREQUAL "w64") diff --git a/libethereum/CMakeLists.txt b/libethereum/CMakeLists.txt index 6088525fb..973a59ae3 100644 --- a/libethereum/CMakeLists.txt +++ b/libethereum/CMakeLists.txt @@ -30,6 +30,7 @@ target_link_libraries(${EXECUTABLE} ${CRYPTOPP_LS}) target_link_libraries(${EXECUTABLE} gmp) if (EVMJIT) target_link_libraries(${EXECUTABLE} evmjit) + target_link_libraries(${EXECUTABLE} evmjit-cpp) endif() if("${TARGET_PLATFORM}" STREQUAL "w64") diff --git a/neth/CMakeLists.txt b/neth/CMakeLists.txt index c3d14c983..e65db71fe 100644 --- a/neth/CMakeLists.txt +++ b/neth/CMakeLists.txt @@ -23,8 +23,7 @@ target_link_libraries(${EXECUTABLE} web3jsonrpc) endif() if(EVMJIT) - target_link_libraries(${EXECUTABLE} evm) - target_link_libraries(${EXECUTABLE} evmjit) + target_link_libraries(${EXECUTABLE} evmjit-cpp) endif() if ("${TARGET_PLATFORM}" STREQUAL "w64") diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 8d8430b5c..3336b4289 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -21,8 +21,7 @@ if(JSONRPC_LS) target_link_libraries(testeth web3jsonrpc) endif() if (EVMJIT) - target_link_libraries(testeth evm) - target_link_libraries(testeth evmjit) + target_link_libraries(testeth evmjit-cpp) endif() target_link_libraries(createRandomTest ethereum) @@ -30,8 +29,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) + target_link_libraries(createRandomTest evmjit-cpp) endif() if ("${TARGET_PLATFORM}" STREQUAL "w64")