cmake - I don't care what you couldn't find unless you need it

This commit is contained in:
Daniel Agar 2016-04-17 16:27:05 -04:00
parent 19c78f583a
commit f754119ff6
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ foreach(tool gdb gdbtui)
string(TOUPPER ${tool} TOOL)
find_program(${TOOL} arm-none-eabi-${tool})
if(NOT ${TOOL})
message(STATUS "could not find ${tool}")
#message(STATUS "could not find ${tool}")
endif()
endforeach()
@ -68,7 +68,7 @@ foreach(tool ddd)
string(TOUPPER ${tool} TOOL)
find_program(${TOOL} ${tool})
if(NOT ${TOOL})
message(STATUS "could not find ${tool}")
#message(STATUS "could not find ${tool}")
endif()
endforeach()

View File

@ -3,7 +3,7 @@ foreach(tool nm ld)
string(TOUPPER ${tool} TOOL)
find_program(${TOOL} ${tool})
if(NOT ${TOOL})
message(FATAL_ERROR "could not find ${tool}")
#message(FATAL_ERROR "could not find ${tool}")
endif()
endforeach()