mirror of https://github.com/cy384/ssheven.git
20 lines
783 B
CMake
20 lines
783 B
CMake
cmake_minimum_required(VERSION 3.9)
|
|
|
|
add_application(ssheven CREATOR "SSH7" ssheven.c ssheven-console.c ssheven.r)
|
|
|
|
set_target_properties(ssheven PROPERTIES COMPILE_OPTIONS -ffunction-sections)
|
|
|
|
add_compile_options(-O2 -flto)
|
|
|
|
IF(CMAKE_SYSTEM_NAME MATCHES Retro68)
|
|
# for 68k
|
|
add_compile_options(-march=68020)
|
|
set_target_properties(ssheven PROPERTIES LINK_FLAGS "-Wl,-gc-sections -Wl,--mac-segments -Wl,${CMAKE_CURRENT_SOURCE_DIR}/ssheven.segmap")
|
|
target_link_libraries(ssheven ssh2 mbedtls mbedx509 mbedcrypto OpenTransportApp OpenTransport OpenTptInet)
|
|
ELSE()
|
|
# for PPC
|
|
set_target_properties(ssheven PROPERTIES LINK_FLAGS "-Wl,-gc-sections")
|
|
target_link_libraries(ssheven ThreadsLib ssh2 mbedtls mbedx509 mbedcrypto OpenTransportAppPPC OpenTransportLib OpenTptInternetLib)
|
|
ENDIF()
|
|
|