CMakeLists.txt 641 B

123456789101112
  1. # Copyright (c) 2020 Actions Semiconductor Co., Ltd
  2. #
  3. # SPDX-License-Identifier: Apache-2.0
  4. zephyr_library_sources_ifdef(CONFIG_ACTLOG act_log.c act_log_shell.c act_log_test.c)
  5. #zephyr_library_sources_ifdef(CONFIG_ACTLOG act_log_mem.c)
  6. zephyr_library_sources_ifdef(CONFIG_ACTLOG act_log_output_backend.c)
  7. zephyr_library_sources_ifdef(CONFIG_ACTLOG_OUTPUT_BINARY act_log_output_binary.c act_log_flash_buffer.c)
  8. zephyr_library_sources_ifdef(CONFIG_ACTLOG_OUTPUT_FLOW act_log_output_flow.c)
  9. zephyr_library_sources_ifdef(CONFIG_ACTLOG_OUTPUT_FILE act_log_output_file.c)
  10. add_subdirectory_ifdef(CONFIG_ACTLOG_OUTPUT_BINARY easyflash)