File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ $ mbedtools configure -t <TOOLCHAIN> -m <MBED_TARGET>
88
88
* Run the following command to build the test binary with the full profile
89
89
90
90
```
91
- touch mbed-os.lib && mkdir build && cd build && cmake .. -G Ninja && cmake --build .
91
+ touch mbed-os.lib && mkdir cmake_build && cd cmake_build && cmake .. -G Ninja && cmake --build .
92
92
```
93
93
* Run the following command to build the test binary with the baremetal profile
94
94
```
Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ include(${MBED_PATH}/tools/cmake/app.cmake)
23
23
macro (mbed_greentea_cmake_macro)
24
24
set (options )
25
25
set (singleValueArgs TEST_NAME)
26
- set (multipleValueArgs
27
- TEST_INCLUDE_DIRS
28
- TEST_SOURCES
29
- TEST_REQUIRED_LIBS
26
+ set (multipleValueArgs
27
+ TEST_INCLUDE_DIRS
28
+ TEST_SOURCES
29
+ TEST_REQUIRED_LIBS
30
30
)
31
- cmake_parse_arguments (MBED_GREENTEA
32
- "${options} "
31
+ cmake_parse_arguments (MBED_GREENTEA
32
+ "${options} "
33
33
"${singleValueArgs} "
34
- "${multipleValueArgs} "
34
+ "${multipleValueArgs} "
35
35
${ARGN}
36
36
)
37
37
You can’t perform that action at this time.
0 commit comments