mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
76473808b4
Allows static linking.
13 lines
306 B
CMake
13 lines
306 B
CMake
aux_source_directory(. SRC_LIST)
|
|
|
|
set(EXECUTABLE lllc)
|
|
|
|
file(GLOB HEADERS "*.h")
|
|
include_directories(BEFORE ..)
|
|
eth_simple_add_executable(${EXECUTABLE} ${SRC_LIST} ${HEADERS})
|
|
|
|
eth_use(${EXECUTABLE} REQUIRED Solidity::lll Dev::buildinfo Solidity::evmasm)
|
|
|
|
install( TARGETS ${EXECUTABLE} DESTINATION bin )
|
|
|