From 40bad0b18d9f4f49e17f7670a4d819aa0820496c Mon Sep 17 00:00:00 2001 From: jLynx Date: Wed, 16 Oct 2024 18:39:04 +1300 Subject: [PATCH] Updated Compile on WSL (markdown) --- Compile-on-WSL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ```