CMakeLists.txt 263 B

12345678910111213141516
  1. # Copyright (c) 2020 Intel Corporation.
  2. # SPDX-License-Identifier: Apache-2.0
  3. zephyr_library()
  4. zephyr_library_compile_options(-O3 -DDEBUG_RAMDUMP)
  5. zephyr_library_include_directories(
  6. .
  7. )
  8. zephyr_library_sources(
  9. ramdump_core.c
  10. ramdump_mem.c
  11. fastlz.c
  12. )