From 8519e4bbc323cae23708653d1761e82867aea7e0 Mon Sep 17 00:00:00 2001 From: Samuel Marks <807580+SamuelMarks@users.noreply.github.com> Date: Fri, 29 Dec 2023 13:15:39 -0500 Subject: [PATCH] [README.md] Use `cmake --build` and source location flags to simplify and cross-platform configuring & building --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2f6a211..9606b60 100644 --- a/README.md +++ b/README.md @@ -53,10 +53,8 @@ It also remembers the LED state for each computer, so you can pick up exactly ho ## How to build ``` -mkdir build -cd build -PICO_BOARD=pico PICO_SDK_PATH=/your/sdk/path cmake .. -make +PICO_BOARD=pico PICO_SDK_PATH=/your/sdk/path cmake -S . -B build +cmake --build build ``` ## Using pre-built images