12 lines
473 B
CMake
12 lines
473 B
CMake
add_executable( witness_node main.cpp )
|
|
if( UNIX AND NOT APPLE )
|
|
set(rt_library rt )
|
|
endif()
|
|
#find_package( Gperftools QUIET )
|
|
#if( GPERFTOOLS_FOUND )
|
|
# message( STATUS "Found gperftools; compiling client with TCMalloc")
|
|
# list( APPEND PLATFORM_SPECIFIC_LIBS tcmalloc )
|
|
#endif()
|
|
|
|
target_link_libraries( witness_node
|
|
PRIVATE graphene_app graphene_account_history graphene_witness graphene_chain fc ${CMAKE_DL_LIBS} ${PLATFORM_SPECIFIC_LIBS} )
|