CMakeLists.txt 411 B

1234567891011121314
  1. # SPDX-License-Identifier: Apache-2.0
  2. if (CONFIG_SOC_LEOPARD)
  3. if (CONFIG_SPINAND_LIB)
  4. if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/libspinand/CMakeLists.txt)
  5. add_subdirectory(libspinand)
  6. else()
  7. zephyr_library_import(libspinand ${CMAKE_CURRENT_LIST_DIR}/libspinand.a)
  8. endif()
  9. endif() #SPINAND_LIB
  10. zephyr_library()
  11. zephyr_library_sources_ifdef(CONFIG_SPINAND_ACTS spinand_acts.c)
  12. endif() #SOC_LEOPARD