diff options
author | rainbeam <rainbeam@riseup.net> | 2016-05-01 07:42:22 +0800 |
---|---|---|
committer | rainbeam <rainbeam@riseup.net> | 2016-05-01 07:43:03 +0800 |
commit | 76473808b4245f1a149ff7016a3e16a6b2e5ff12 (patch) | |
tree | 6ca01d32158f69ec5221c2650ba9b50cd63fb13b /lllc | |
parent | dd4300d5b83fa16c36970ed2dd04aeec70c7b5ef (diff) | |
download | dexon-solidity-76473808b4245f1a149ff7016a3e16a6b2e5ff12.tar.gz dexon-solidity-76473808b4245f1a149ff7016a3e16a6b2e5ff12.tar.zst dexon-solidity-76473808b4245f1a149ff7016a3e16a6b2e5ff12.zip |
wrap lllc add_executable
Allows static linking.
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 a897e663..5726fbd6 100644 --- a/lllc/CMakeLists.txt +++ b/lllc/CMakeLists.txt @@ -4,7 +4,7 @@ set(EXECUTABLE lllc) file(GLOB HEADERS "*.h") include_directories(BEFORE ..) -add_executable(${EXECUTABLE} ${SRC_LIST} ${HEADERS}) +eth_simple_add_executable(${EXECUTABLE} ${SRC_LIST} ${HEADERS}) eth_use(${EXECUTABLE} REQUIRED Solidity::lll Dev::buildinfo Solidity::evmasm) |