You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.7 KiB
59 lines
1.7 KiB
cmake_policy(SET CMP0015 NEW)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DSTATICLIB")
|
|
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
set(EXECUTABLE evmjit)
|
|
|
|
file(GLOB HEADERS "*.h")
|
|
if (EVMJIT_STATIC)
|
|
add_library(${EXECUTABLE} STATIC ${SRC_LIST} ${HEADERS})
|
|
else()
|
|
add_library(${EXECUTABLE} SHARED ${SRC_LIST} ${HEADERS})
|
|
endif()
|
|
|
|
include_directories(..)
|
|
|
|
target_link_libraries(${EXECUTABLE} devcore)
|
|
target_link_libraries(${EXECUTABLE} ethcore)
|
|
target_link_libraries(${EXECUTABLE} evm)
|
|
target_link_libraries(${EXECUTABLE} evmface)
|
|
|
|
|
|
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)
|
|
else ()
|
|
find_package(Threads REQUIRED)
|
|
target_link_libraries(${EXECUTABLE} ${CMAKE_THREAD_LIBS_INIT})
|
|
endif ()
|
|
|
|
# LLVM specific config
|
|
|
|
find_package(LLVM REQUIRED CONFIG)
|
|
|
|
message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
|
|
message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")
|
|
|
|
include_directories(${LLVM_INCLUDE_DIRS})
|
|
add_definitions(${LLVM_DEFINITIONS})
|
|
|
|
llvm_map_components_to_libnames(llvm_libs core support mcjit x86asmparser x86codegen)
|
|
target_link_libraries(evmjit ${llvm_libs})
|
|
|
|
# end of LLVM specific config
|
|
|
|
|
|
|
|
install( TARGETS ${EXECUTABLE} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
|
|
|
cmake_policy(SET CMP0015 NEW)
|
|
|