Retro68/App2/CMakeLists.txt

25 lines
555 B
CMake
Raw Normal View History

2012-04-05 22:45:04 +00:00
cmake_minimum_required(VERSION 2.8)
set(CMAKE_CXX_FLAGS "-std=c++11") # -fomit-frame-pointer")
2012-03-30 08:01:55 +00:00
add_executable(Test
test.cc
Console.cc
Console.h
2012-04-05 22:45:04 +00:00
MacUtils.h
)
#target_link_libraries(Test :retrocrt.o)
target_link_libraries(Test retrocrt)
2012-03-29 19:59:18 +00:00
add_custom_command(
2012-04-05 23:43:18 +00:00
OUTPUT Test.bin
COMMAND ${MAKE_APPL} -c Test
2012-03-29 19:59:18 +00:00
DEPENDS Test)
2012-04-05 23:43:18 +00:00
add_custom_target(TestAPPL ALL DEPENDS Test.bin)
2012-04-05 22:45:26 +00:00
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()