diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2016-11-28 07:19:10 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2016-11-30 05:54:27 +0800 |
commit | 4af30cc5183d83afd8a112bbc29e5c7beb3b7c1a (patch) | |
tree | 69b11d85081f047293c6857d58e9ec17d61f7e40 /test/CMakeLists.txt | |
parent | 69eb0ab5e3975e039c42a01bc6dd6657d4706022 (diff) | |
download | dexon-solidity-4af30cc5183d83afd8a112bbc29e5c7beb3b7c1a.tar.gz dexon-solidity-4af30cc5183d83afd8a112bbc29e5c7beb3b7c1a.tar.zst dexon-solidity-4af30cc5183d83afd8a112bbc29e5c7beb3b7c1a.zip |
Add test/liblll to cmake
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r-- | test/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 33af9981..609aaab3 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -5,6 +5,7 @@ aux_source_directory(libdevcore SRC_LIST) aux_source_directory(libevmasm SRC_LIST) aux_source_directory(libsolidity SRC_LIST) aux_source_directory(contracts SRC_LIST) +aux_source_directory(liblll SRC_LIST) get_filename_component(TESTS_DIR "${CMAKE_CURRENT_SOURCE_DIR}" ABSOLUTE) @@ -28,7 +29,7 @@ file(GLOB HEADERS "*.h" "*/*.h") set(EXECUTABLE soltest) eth_simple_add_executable(${EXECUTABLE} ${SRC_LIST} ${HEADERS}) -eth_use(${EXECUTABLE} REQUIRED Solidity::solidity) +eth_use(${EXECUTABLE} REQUIRED Solidity::solidity Solidity::lll) include_directories(BEFORE ..) target_link_libraries(${EXECUTABLE} ${Boost_UNIT_TEST_FRAMEWORK_LIBRARIES}) |