mirror of https://github.com/ARMmbed/mbed-os.git
28 lines
616 B
CMake
28 lines
616 B
CMake
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
add_subdirectory(libraries)
|
|
add_subdirectory(source)
|
|
|
|
target_include_directories(mbed-ble
|
|
INTERFACE
|
|
.
|
|
include
|
|
include/ble
|
|
include/ble/common
|
|
include/ble/common/ble
|
|
include/ble/common/ble/gap
|
|
include/ble/compatibility
|
|
include/ble/compatibility/ble
|
|
include/ble/driver
|
|
include/ble/gap
|
|
include/ble/gatt
|
|
include/ble/services
|
|
source
|
|
)
|
|
|
|
target_compile_definitions(mbed-ble
|
|
INTERFACE
|
|
MBED_CONF_BLE_PRESENT=1
|
|
)
|