1# Ambiq HAL 2# 3# Copyright (c) 2023 Antmicro Ltd <www.antmicro.com> 4# 5# SPDX-License-Identifier: Apache-2.0 6 7if(CONFIG_SOC_APOLLO4P OR CONFIG_SOC_APOLLO4P_BLUE) 8 zephyr_include_directories(apollo4p) 9 add_subdirectory(apollo4p) 10elseif(CONFIG_SOC_APOLLO3P OR CONFIG_SOC_APOLLO3P_BLUE) 11 zephyr_include_directories(apollo3p) 12 add_subdirectory(apollo3p) 13elseif(CONFIG_SOC_APOLLO3 OR CONFIG_SOC_APOLLO3_BLUE) 14 zephyr_include_directories(apollo3) 15 add_subdirectory(apollo3) 16endif() 17