* Build optimizations, simplify dependancy tree * Build optimizations, simplify dependancy tree
21 lines
561 B
CMake
21 lines
561 B
CMake
add_executable( delayed_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 delayed_node with TCMalloc")
|
|
list( APPEND PLATFORM_SPECIFIC_LIBS tcmalloc )
|
|
endif()
|
|
|
|
target_link_libraries( delayed_node
|
|
PRIVATE graphene_app graphene_egenesis_full graphene_delayed_node ${PLATFORM_SPECIFIC_LIBS} )
|
|
|
|
install( TARGETS
|
|
delayed_node
|
|
|
|
RUNTIME DESTINATION bin
|
|
LIBRARY DESTINATION lib
|
|
ARCHIVE DESTINATION lib
|
|
)
|