From 76473808b4245f1a149ff7016a3e16a6b2e5ff12 Mon Sep 17 00:00:00 2001 From: rainbeam Date: Sun, 1 May 2016 00:42:22 +0100 Subject: [PATCH] wrap lllc add_executable Allows static linking. --- lllc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lllc/CMakeLists.txt b/lllc/CMakeLists.txt index a897e6633..5726fbd69 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)