remove ftp uploading code from CMakeLists

This commit is contained in:
Wolfgang Thaller 2014-11-15 12:18:57 +01:00
parent 5d60fbd964
commit d67fafeb4b
1 changed files with 1 additions and 8 deletions

View File

@ -20,16 +20,9 @@ set(CMAKE_CXX_FLAGS "-std=c++11") # -fomit-frame-pointer")
add_application(ExceptionTest CONSOLE ExceptionTest.cc)
add_application(InitTest CONSOLE InitTest.cc)
add_application(EmptyTest EmptyTest.c)
enable_language(ASM)
add_application(AsmTest AsmTest.s)
set_target_properties(AsmTest PROPERTIES LINKER_LANGUAGE C)
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()