You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

8 lines
363 B

macro(check_find_package_result _VAR _PKGNAME)
if(${_VAR})
message(STATUS "Check for installed ${_PKGNAME} -- found")
else(${_VAR})
message(STATUS "Check for installed ${_PKGNAME} -- not found")
message(FATAL_ERROR "${_PKGNAME} was not found - it is required to build Kicad")
endif(${_VAR})
endmacro(check_find_package_result)