7 lines
293 B
CMake
7 lines
293 B
CMake
add_executable( field_reflector main.cpp )
|
|
if( UNIX AND NOT APPLE )
|
|
set(rt_library rt )
|
|
endif()
|
|
|
|
target_link_libraries( field_reflector
|
|
PRIVATE graphene_app graphene_net graphene_chain graphene_utilities graphene_wallet fc ${CMAKE_DL_LIBS} ${PLATFORM_SPECIFIC_LIBS} )
|