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.
38 lines
1.1 KiB
38 lines
1.1 KiB
cmake_policy(SET CMP0015 OLD)
|
|
set(CMAKE_AUTOMOC OFF)
|
|
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
include_directories(${JSON_RPC_CPP_INCLUDE_DIRS})
|
|
include_directories(${LEVELDB_INCLUDE_DIR})
|
|
include_directories(..)
|
|
|
|
set(EXECUTABLE web3jsonrpc)
|
|
|
|
file(GLOB HEADERS "*.h")
|
|
|
|
if (ETH_STATIC)
|
|
add_library(${EXECUTABLE} STATIC ${SRC_LIST} ${HEADERS})
|
|
else()
|
|
add_library(${EXECUTABLE} SHARED ${SRC_LIST} ${HEADERS})
|
|
endif()
|
|
|
|
target_link_libraries(${EXECUTABLE} ${LEVELDB_LIBRARY})
|
|
target_link_libraries(${EXECUTABLE} ${JSONCPP_LIBRARIES})
|
|
target_link_libraries(${EXECUTABLE} ${JSON_RPC_CPP_COMMON_LIBRARY})
|
|
target_link_libraries(${EXECUTABLE} ${JSON_RPC_CPP_SERVER_LIBRARY})
|
|
|
|
if (MINIUPNPC_LS)
|
|
target_link_libraries(${EXECUTABLE} ${MINIUPNPC_LS})
|
|
endif()
|
|
|
|
target_link_libraries(${EXECUTABLE} webthree)
|
|
target_link_libraries(${EXECUTABLE} secp256k1)
|
|
target_link_libraries(${EXECUTABLE} gmp)
|
|
target_link_libraries(${EXECUTABLE} solidity)
|
|
target_link_libraries(${EXECUTABLE} serpent)
|
|
|
|
install( TARGETS ${EXECUTABLE} ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
|
|
|
|
|
|