mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00:00
25 lines
555 B
CMake
25 lines
555 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
set(CMAKE_CXX_FLAGS "-std=c++11") # -fomit-frame-pointer")
|
|
add_executable(Test
|
|
test.cc
|
|
Console.cc
|
|
Console.h
|
|
MacUtils.h
|
|
)
|
|
#target_link_libraries(Test :retrocrt.o)
|
|
|
|
target_link_libraries(Test retrocrt)
|
|
add_custom_command(
|
|
OUTPUT Test.bin
|
|
COMMAND ${MAKE_APPL} -c Test
|
|
DEPENDS Test)
|
|
add_custom_target(TestAPPL ALL DEPENDS Test.bin)
|
|
|
|
set(UPLOAD_URL "" CACHE STRING "ftp url to upload to")
|
|
if(UPLOAD_URL)
|
|
add_custom_target(upload
|
|
DEPENDS Test.bin
|
|
COMMAND wput -u Test.bin ${UPLOAD_URL}
|
|
)
|
|
endif()
|