From 5a2c3ee61bf2740c79be87551611ec72e6fa2b6b Mon Sep 17 00:00:00 2001 From: GeckoEidechse Date: Mon, 5 Feb 2024 18:07:28 +0100 Subject: docs: Update build instructions to mention explicit build dir instead of putting build dir inside main source tree --- BUILD.md | 4 ++-- 1 file 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 -- cgit v1.2.3