boards.cmake 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # SPDX-License-Identifier: Apache-2.0
  2. set(arch_root_args)
  3. foreach(root ${ARCH_ROOT})
  4. list(APPEND arch_root_args "--arch-root=${root}")
  5. endforeach()
  6. set(board_root_args)
  7. foreach(root ${BOARD_ROOT})
  8. list(APPEND board_root_args "--board-root=${root}")
  9. endforeach()
  10. set(list_boards_commands
  11. COMMAND ${PYTHON_EXECUTABLE} ${ZEPHYR_BASE}/scripts/list_boards.py
  12. ${arch_root_args} ${board_root_args}
  13. )
  14. if(CMAKE_SCRIPT_MODE_FILE AND NOT CMAKE_PARENT_LIST_FILE)
  15. # If this file is invoked as a script directly with -P:
  16. # cmake [options] -P board.cmake
  17. # Note that CMAKE_PARENT_LIST_FILE not being set ensures that this present
  18. # file is being invoked directly with -P, and not via an include directive from
  19. # some other script
  20. # The options available are:
  21. # ARCH_ROOT: Semi-colon separated arch roots
  22. # BOARD_ROOT: Semi-colon separated board roots
  23. # FILE_OUT: Set to a file path to save the boards to a file. If not defined the
  24. # the contents will be printed to stdout
  25. cmake_minimum_required(VERSION 3.20.0)
  26. set(NO_BOILERPLATE TRUE)
  27. find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
  28. if (FILE_OUT)
  29. list(APPEND list_boards_commands OUTPUT_FILE "${FILE_OUT}")
  30. endif()
  31. execute_process(${list_boards_commands})
  32. endif()