File tree Expand file tree Collapse file tree 6 files changed +19
-8
lines changed Expand file tree Collapse file tree 6 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 4
4
add_library (mbed-stubs-headers INTERFACE )
5
5
add_library (mbed-headers INTERFACE )
6
6
add_library (mbed-headers-base INTERFACE )
7
- add_library (mbed-headers-connectivity INTERFACE )
8
7
9
8
target_link_libraries (mbed-headers
10
9
INTERFACE
11
10
mbed-headers-base
12
11
mbed-headers-platform
13
- mbed-headers-connectivity
14
12
mbed-headers-drivers
15
13
mbed-headers-hal
16
14
mbed-headers-events
@@ -28,12 +26,6 @@ target_include_directories(mbed-headers-base
28
26
${mbed-os_SOURCE_DIR}/UNITTESTS/target_h/sys
29
27
)
30
28
31
- target_include_directories (mbed-headers-connectivity
32
- INTERFACE
33
- ${mbed-os_SOURCE_DIR}/connectivity
34
- ${mbed-os_SOURCE_DIR}/connectivity/FEATURE_BLE/include
35
- ${mbed-os_SOURCE_DIR}/connectivity/FEATURE_BLE/include/ble
36
- )
37
29
38
30
target_include_directories (mbed-headers
39
31
INTERFACE
Original file line number Diff line number Diff line change 43
43
add_subdirectory (netsocket )
44
44
add_subdirectory (mbedtls )
45
45
add_subdirectory (libraries )
46
+ add_subdirectory (FEATURE_BLE )
46
47
endif ()
Original file line number Diff line number Diff line change 1
1
# Copyright (c) 2020 ARM Limited. All rights reserved.
2
2
# SPDX-License-Identifier: Apache-2.0
3
3
4
+ if (CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME AND BUILD_TESTING )
5
+ add_subdirectory (tests/UNITTESTS )
6
+ endif ()
7
+
4
8
add_subdirectory (libraries )
5
9
add_subdirectory (source )
6
10
Original file line number Diff line number Diff line change
1
+ *
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2021 ARM Limited. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+ add_subdirectory (doubles )
Original file line number Diff line number Diff line change
1
+ # Copyright (c) 2021 ARM Limited. All rights reserved.
2
+ # SPDX-License-Identifier: Apache-2.0
3
+
4
+ add_library (mbed-headers-feature-ble INTERFACE )
5
+
6
+ target_include_directories (mbed-headers-feature-ble
7
+ INTERFACE
8
+ ${mbed-os_SOURCE_DIR}/connectivity/FEATURE_BLE/include
9
+ ${mbed-os_SOURCE_DIR}/connectivity/FEATURE_BLE/include/ble
10
+ )
You can’t perform that action at this time.
0 commit comments