diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-04-28 03:42:51 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-04-28 03:42:51 +0800 |
commit | 81d7d0874e16584754dabe466d7c2e403571bacf (patch) | |
tree | 4cd64f630600bdaa5fedd9fbddf40fa5f687803e /CMakeLists.txt | |
parent | b129a201dbc7c7b8370f47af758e295e173b4e78 (diff) | |
download | dexon-solidity-81d7d0874e16584754dabe466d7c2e403571bacf.tar dexon-solidity-81d7d0874e16584754dabe466d7c2e403571bacf.tar.gz dexon-solidity-81d7d0874e16584754dabe466d7c2e403571bacf.tar.bz2 dexon-solidity-81d7d0874e16584754dabe466d7c2e403571bacf.tar.lz dexon-solidity-81d7d0874e16584754dabe466d7c2e403571bacf.tar.xz dexon-solidity-81d7d0874e16584754dabe466d7c2e403571bacf.tar.zst dexon-solidity-81d7d0874e16584754dabe466d7c2e403571bacf.zip |
v8 integration initial commit
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a97bb86f..2413fc0a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,6 +25,8 @@ add_subdirectory(libethereum) add_subdirectory(libevm) add_subdirectory(libnatspec) add_subdirectory(libp2p) +add_subdirectory(libethconsole) + if (SOLIDITY) add_subdirectory(libsolidity) endif () @@ -40,6 +42,7 @@ include_directories(BEFORE ..) include_directories(${Boost_INCLUDE_DIRS}) include_directories(${CRYPTOPP_INCLUDE_DIRS}) include_directories(${JSON_RPC_CPP_INCLUDE_DIRS}) +include_directories(${V8_INCLUDE_DIRS}) # search for test names and create ctest tests enable_testing() @@ -65,6 +68,7 @@ target_link_libraries(testeth ${CURL_LIBRARIES}) target_link_libraries(testeth ethereum) target_link_libraries(testeth ethcore) target_link_libraries(testeth secp256k1) +target_link_libraries(testeth ethconsole) if (SOLIDITY) target_link_libraries(testeth solidity) endif () |