2017-08-16 11:30:09 +00:00
|
|
|
set(
|
|
|
|
sources
|
|
|
|
CommandLineInterface.cpp CommandLineInterface.h
|
|
|
|
main.cpp
|
|
|
|
)
|
2014-10-10 14:37:54 +00:00
|
|
|
|
2017-08-16 11:30:09 +00:00
|
|
|
add_executable(solc ${sources})
|
2019-06-06 15:18:48 +00:00
|
|
|
target_link_libraries(solc PRIVATE solidity Boost::boost Boost::program_options)
|
2014-10-10 14:37:54 +00:00
|
|
|
|
2017-08-16 11:30:09 +00:00
|
|
|
include(GNUInstallDirs)
|
|
|
|
install(TARGETS solc DESTINATION "${CMAKE_INSTALL_BINDIR}")
|
2014-10-10 14:37:54 +00:00
|
|
|
|
2017-08-22 20:50:03 +00:00
|
|
|
if(SOLC_LINK_STATIC AND UNIX AND NOT APPLE)
|
|
|
|
# Produce solc as statically linked binary (includes C/C++ standard libraries)
|
|
|
|
# This is not supported on macOS, see
|
|
|
|
# https://developer.apple.com/library/content/qa/qa1118/_index.html.
|
|
|
|
set_target_properties(
|
|
|
|
solc PROPERTIES
|
|
|
|
LINK_FLAGS -static
|
|
|
|
LINK_SEARCH_START_STATIC ON
|
|
|
|
LINK_SEARCH_END_STATIC ON
|
|
|
|
)
|
|
|
|
endif()
|