File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,15 @@ Prerequisities:
33
33
- mbed-tools >=3.2.0
34
34
35
35
From the application root run the following:
36
- 1 . To create Mbed OS configuration: ` mbedtools configure -m target_name -t toolchain_name `
37
- 2 . Run CMake to create the project files and build the project using Ninja: ` mkdir build && cd build && cmake .. -GNinja && cmake --build . `
36
+ 1 . To create the Mbed OS configuration CMake module, from the root of the application or wherever ` mbed-os-lib ` is found:
37
+
38
+ ```
39
+ mbedtools configure -m target_name -t toolchain_name
40
+ ``
41
+
42
+ 2. Run the following command to create a build directory, generate the project configuration and build the project using `Ninja`:
43
+
44
+ ```
45
+ mkdir build && cd build && cmake .. -GNinja && cmake --build .
46
+ ```
38
47
You can’t perform that action at this time.
0 commit comments