File tree Expand file tree Collapse file tree 5 files changed +4
-10
lines changed Expand file tree Collapse file tree 5 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ target_sources(mbed-os-netsocket
43
43
target_compile_definitions (mbed-os-netsocket
44
44
INTERFACE
45
45
MBED_CONF_NETSOCKET_PRESENT=1
46
- MBED_CONF_CMAKE_NETSOCKET_ENABLED=1
47
46
)
48
47
49
48
target_link_libraries (mbed-os-netsocket
Original file line number Diff line number Diff line change @@ -23,5 +23,4 @@ target_sources(mbed-os-events
23
23
target_compile_definitions (mbed-os-events
24
24
INTERFACE
25
25
MBED_CONF_EVENTS_PRESENT=1
26
- MBED_CONF_CMAKE_EVENTS_ENABLED
27
26
)
Original file line number Diff line number Diff line change 19
19
20
20
#include " platform/mbed_version.h"
21
21
22
- // MBED_CONF_CMAKE is temporary until tools do not set _PRESENT macros
23
-
24
- #if defined(MBED_CONF_RTOS_PRESENT) && defined(MBED_CONF_CMAKE_RTOS_ENABLED)
22
+ #if defined(MBED_CONF_RTOS_PRESENT)
25
23
#include " rtos/rtos.h"
26
24
#endif
27
25
28
- #if defined(MBED_CONF_NETSOCKET_PRESENT) && defined(MBED_CONF_CMAKE_NETSOCKET_ENABLED)
26
+ #if defined(MBED_CONF_NETSOCKET_PRESENT)
29
27
#include " netsocket/nsapi.h"
30
28
#include " netsocket/nsapi_ppp.h"
31
29
#endif
32
30
33
- #if defined(MBED_CONF_EVENTS_PRESENT) && defined(MBED_CONF_CMAKE_EVENTS_ENABLED)
31
+ #if defined(MBED_CONF_EVENTS_PRESENT)
34
32
#include " events/mbed_events.h"
35
33
#endif
36
34
37
- #if defined(MBED_CONF_FILESYSTEM_PRESENT) && defined(MBED_CONF_CMAKE_FILESYSTEM_ENABLED)
35
+ #if defined(MBED_CONF_FILESYSTEM_PRESENT)
38
36
#include " filesystem/mbed_filesystem.h"
39
37
#endif
40
38
Original file line number Diff line number Diff line change @@ -24,5 +24,4 @@ target_sources(mbed-os
24
24
target_compile_definitions (mbed-os
25
25
PUBLIC
26
26
MBED_CONF_RTOS_PRESENT=1
27
- MBED_CONF_CMAKE_RTOS_ENABLED=1
28
27
)
Original file line number Diff line number Diff line change @@ -33,5 +33,4 @@ target_include_directories(mbed-os-storage
33
33
target_compile_definitions (mbed-os-storage
34
34
INTERFACE
35
35
MBED_CONF_FILESYSTEM_PRESENT=1
36
- MBED_CONF_CMAKE_FILESYSTEM_ENABLED=1
37
36
)
You can’t perform that action at this time.
0 commit comments