2017-05-25 09:13:59 +00:00
|
|
|
|
|
|
|
|
add_executable( cat-parts cat-parts.cpp )
|
|
|
|
|
if( UNIX AND NOT APPLE )
|
|
|
|
|
set(rt_library rt )
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
# we only actually need Boost, but link against FC for now so we don't duplicate it.
|
2021-12-01 13:34:55 +00:00
|
|
|
target_link_libraries( cat-parts PRIVATE fc ${CMAKE_DL_LIBS} ${PLATFORM_SPECIFIC_LIBS} )
|
2017-05-25 09:13:59 +00:00
|
|
|
|
|
|
|
|
add_executable( member_enumerator member_enumerator.cpp )
|
|
|
|
|
if( UNIX AND NOT APPLE )
|
|
|
|
|
set(rt_library rt )
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
# we only actually need Boost, but link against FC for now so we don't duplicate it.
|
2021-12-01 13:34:55 +00:00
|
|
|
target_link_libraries( member_enumerator PRIVATE fc graphene_app graphene_net graphene_chain graphene_egenesis_brief graphene_utilities graphene_wallet ${CMAKE_DL_LIBS} ${PLATFORM_SPECIFIC_LIBS} )
|
2017-05-25 09:13:59 +00:00
|
|
|
|