usage.cmake 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # SPDX-License-Identifier: Apache-2.0
  2. if(NOT DEFINED ZEPHYR_BASE)
  3. message(FATAL_ERROR "ZEPHYR_BASE not set")
  4. endif()
  5. get_filename_component(generator ${CMAKE_MAKE_PROGRAM} NAME)
  6. if(${generator} STREQUAL ninja)
  7. set(verbose "-v")
  8. else()
  9. set(verbose "VERBOSE=1")
  10. endif()
  11. message("Cleaning targets:")
  12. message(" clean - Remove most generated files but keep configuration and backup files")
  13. message(" pristine - Remove all files in the build directory")
  14. message("")
  15. message("Kconfig targets:")
  16. message(" menuconfig - Update .config using a console-based interface")
  17. message(" guiconfig - Update .config using a graphical interface")
  18. message("")
  19. message("Other generic targets:")
  20. message(" all - Build a zephyr application")
  21. message(" run - Build a zephyr application and run it if the board supports emulation")
  22. message(" flash - Run \"west flash\"")
  23. message(" debug - Run \"west debug\"")
  24. message(" debugserver - Run \"west debugserver\" (or start GDB server on port 1234 for QEMU targets)")
  25. message(" attach - Run \"west attach\"")
  26. message(" ram_report - Build and create RAM usage report")
  27. message(" rom_report - Build and create ROM usage report")
  28. message(" boards - Display supported boards")
  29. message(" shields - Display supported shields")
  30. message(" usage - Display this text")
  31. message(" help - Display all build system targets")
  32. message("")
  33. message("Build flags:")
  34. message("")
  35. message(" ${generator} ${verbose} [targets] verbose build")
  36. message(" cmake -DW=n Enable extra gcc checks, n=1,2,3 where")
  37. message(" 1: warnings which may be relevant and do not occur too often")
  38. message(" 2: warnings which occur quite often but may still be relevant")
  39. message(" 3: more obscure warnings, can most likely be ignored")
  40. message(" Multiple levels can be combined with W=12 or W=123")