test project to use libbitcoin
This commit is contained in:
parent
a2a58b2ddc
commit
9040a6180c
3 changed files with 11 additions and 0 deletions
|
|
@ -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 )
|
||||
|
|
|
|||
3
tests/bitcoin_test/CMakeLists.txt
Normal file
3
tests/bitcoin_test/CMakeLists.txt
Normal 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} )
|
||||
6
tests/bitcoin_test/main.cpp
Normal file
6
tests/bitcoin_test/main.cpp
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#include <bitcoin/system.hpp>
|
||||
|
||||
int main()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
Loading…
Reference in a new issue