Browse Source

added reference to libevmjit to alethzero's CMakeLists.txt

cl-refactor
Artur Zawłocki 10 years ago
parent
commit
ce0fe1dfcc
  1. 3
      alethzero/CMakeLists.txt
  2. 1
      exp/CMakeLists.txt

3
alethzero/CMakeLists.txt

@ -54,6 +54,9 @@ endif ()
qt5_use_modules(${EXECUTEABLE} Core)# Gui Widgets Network WebKit WebKitWidgets) qt5_use_modules(${EXECUTEABLE} Core)# Gui Widgets Network WebKit WebKitWidgets)
target_link_libraries(${EXECUTEABLE} webthree qethereum ethereum evm ethcore devcrypto secp256k1 gmp ${CRYPTOPP_LS} serpent lll solidity evmcore devcore web3jsonrpc jsqrc) target_link_libraries(${EXECUTEABLE} webthree qethereum ethereum evm ethcore devcrypto secp256k1 gmp ${CRYPTOPP_LS} serpent lll solidity evmcore devcore web3jsonrpc jsqrc)
if (EVMJIT)
target_link_libraries(${EXECUTEABLE} evmjit)
endif()
if (APPLE) if (APPLE)
# First have qt5 install plugins and frameworks # First have qt5 install plugins and frameworks

1
exp/CMakeLists.txt

@ -18,7 +18,6 @@ endif()
target_link_libraries(${EXECUTABLE} ${LEVELDB_LS}) target_link_libraries(${EXECUTABLE} ${LEVELDB_LS})
if(EVMJIT) if(EVMJIT)
target_link_libraries(${EXECUTABLE} evm)
target_link_libraries(${EXECUTABLE} evmjit) target_link_libraries(${EXECUTABLE} evmjit)
endif() endif()

Loading…
Cancel
Save