peerplays_migrated/programs/js_operation_serializer/CMakeLists.txt

16 lines
355 B
CMake
Raw Normal View History

2017-05-25 09:13:59 +00:00
add_executable( js_operation_serializer main.cpp )
if( UNIX AND NOT APPLE )
set(rt_library rt )
endif()
target_link_libraries( js_operation_serializer
2021-12-15 16:36:40 +00:00
PRIVATE graphene_app ${PLATFORM_SPECIFIC_LIBS} )
2017-05-25 09:13:59 +00:00
install( TARGETS
js_operation_serializer
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)