mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
lll, buildinfo.h and llc compiling on windows
This commit is contained in:
parent
ef17bc3d8f
commit
6d0ed4c891
@ -3,31 +3,22 @@ set(CMAKE_AUTOMOC OFF)
|
||||
|
||||
aux_source_directory(. SRC_LIST)
|
||||
|
||||
include_directories(${Boost_INCLUDE_DIRS})
|
||||
include_directories(..)
|
||||
|
||||
set(EXECUTABLE lllc)
|
||||
|
||||
add_executable(${EXECUTABLE} ${SRC_LIST})
|
||||
if(ETH_STATIC)
|
||||
add_library(${EXECUTABLE} STATIC ${SRC_LIST} ${HEADERS})
|
||||
else()
|
||||
add_library(${EXECUTABLE} SHARED ${SRC_LIST} ${HEADERS})
|
||||
endif()
|
||||
|
||||
add_dependencies(${EXECUTABLE} BuildInfo.h)
|
||||
|
||||
target_link_libraries(${EXECUTABLE} lll)
|
||||
target_link_libraries(${EXECUTABLE} evmcore)
|
||||
target_link_libraries(${EXECUTABLE} devcore)
|
||||
|
||||
if ("${TARGET_PLATFORM}" STREQUAL "w64")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static-libgcc -static-libstdc++")
|
||||
target_link_libraries(${EXECUTABLE} gcc)
|
||||
target_link_libraries(${EXECUTABLE} gdi32)
|
||||
target_link_libraries(${EXECUTABLE} ws2_32)
|
||||
target_link_libraries(${EXECUTABLE} mswsock)
|
||||
target_link_libraries(${EXECUTABLE} shlwapi)
|
||||
target_link_libraries(${EXECUTABLE} iphlpapi)
|
||||
target_link_libraries(${EXECUTABLE} boost_thread_win32-mt-s)
|
||||
set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS)
|
||||
elseif (UNIX)
|
||||
else ()
|
||||
find_package(Threads REQUIRED)
|
||||
target_link_libraries(${EXECUTABLE} ${CMAKE_THREAD_LIBS_INIT})
|
||||
endif ()
|
||||
|
||||
install( TARGETS ${EXECUTABLE} DESTINATION bin )
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user