2016-01-08 20:42:08 +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.
|
2020-11-12 14:08:25 +00:00
|
|
|
target_link_libraries( cat-parts PRIVATE fc ${PLATFORM_SPECIFIC_LIBS} )
|
2016-02-04 05:20:36 +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.
|
2020-11-12 14:08:25 +00:00
|
|
|
target_link_libraries( member_enumerator PRIVATE graphene_chain ${PLATFORM_SPECIFIC_LIBS} )
|
2016-02-04 05:20:36 +00:00
|
|
|
|