test project to use libbitcoin

This commit is contained in:
gladcow 2020-04-03 11:15:57 +03:00
parent a2a58b2ddc
commit 9040a6180c
3 changed files with 11 additions and 0 deletions

View file

@ -60,3 +60,5 @@ add_executable( es_test ${ES_SOURCES} ${COMMON_SOURCES} )
target_link_libraries( es_test graphene_chain graphene_app graphene_account_history graphene_elasticsearch graphene_es_objects graphene_egenesis_none fc ${PLATFORM_SPECIFIC_LIBS} )
add_subdirectory( generate_empty_blocks )
add_subdirectory( bitcoin_test )

View file

@ -0,0 +1,3 @@
add_executable( bitcoin_test main.cpp )
target_link_libraries( bitcoin_test
PRIVATE bitcoin fc ${CMAKE_DL_LIBS} ${PLATFORM_SPECIFIC_LIBS} )

View file

@ -0,0 +1,6 @@
#include <bitcoin/system.hpp>
int main()
{
return 0;
}