execute_process.cmake 877 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # SPDX-License-Identifier: Apache-2.0
  2. # Parameter names identical to the execute_process() CMake command, and
  3. # "ARGS" for the process command-line arguments.
  4. # Use set(ARGS ...) to build the ARGS list and then quote the list
  5. # when invoking the COMMAND. Example:
  6. # set(ARGS a b c)
  7. # -DARGS="${ARGS}"
  8. if(NOT DEFINED COMMAND)
  9. message(FATAL_ERROR "No COMMAND argument supplied")
  10. endif()
  11. if(NOT DEFINED ARGS)
  12. set(ARGS )
  13. else()
  14. separate_arguments(ARGS)
  15. endif()
  16. if(DEFINED OUTPUT_FILE)
  17. set(OF OUTPUT_FILE ${OUTPUT_FILE})
  18. endif()
  19. if(DEFINED ERROR_FILE)
  20. set(EF ERROR_FILE ${ERROR_FILE})
  21. endif()
  22. if(DEFINED WORKING_DIRECTORY)
  23. set(WD WORKING_DIRECTORY ${WORKING_DIRECTORY})
  24. endif()
  25. execute_process(
  26. COMMAND ${COMMAND}
  27. ${ARGS}
  28. ${OF}
  29. ${EF}
  30. ${WD}
  31. RESULT_VARIABLE ret
  32. )
  33. if(NOT "${ret}" STREQUAL "0")
  34. message(FATAL_ERROR "Process failed: '${ret}'")
  35. endif()