aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2024-02-05 18:07:28 +0100
committerGeckoEidechse <gecko.eidechse+git@pm.me>2024-02-05 18:07:28 +0100
commit5a2c3ee61bf2740c79be87551611ec72e6fa2b6b (patch)
tree409a21661d86615764e01eae37ca8b9a3812e3e2
parent73262ca616f0623a9715ceac90c17b0da4b320d7 (diff)
downloadNorthstarLauncher-docs/update-build-instructions.tar.gz
NorthstarLauncher-docs/update-build-instructions.zip
docs: Update build instructions to mention explicit build dirdocs/update-build-instructions
instead of putting build dir inside main source tree
-rw-r--r--BUILD.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/BUILD.md b/BUILD.md
index 06dc1fb9..7dcb2147 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -37,9 +37,9 @@ Developers who can work a command line may be interested in using [Visual Studio
- Follow the same steps as above for Visual Studio Build Tools, but instead of opening in Visual Studio, run the Command Prompt for VS 2022 and navigate to the NorthstarLauncher.
-- Run `cmake . -G "Ninja"` to generate build files.
+- Run `cmake -S "." -B "build" -G "Ninja"` to generate build files.
-- Run `cmake --build .` to build the project.
+- Run `cmake --build "build"` to build the project.
## Linux
### Steps