CMakeLists.txt 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # SPDX-License-Identifier: Apache-2.0
  2. zephyr_sources_ifdef(CONFIG_BASE64 base64.c)
  3. zephyr_sources(
  4. cbprintf.c
  5. cbprintf_packaged.c
  6. crc32c_sw.c
  7. crc32_sw.c
  8. crc8_sw.c
  9. crc7_sw.c
  10. dec.c
  11. fdtable.c
  12. hex.c
  13. notify.c
  14. printk.c
  15. onoff.c
  16. rb.c
  17. sem.c
  18. thread_entry.c
  19. timeutil.c
  20. heap.c
  21. heap-validate.c
  22. bitarray.c
  23. )
  24. zephyr_sources_ifndef(CONFIG_CRC_ACTS crc16_sw.c)
  25. zephyr_sources_ifdef(CONFIG_CBPRINTF_COMPLETE cbprintf_complete.c)
  26. zephyr_sources_ifdef(CONFIG_CBPRINTF_COMPLETE_BROM cbprintf_complete_brom.c)
  27. zephyr_sources_ifdef(CONFIG_CBPRINTF_NANO cbprintf_nano.c)
  28. zephyr_sources_ifdef(CONFIG_JSON_LIBRARY json.c)
  29. zephyr_sources_ifdef(CONFIG_RING_BUFFER ring_buffer.c)
  30. zephyr_sources_ifdef(CONFIG_ASSERT assert.c)
  31. zephyr_sources_ifdef(CONFIG_USERSPACE mutex.c user_work.c)
  32. zephyr_sources_ifdef(CONFIG_MPSC_PBUF mpsc_pbuf.c)
  33. zephyr_sources_ifdef(CONFIG_SCHED_DEADLINE p4wq.c)
  34. zephyr_sources_ifdef(CONFIG_REBOOT reboot.c)
  35. zephyr_library_include_directories(
  36. ${ZEPHYR_BASE}/kernel/include
  37. ${ZEPHYR_BASE}/arch/${ARCH}/include
  38. )