mirror of https://github.com/ARMmbed/mbed-os.git
29 lines
531 B
CMake
29 lines
531 B
CMake
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
add_subdirectory(cordio)
|
|
add_subdirectory(gap)
|
|
add_subdirectory(gatt)
|
|
add_subdirectory(generic)
|
|
add_subdirectory(pal)
|
|
|
|
target_include_directories(mbed-ble
|
|
INTERFACE
|
|
.
|
|
)
|
|
|
|
target_sources(mbed-ble
|
|
INTERFACE
|
|
BLE.cpp
|
|
Gap.cpp
|
|
GattClient.cpp
|
|
GattServer.cpp
|
|
SecurityManager.cpp
|
|
common/ble_trace_helpers.cpp
|
|
)
|
|
|
|
target_link_libraries(mbed-ble
|
|
INTERFACE
|
|
mbed-ble-cordio
|
|
)
|