aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt3
-rw-r--r--CompilerContext.h4
2 files changed, 3 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f425bba4..f335dd75 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -16,8 +16,7 @@ file(GLOB HEADERS "*.h")
include_directories(..)
-# @todo we only depend on Assembly, not on all of lll
-target_link_libraries(${EXECUTABLE} evmface devcore lll)
+target_link_libraries(${EXECUTABLE} evmcore devcore)
install( TARGETS ${EXECUTABLE} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
diff --git a/CompilerContext.h b/CompilerContext.h
index 46c4c72a..088ef43b 100644
--- a/CompilerContext.h
+++ b/CompilerContext.h
@@ -23,8 +23,8 @@
#pragma once
#include <ostream>
-#include <libevmface/Instruction.h>
-#include <liblll/Assembly.h>
+#include <libevmcore/Instruction.h>
+#include <libevmcore/Assembly.h>
#include <libsolidity/Types.h>
namespace dev {