diff options
author | mingchuan <mingc@skymizer.com> | 2018-05-11 11:20:19 +0800 |
---|---|---|
committer | mingchuan <mingc@skymizer.com> | 2018-05-11 11:20:19 +0800 |
commit | dbd0a7ed6014f128b92e85ff8a02763efd11eb2a (patch) | |
tree | 04766f47019f54957e894fe7e5eeb0cc1318e1a4 /lllc | |
parent | 85d417a8c22ba269629906b8e81b415241cf99bf (diff) | |
download | dexon-solidity-dbd0a7ed6014f128b92e85ff8a02763efd11eb2a.tar.gz dexon-solidity-dbd0a7ed6014f128b92e85ff8a02763efd11eb2a.tar.zst dexon-solidity-dbd0a7ed6014f128b92e85ff8a02763efd11eb2a.zip |
Fix link error when using boost shared library
Diffstat (limited to 'lllc')
-rw-r--r-- | lllc/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lllc/CMakeLists.txt b/lllc/CMakeLists.txt index 5c480093..d6538ee2 100644 --- a/lllc/CMakeLists.txt +++ b/lllc/CMakeLists.txt @@ -1,5 +1,5 @@ add_executable(lllc main.cpp) -target_link_libraries(lllc PRIVATE lll) +target_link_libraries(lllc PRIVATE lll ${Boost_SYSTEM_LIBRARY}) if (INSTALL_LLLC) include(GNUInstallDirs) |