diff options
author | Christian <c@ethdev.com> | 2014-11-06 21:50:18 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-11-06 21:50:18 +0800 |
commit | 239afeaffd361a62016ed71268a632e4f71d0477 (patch) | |
tree | 803c7a40812a9512cce1f0511e13c6dbfbcabc28 | |
parent | c52b98edda0b7ed66376cd601c028c71db0ac88c (diff) | |
download | dexon-solidity-239afeaffd361a62016ed71268a632e4f71d0477.tar.gz dexon-solidity-239afeaffd361a62016ed71268a632e4f71d0477.tar.zst dexon-solidity-239afeaffd361a62016ed71268a632e4f71d0477.zip |
Moved instructions and assembly to new libevmcore.
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9d5e8c5f..a9b53c74 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ set(EXECUTABLE lllc) add_executable(${EXECUTABLE} ${SRC_LIST}) target_link_libraries(${EXECUTABLE} lll) -target_link_libraries(${EXECUTABLE} evmface) +target_link_libraries(${EXECUTABLE} evmcore) target_link_libraries(${EXECUTABLE} devcore) if ("${TARGET_PLATFORM}" STREQUAL "w64") @@ -25,7 +25,7 @@ #include <liblll/Compiler.h> #include <libdevcore/CommonIO.h> #include <libdevcore/CommonData.h> -#include <libevmface/Instruction.h> +#include <libevmcore/Instruction.h> #include "BuildInfo.h" using namespace std; using namespace dev; |