3ae52624ff
Update the files which contain no license information with the 'Apache-2.0' SPDX license identifier. Many source files in the tree are missing licensing information, which makes it harder for compliance tools to determine the correct license. By default all files without license information are under the default license of Zephyr, which is Apache version 2. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
44 lines
877 B
CMake
44 lines
877 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Parameter names identical to the execute_process() CMake command, and
|
|
# "ARGS" for the process command-line arguments.
|
|
# Use set(ARGS ...) to build the ARGS list and then quote the list
|
|
# when invoking the COMMAND. Example:
|
|
# set(ARGS a b c)
|
|
# -DARGS="${ARGS}"
|
|
|
|
if(NOT DEFINED COMMAND)
|
|
message(FATAL_ERROR "No COMMAND argument supplied")
|
|
endif()
|
|
|
|
if(NOT DEFINED ARGS)
|
|
set(ARGS )
|
|
else()
|
|
separate_arguments(ARGS)
|
|
endif()
|
|
|
|
if(DEFINED OUTPUT_FILE)
|
|
set(OF OUTPUT_FILE ${OUTPUT_FILE})
|
|
endif()
|
|
|
|
if(DEFINED ERROR_FILE)
|
|
set(EF ERROR_FILE ${ERROR_FILE})
|
|
endif()
|
|
|
|
if(DEFINED WORKING_DIRECTORY)
|
|
set(WD WORKING_DIRECTORY ${WORKING_DIRECTORY})
|
|
endif()
|
|
|
|
execute_process(
|
|
COMMAND ${COMMAND}
|
|
${ARGS}
|
|
${OF}
|
|
${EF}
|
|
${WD}
|
|
RESULT_VARIABLE ret
|
|
)
|
|
|
|
if(NOT "${ret}" STREQUAL "0")
|
|
message(FATAL_ERROR "Process failed: '${ret}'")
|
|
endif()
|