1# SPDX-License-Identifier: Apache-2.0
2
3if (CONFIG_SD_STACK)
4  zephyr_interface_library_named(SD)
5
6  zephyr_library()
7  zephyr_library_sources(sd.c sd_ops.c)
8  zephyr_library_sources_ifdef(CONFIG_SDMMC_STACK sdmmc.c)
9  zephyr_library_sources_ifdef(CONFIG_SDIO_STACK sdio.c)
10  zephyr_library_sources_ifdef(CONFIG_MMC_STACK mmc.c)
11
12endif()
13