check_runner_dependencies.cmake 585 B

12345678910111213141516171819
  1. # SPDX-License-Identifier: Apache-2.0
  2. # The purpose of this script is to ensure that no runners targets contains
  3. # additional dependencies.
  4. #
  5. # If the target contains dependencies, an error will be printed.
  6. #
  7. # Arguments to the script
  8. #
  9. # TARGET: The target being checked.
  10. # DEPENDENCIES: List containing dependencies on target.
  11. if(DEPENDENCIES)
  12. string(REPLACE ";" " " DEPENDENCIES "${DEPENDENCIES}")
  13. message(FATAL_ERROR
  14. "`${TARGET}` cannot have dependencies, please remove "
  15. "`add_dependencies(${TARGET} ${DEPENDENCIES})` in build system."
  16. )
  17. endif()