peerplays_migrated/programs/js_operation_serializer/CMakeLists.txt
2020-11-06 02:57:27 +01:00

15 lines
355 B
CMake

add_executable( js_operation_serializer main.cpp )
if( UNIX AND NOT APPLE )
set(rt_library rt )
endif()
target_link_libraries( js_operation_serializer
PRIVATE graphene_app ${PLATFORM_SPECIFIC_LIBS} )
install( TARGETS
js_operation_serializer
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)