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.
58 lines
1.9 KiB
58 lines
1.9 KiB
cmake_policy(SET CMP0015 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)
|
|
endif()
|
|
set(CMAKE_AUTOMOC OFF)
|
|
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
include_directories(BEFORE ${JSONCPP_INCLUDE_DIRS})
|
|
include_directories(BEFORE ..)
|
|
include_directories(${MHD_INCLUDE_DIRS})
|
|
include_directories(${JSON_RPC_CPP_INCLUDE_DIRS})
|
|
include_directories(${LEVELDB_INCLUDE_DIRS})
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
|
|
set(EXECUTABLE web3jsonrpc)
|
|
|
|
file(GLOB HEADERS "*.h")
|
|
|
|
add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS})
|
|
|
|
target_link_libraries(${EXECUTABLE} ${LEVELDB_LIBRARIES})
|
|
target_link_libraries(${EXECUTABLE} ${JSONCPP_LIBRARIES})
|
|
target_link_libraries(${EXECUTABLE} ${JSON_RPC_CPP_SERVER_LIBRARIES})
|
|
target_link_libraries(${EXECUTABLE} ${MHD_LIBRARIES})
|
|
|
|
target_link_libraries(${EXECUTABLE} webthree)
|
|
target_link_libraries(${EXECUTABLE} secp256k1)
|
|
|
|
if (SOLIDITY)
|
|
target_link_libraries(${EXECUTABLE} solidity)
|
|
endif ()
|
|
if (SERPENT)
|
|
target_link_libraries(${EXECUTABLE} serpent)
|
|
endif ()
|
|
|
|
if (ETH_JSON_RPC_STUB)
|
|
add_custom_target(jsonrpcstub)
|
|
add_custom_command(TARGET jsonrpcstub
|
|
POST_BUILD
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
|
|
COMMAND ${CMAKE_COMMAND} -DETH_SPEC_PATH="${CMAKE_CURRENT_SOURCE_DIR}/spec.json" -DETH_SOURCE_DIR="${CMAKE_SOURCE_DIR}"
|
|
-DETH_SERVER_DIR="${CMAKE_CURRENT_SOURCE_DIR}" -DETH_CLIENT_DIR="${CMAKE_SOURCE_DIR}/test/libweb3jsonrpc"
|
|
-DETH_SERVER_NAME=AbstractWebThreeStubServer -DETH_CLIENT_NAME=WebThreeStubClient
|
|
-DETH_JSON_RPC_STUB="${ETH_JSON_RPC_STUB}"
|
|
-P "${ETH_SCRIPTS_DIR}/jsonrpcstub.cmake"
|
|
)
|
|
add_dependencies(${EXECUTABLE} jsonrpcstub)
|
|
endif ()
|
|
|
|
install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
|
|
|
add_custom_target(aux_json SOURCES "spec.json")
|
|
|
|
|