mirror of https://github.com/ARMmbed/mbed-os.git
19 lines
660 B
CMake
19 lines
660 B
CMake
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if("ARM_FM" IN_LIST MBED_TARGET_LABELS)
|
|
add_subdirectory(TARGET_ARM_FM)
|
|
elseif("Cypress" IN_LIST MBED_TARGET_LABELS)
|
|
add_subdirectory(TARGET_Cypress)
|
|
elseif("Freescale" IN_LIST MBED_TARGET_LABELS)
|
|
add_subdirectory(TARGET_Freescale)
|
|
elseif("Maxim" IN_LIST MBED_TARGET_LABELS)
|
|
add_subdirectory(TARGET_Maxim)
|
|
elseif("NORDIC" IN_LIST MBED_TARGET_LABELS)
|
|
add_subdirectory(TARGET_NORDIC)
|
|
elseif("NUVOTON" IN_LIST MBED_TARGET_LABELS)
|
|
add_subdirectory(TARGET_NUVOTON)
|
|
elseif("STM" IN_LIST MBED_TARGET_LABELS)
|
|
add_subdirectory(TARGET_STM)
|
|
endif()
|