diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-11-13 22:34:19 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-11-14 07:51:17 +0800 |
commit | 6961899cb2a0abd4d236a9a6f2657b4533720484 (patch) | |
tree | 563973384b60fb8e4857683a872c885dac4586e4 /test/CMakeLists.txt | |
parent | b4fcce0bde81939c8401ff8ec011850299cd4662 (diff) | |
download | dexon-solidity-6961899cb2a0abd4d236a9a6f2657b4533720484.tar dexon-solidity-6961899cb2a0abd4d236a9a6f2657b4533720484.tar.gz dexon-solidity-6961899cb2a0abd4d236a9a6f2657b4533720484.tar.bz2 dexon-solidity-6961899cb2a0abd4d236a9a6f2657b4533720484.tar.lz dexon-solidity-6961899cb2a0abd4d236a9a6f2657b4533720484.tar.xz dexon-solidity-6961899cb2a0abd4d236a9a6f2657b4533720484.tar.zst dexon-solidity-6961899cb2a0abd4d236a9a6f2657b4533720484.zip |
Do not build tests for LLL if disabled
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r-- | test/CMakeLists.txt | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 91c1b200..3b674502 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -9,8 +9,10 @@ file(GLOB libevmasm_sources "libevmasm/*.cpp") file(GLOB libevmasm_headers "libevmasm/*.h") file(GLOB libyul_sources "libyul/*.cpp") file(GLOB libyul_headers "libyul/*.h") -file(GLOB liblll_sources "liblll/*.cpp") -file(GLOB liblll_headers "liblll/*.h") +if (LLL) + file(GLOB liblll_sources "liblll/*.cpp") + file(GLOB liblll_headers "liblll/*.h") +endif() file(GLOB libsolidity_sources "libsolidity/*.cpp") file(GLOB libsolidity_headers "libsolidity/*.h") @@ -22,7 +24,12 @@ add_executable(soltest ${sources} ${headers} ${liblll_sources} ${liblll_headers} ${libsolidity_sources} ${libsolidity_headers} ) -target_link_libraries(soltest PRIVATE libsolc solidity lll evmasm devcore ${Boost_UNIT_TEST_FRAMEWORK_LIBRARIES}) +target_link_libraries(soltest PRIVATE libsolc solidity evmasm devcore ${Boost_UNIT_TEST_FRAMEWORK_LIBRARIES}) + +if (LLL) + target_link_libraries(soltest PRIVATE lll) + target_compile_definitions(soltest PRIVATE HAVE_LLL=1) +endif() if (NOT Boost_USE_STATIC_LIBS) target_compile_definitions(soltest PUBLIC -DBOOST_TEST_DYN_LINK) |