2018-04-20 22:03:29 +00:00
|
|
|
add_library(LaunchAPPLCommon
|
|
|
|
Stream.h
|
|
|
|
Stream.cc
|
2018-04-22 09:23:08 +00:00
|
|
|
ReliableStream.h
|
|
|
|
ReliableStream.cc
|
|
|
|
CRC32.h
|
2018-04-22 12:07:52 +00:00
|
|
|
UnreliableStream.h
|
2018-04-20 22:03:29 +00:00
|
|
|
)
|
|
|
|
target_include_directories(LaunchAPPLCommon PUBLIC .)
|
2018-04-22 09:23:08 +00:00
|
|
|
|
|
|
|
add_executable(TestLaunchAPPLCommon Test.cc)
|
|
|
|
target_link_libraries(TestLaunchAPPLCommon LaunchAPPLCommon)
|
2018-05-01 19:17:39 +00:00
|
|
|
|
2019-01-04 02:35:32 +00:00
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES Retro)
|
|
|
|
target_compile_options(LaunchAPPLCommon PRIVATE -ffunction-sections -Os)
|
2018-05-01 19:17:39 +00:00
|
|
|
endif()
|