diff --git a/Compile-on-WSL.md b/Compile-on-WSL.md index ce07871..da68fd5 100644 --- a/Compile-on-WSL.md +++ b/Compile-on-WSL.md @@ -56,11 +56,11 @@ ```sh mkdir build cd build - cmake .. + cmake -G Ninja .. ``` 9. Build the firmware: ```sh - make + ninja ```