CMakeLists.txt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Copyright (c) 2021, Basalte bv
  2. #
  3. # SPDX-License-Identifier: Apache-2.0
  4. if(CONFIG_NANOPB)
  5. set(NANOPB_DIR ${ZEPHYR_CURRENT_MODULE_DIR})
  6. find_program(PROTOC protoc)
  7. if(NOT PROTOC)
  8. message(FATAL_ERROR "'protoc' not found, please ensure protoc is installed\
  9. and in path. See https://docs.zephyrproject.org/latest/samples/modules/nanopb/README.html")
  10. endif()
  11. set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${NANOPB_DIR}/extra)
  12. find_package(Nanopb REQUIRED)
  13. zephyr_library()
  14. zephyr_include_directories(${NANOPB_DIR})
  15. zephyr_library_sources(
  16. ${NANOPB_DIR}/pb_common.c
  17. ${NANOPB_DIR}/pb_encode.c
  18. ${NANOPB_DIR}/pb_decode.c
  19. )
  20. zephyr_compile_definitions(
  21. PB_MAX_REQUIRED_FIELDS=${CONFIG_NANOPB_MAX_REQUIRED_FIELDS})
  22. zephyr_compile_definitions_ifdef(
  23. CONFIG_NANOPB_ENABLE_MALLOC
  24. PB_ENABLE_MALLOC
  25. )
  26. zephyr_compile_definitions_ifdef(
  27. CONFIG_NANOPB_NO_ERRMSG
  28. PB_NO_ERRMSG
  29. )
  30. zephyr_compile_definitions_ifdef(
  31. CONFIG_NANOPB_BUFFER_ONLY
  32. PB_BUFFER_ONLY
  33. )
  34. zephyr_compile_definitions_ifdef(
  35. CONFIG_NANOPB_WITHOUT_64BIT
  36. PB_WITHOUT_64BIT
  37. )
  38. zephyr_compile_definitions_ifdef(
  39. CONFIG_NANOPB_ENCODE_ARRAYS_UNPACKED
  40. PB_ENCODE_ARRAYS_UNPACKED
  41. )
  42. zephyr_compile_definitions_ifdef(
  43. CONFIG_NANOPB_VALIDATE_UTF8
  44. PB_VALIDATE_UTF8
  45. )
  46. endif()