forked from Archive/PX4-Autopilot
18 lines
401 B
CMake
18 lines
401 B
CMake
# compiler tools
|
|
foreach(tool nm ld)
|
|
string(TOUPPER ${tool} TOOL)
|
|
find_program(${TOOL} ${tool})
|
|
if(NOT ${TOOL})
|
|
message(FATAL_ERROR "could not find ${tool}")
|
|
endif()
|
|
endforeach()
|
|
|
|
# os tools
|
|
foreach(tool echo grep rm mkdir nm cp touch make unzip)
|
|
string(TOUPPER ${tool} TOOL)
|
|
find_program(${TOOL} ${tool})
|
|
if(NOT ${TOOL})
|
|
message(FATAL_ERROR "could not find ${TOOL}")
|
|
endif()
|
|
endforeach()
|