mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-22 10:32:39 +00:00
15 lines
329 B
CMake
15 lines
329 B
CMake
# 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
|
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
add_application(MessagesForMacintosh
|
|
SerialHelper.c
|
|
coprocessorjs.c
|
|
mac_main.c
|
|
mac_main.r
|
|
)
|