git.cmake 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. # SPDX-License-Identifier: Apache-2.0
  2. #.rst:
  3. # git.cmake
  4. # ---------
  5. # If the user didn't already define BUILD_VERSION then try to initialize
  6. # it with the output of "git describe". Warn but don't error if
  7. # everything fails and leave BUILD_VERSION undefined.
  8. #
  9. # See also: independent and more static ``KERNEL_VERSION_*`` in
  10. # ``version.cmake`` and ``kernel_version.h``
  11. # https://cmake.org/cmake/help/latest/module/FindGit.html
  12. find_package(Git QUIET)
  13. if(NOT DEFINED BUILD_VERSION AND GIT_FOUND)
  14. execute_process(
  15. COMMAND ${GIT_EXECUTABLE} describe --abbrev=12 --always
  16. WORKING_DIRECTORY ${ZEPHYR_BASE}
  17. OUTPUT_VARIABLE BUILD_VERSION
  18. OUTPUT_STRIP_TRAILING_WHITESPACE
  19. ERROR_STRIP_TRAILING_WHITESPACE
  20. ERROR_VARIABLE stderr
  21. RESULT_VARIABLE return_code
  22. )
  23. if(return_code)
  24. message(STATUS "git describe failed: ${stderr}")
  25. elseif(NOT "${stderr}" STREQUAL "")
  26. message(STATUS "git describe warned: ${stderr}")
  27. endif()
  28. endif()