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.
37 lines
852 B
37 lines
852 B
cmake_policy(SET CMP0015 NEW)
|
|
set(CMAKE_AUTOMOC OFF)
|
|
|
|
aux_source_directory(. SRC_LIST)
|
|
|
|
include_directories(BEFORE ${JSONCPP_INCLUDE_DIRS})
|
|
include_directories(BEFORE ..)
|
|
include_directories(${LEVELDB_INCLUDE_DIRS})
|
|
|
|
set(EXECUTABLE exp)
|
|
|
|
add_executable(${EXECUTABLE} ${SRC_LIST})
|
|
|
|
target_link_libraries(${EXECUTABLE} ${Boost_REGEX_LIBRARIES})
|
|
|
|
if (READLINE_FOUND)
|
|
target_link_libraries(${EXECUTABLE} ${READLINE_LIBRARIES})
|
|
endif()
|
|
|
|
if (JSONRPC)
|
|
target_link_libraries(${EXECUTABLE} web3jsonrpc)
|
|
endif()
|
|
|
|
target_link_libraries(${EXECUTABLE} webthree)
|
|
target_link_libraries(${EXECUTABLE} ethereum)
|
|
target_link_libraries(${EXECUTABLE} p2p)
|
|
if (ETHASHCL)
|
|
target_link_libraries(${EXECUTABLE} ethash-cl)
|
|
target_link_libraries(${EXECUTABLE} ethash)
|
|
target_link_libraries(${EXECUTABLE} OpenCL)
|
|
endif()
|
|
install( TARGETS ${EXECUTABLE} DESTINATION bin)
|
|
|
|
|
|
|
|
|
|
|
|
|