1# Ambiq HAL Components 2# 3# Copyright (c) 2023 Ambiq Micro Inc. <www.ambiq.com> 4# 5# SPDX-License-Identifier: Apache-2.0 6 7zephyr_library() 8 9if(CONFIG_SOC_APOLLO4P_BLUE) 10 zephyr_library_sources(bluetooth/am_devices_cooper.c) 11elseif(CONFIG_SOC_APOLLO3P_BLUE OR CONFIG_SOC_APOLLO3_BLUE) 12 zephyr_library_sources(bluetooth/am_apollo3_bt_support.c) 13endif() 14 15zephyr_include_directories(bluetooth) 16