diff options
author | Christian Parpart <christian@ethereum.org> | 2018-11-23 18:39:40 +0800 |
---|---|---|
committer | Christian Parpart <christian@ethereum.org> | 2018-11-23 19:37:37 +0800 |
commit | 3734f40d315439f8a791967a6adfda8cf9fd1e55 (patch) | |
tree | 6da53fded6fd8a00b52547273441ef6afb8c3db5 /test | |
parent | 713d94476ec5ba61901b538c622c8cca6873c2af (diff) | |
download | dexon-solidity-3734f40d315439f8a791967a6adfda8cf9fd1e55.tar.gz dexon-solidity-3734f40d315439f8a791967a6adfda8cf9fd1e55.tar.zst dexon-solidity-3734f40d315439f8a791967a6adfda8cf9fd1e55.zip |
CMake: Isolate libyul into its own static library
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index acfc7d00..10b78bdc 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -27,7 +27,7 @@ add_executable(soltest ${sources} ${headers} ${liblll_sources} ${liblll_headers} ${libsolidity_sources} ${libsolidity_headers} ) -target_link_libraries(soltest PRIVATE libsolc solidity evmasm devcore ${Boost_UNIT_TEST_FRAMEWORK_LIBRARIES}) +target_link_libraries(soltest PRIVATE libsolc yul solidity evmasm devcore ${Boost_UNIT_TEST_FRAMEWORK_LIBRARIES}) if (LLL) target_link_libraries(soltest PRIVATE lll) |