* Add Bitcoin network listener to a SON plugin * Add default parameters for Peerplays Bitcoin test node * Add Bitcoin block processing * Update source code to last designs * Set default parameters for peerplays_sidechain plugin to Bitcoin test server * WIP: Some Bitcoin transaction processing
22 lines
689 B
CMake
22 lines
689 B
CMake
file(GLOB HEADERS "include/graphene/peerplays_sidechain/*.hpp")
|
|
|
|
add_library( peerplays_sidechain
|
|
peerplays_sidechain_plugin.cpp
|
|
sidechain_net_manager.cpp
|
|
sidechain_net_handler.cpp
|
|
sidechain_net_handler_bitcoin.cpp
|
|
)
|
|
|
|
target_link_libraries( peerplays_sidechain graphene_chain graphene_app fc zmq )
|
|
target_include_directories( peerplays_sidechain
|
|
PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include" )
|
|
|
|
install( TARGETS
|
|
peerplays_sidechain
|
|
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
)
|
|
INSTALL( FILES ${HEADERS} DESTINATION "include/graphene/peerplays_sidechain" )
|
|
|