mirror of https://github.com/ARMmbed/mbed-os.git
19 lines
358 B
CMake
19 lines
358 B
CMake
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if("CORDIO_LL" IN_LIST MBED_TARGET_LABELS)
|
|
add_subdirectory(TARGET_CORDIO_LL)
|
|
endif()
|
|
|
|
add_subdirectory(cordio_stack)
|
|
|
|
target_include_directories(mbed-ble-cordio
|
|
INTERFACE
|
|
.
|
|
)
|
|
|
|
target_link_libraries(mbed-ble-cordio
|
|
INTERFACE
|
|
mbed-ble
|
|
)
|