2015-07-16 00:29:30 +00:00
|
|
|
# HOW TO BUILD USING CMAKE as a standalone project:
|
|
|
|
# mkdir build
|
|
|
|
# cd build
|
|
|
|
# cmake .. -DCMAKE_TOOLCHAIN_FILE=path/to/Retro68-build/toolchain/cmake/retro68.toolchain.cmake
|
|
|
|
# make
|
2015-07-15 23:26:11 +00:00
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
|
|
|
|
add_application(HelloWorld
|
|
|
|
hello.c
|
|
|
|
CONSOLE
|
|
|
|
)
|
2017-09-29 20:31:35 +00:00
|
|
|
|
|
|
|
# make the result as small as possible
|
|
|
|
# by removing unused code (gc-sections)
|
2017-10-02 07:20:50 +00:00
|
|
|
# and by removing macsbug function names on 68K
|
2017-09-29 20:31:35 +00:00
|
|
|
# (don't do this when debugging...)
|
2017-10-02 07:20:50 +00:00
|
|
|
set_target_properties(HelloWorld PROPERTIES COMPILE_OPTIONS -ffunction-sections)
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES Retro68)
|
|
|
|
set_target_properties(HelloWorld PROPERTIES LINK_FLAGS "-Wl,-gc-sections -Wl,--mac-strip-macsbug")
|
|
|
|
|
|
|
|
else()
|
|
|
|
set_target_properties(HelloWorld PROPERTIES LINK_FLAGS "-Wl,-gc-sections")
|
|
|
|
endif()
|