diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2024-02-05 18:07:28 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2024-02-05 18:07:28 +0100 |
commit | 5a2c3ee61bf2740c79be87551611ec72e6fa2b6b (patch) | |
tree | 409a21661d86615764e01eae37ca8b9a3812e3e2 | |
parent | 73262ca616f0623a9715ceac90c17b0da4b320d7 (diff) | |
download | NorthstarLauncher-5a2c3ee61bf2740c79be87551611ec72e6fa2b6b.tar.gz NorthstarLauncher-5a2c3ee61bf2740c79be87551611ec72e6fa2b6b.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.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |