Skip to content
Snippets Groups Projects
Commit f754119f authored by Daniel Agar's avatar Daniel Agar
Browse files

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

parent 19c78f58
No related branches found
No related tags found
No related merge requests found
......@@ -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()
......
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment