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.
43 lines
1.3 KiB
43 lines
1.3 KiB
cmake_policy(SET CMP0015 NEW)
|
|
set(CMAKE_AUTOMOC OFF)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DSTATICLIB")
|
|
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
include_directories(BEFORE ..)
|
|
include_directories(${DB_INCLUDE_DIRS})
|
|
include_directories(${Boost_INCLUDE_DIRS})
|
|
if (JSONRPC)
|
|
include_directories(BEFORE ${JSONCPP_INCLUDE_DIRS})
|
|
include_directories(${JSON_RPC_CPP_INCLUDE_DIRS})
|
|
endif()
|
|
|
|
set(EXECUTABLE ethereum)
|
|
|
|
file(GLOB HEADERS "*.h")
|
|
|
|
add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS})
|
|
|
|
target_link_libraries(${EXECUTABLE} evm)
|
|
target_link_libraries(${EXECUTABLE} lll)
|
|
target_link_libraries(${EXECUTABLE} whisper)
|
|
target_link_libraries(${EXECUTABLE} p2p)
|
|
target_link_libraries(${EXECUTABLE} devcrypto)
|
|
target_link_libraries(${EXECUTABLE} ethcore)
|
|
target_link_libraries(${EXECUTABLE} ${Boost_REGEX_LIBRARIES})
|
|
if (JSONRPC)
|
|
target_link_libraries(${EXECUTABLE} ${JSON_RPC_CPP_CLIENT_LIBRARIES})
|
|
target_link_libraries(${EXECUTABLE} ${CURL_LIBRARIES})
|
|
if (DEFINED WIN32 AND NOT DEFINED CMAKE_COMPILER_IS_MINGW)
|
|
eth_copy_dlls(${EXECUTABLE} CURL_DLLS)
|
|
endif()
|
|
endif()
|
|
|
|
if (CMAKE_COMPILER_IS_MINGW)
|
|
target_link_libraries(${EXECUTABLE} ssp shlwapi)
|
|
endif()
|
|
|
|
install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
|
|
|
|