mirror of https://github.com/ARMmbed/mbed-os.git
14 lines
330 B
CMake
14 lines
330 B
CMake
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if("GD32F30X" IN_LIST MBED_TARGET_LABELS)
|
|
add_subdirectory(TARGET_GD32F30X)
|
|
elseif("GD32F4XX" IN_LIST MBED_TARGET_LABELS)
|
|
add_subdirectory(TARGET_GD32F4XX)
|
|
endif()
|
|
|
|
target_include_directories(mbed-core
|
|
INTERFACE
|
|
.
|
|
)
|