CMakeLists.txt 363 B

1234567891011121314151617181920
  1. #
  2. # Copyright (c) 2020 Actions Semiconductor
  3. #
  4. # SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Actions
  5. #
  6. if (CONFIG_ACTS_BT)
  7. target_include_directories(acts_bluetooth INTERFACE
  8. .
  9. ./include
  10. )
  11. zephyr_library_sources(btsrv_main.c)
  12. add_subdirectory(core)
  13. add_subdirectory(btif)
  14. if(CONFIG_BT_BR_ACTS)
  15. add_subdirectory(profile)
  16. endif()
  17. endif()