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.
35 lines
1.1 KiB
35 lines
1.1 KiB
cmake_policy(SET CMP0015 NEW)
|
|
# let cmake autolink dependencies on windows
|
|
cmake_policy(SET CMP0020 NEW)
|
|
# this policy was introduced in cmake 3.0
|
|
# remove if, once 3.0 will be used on unix
|
|
if (${CMAKE_MAJOR_VERSION} GREATER 2)
|
|
# old policy do not use MACOSX_RPATH
|
|
cmake_policy(SET CMP0042 OLD)
|
|
cmake_policy(SET CMP0043 OLD)
|
|
endif()
|
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
include_directories(..)
|
|
include_directories(${JSON_RPC_CPP_INCLUDE_DIRS})
|
|
|
|
set(EXECUTABLE qethereum)
|
|
|
|
file(GLOB HEADERS "*.h")
|
|
|
|
if(ETH_STATIC)
|
|
add_library(${EXECUTABLE} STATIC ${RESOURCE_ADDED} ${SRC_LIST} ${HEADERS})
|
|
else()
|
|
add_library(${EXECUTABLE} SHARED ${RESOURCE_ADDED} ${SRC_LIST} ${HEADERS})
|
|
endif()
|
|
|
|
qt5_use_modules(${EXECUTABLE} Core Gui WebKit WebKitWidgets Widgets Network Quick Qml)
|
|
target_link_libraries(${EXECUTABLE} ethereum)
|
|
target_link_libraries(${EXECUTABLE} secp256k1)
|
|
target_link_libraries(${EXECUTABLE} ${JSON_RPC_CPP_COMMON_LIBRARY})
|
|
target_link_libraries(${EXECUTABLE} ${JSON_RPC_CPP_SERVER_LIBRARY})
|
|
|
|
install( TARGETS ${EXECUTABLE} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
|
|