It's a fatal error to not find the dependency checker tool.

This commit is contained in:
Petr Mrázek 2014-05-02 00:52:08 +02:00
parent 27732d66b4
commit 95203df9ca

View File

@ -604,7 +604,7 @@ function(get_prerequisites target prerequisites_var exclude_system recurse exepa
find_program(gp_cmd ${gp_tool} PATHS ${gp_cmd_paths}) find_program(gp_cmd ${gp_tool} PATHS ${gp_cmd_paths})
if(NOT gp_cmd) if(NOT gp_cmd)
message(FATAL_ERROR "warning: could not find '${gp_tool}' - cannot analyze prerequisites!") message(FATAL_ERROR "FATAL ERROR: could not find '${gp_tool}' - cannot analyze prerequisites!")
return() return()
endif() endif()