aboutsummaryrefslogtreecommitdiffstats
path: root/liblll
diff options
context:
space:
mode:
authorPaweł Bylica <chfast@gmail.com>2017-08-17 21:48:39 +0800
committerPaweł Bylica <chfast@gmail.com>2017-08-21 18:27:06 +0800
commit99d198ffb034839e82649f10814210c0374d40d4 (patch)
tree41b5b05cec5b239bc494527be2044ff1ea7e1f41 /liblll
parent0712e6302e728bba281f41afa74e6c74638a75c7 (diff)
downloaddexon-solidity-99d198ffb034839e82649f10814210c0374d40d4.tar.gz
dexon-solidity-99d198ffb034839e82649f10814210c0374d40d4.tar.zst
dexon-solidity-99d198ffb034839e82649f10814210c0374d40d4.zip
CMake: Make libs dependencies explicit
Diffstat (limited to 'liblll')
-rw-r--r--liblll/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/liblll/CMakeLists.txt b/liblll/CMakeLists.txt
index ceaeb6cf..1cc37da3 100644
--- a/liblll/CMakeLists.txt
+++ b/liblll/CMakeLists.txt
@@ -2,5 +2,5 @@ file(GLOB sources "*.cpp")
file(GLOB headers "*.h")
add_library(lll ${sources} ${headers})
-target_link_libraries(lll PUBLIC evmasm)
+target_link_libraries(lll PUBLIC evmasm devcore)
target_include_directories(lll PUBLIC ..)