mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-16 22:30:44 +00:00
17 lines
438 B
CMake
17 lines
438 B
CMake
add_library(LaunchAPPLCommon
|
|
Stream.h
|
|
Stream.cc
|
|
ReliableStream.h
|
|
ReliableStream.cc
|
|
CRC32.h
|
|
UnreliableStream.h
|
|
)
|
|
target_include_directories(LaunchAPPLCommon PUBLIC .)
|
|
|
|
add_executable(TestLaunchAPPLCommon Test.cc)
|
|
target_link_libraries(TestLaunchAPPLCommon LaunchAPPLCommon)
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES Retro68)
|
|
#target_compile_options(LaunchAPPLCommon PRIVATE -ffunction-sections -fno-exceptions -Os)
|
|
endif()
|