diff options
author | chriseth <c@ethdev.com> | 2015-04-24 23:35:16 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-04-30 17:42:02 +0800 |
commit | 3ec162e910c34f049332d487d9f07674a42c40aa (patch) | |
tree | f2f5609793e84b8c5d74098b45454b781d90f08c | |
parent | ed096881b97222357ac636b41eb21e20225beaf1 (diff) | |
download | dexon-solidity-3ec162e910c34f049332d487d9f07674a42c40aa.tar.gz dexon-solidity-3ec162e910c34f049332d487d9f07674a42c40aa.tar.zst dexon-solidity-3ec162e910c34f049332d487d9f07674a42c40aa.zip |
Move assembly related files to libevmasm and Params.h/.cpp to libevmcore.
-rw-r--r-- | CMakeLists.txt | 3 | ||||
-rw-r--r-- | CodeFragment.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d3f465f3..66f32e4d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,8 +21,7 @@ file(GLOB HEADERS "*.h") add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS}) -target_link_libraries(${EXECUTABLE} evmcore) -target_link_libraries(${EXECUTABLE} devcore) +target_link_libraries(${EXECUTABLE} evmasm) install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib ) install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} ) diff --git a/CodeFragment.h b/CodeFragment.h index 554f90b4..03f812b6 100644 --- a/CodeFragment.h +++ b/CodeFragment.h @@ -23,7 +23,7 @@ #include <libdevcore/Common.h> #include <libevmcore/Instruction.h> -#include <libevmcore/Assembly.h> +#include <libevmasm/Assembly.h> #include "Exceptions.h" namespace boost { namespace spirit { class utree; } } |