From cd51bd516ff6a2478ca697cde80bbcfb0a71a752 Mon Sep 17 00:00:00 2001 From: gameboycjp <37276103+gameboycjp@users.noreply.github.com> Date: Fri, 21 Apr 2023 14:30:41 -0700 Subject: [PATCH] Update BUILD_WIN.md Overhaul step 7 --- BUILD_WIN.md | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/BUILD_WIN.md b/BUILD_WIN.md index 8f69fa2e01..7a1d6ffeb0 100644 --- a/BUILD_WIN.md +++ b/BUILD_WIN.md @@ -95,13 +95,24 @@ To create this variable: ## Step 7. Running CMake to Generate Build Files -Run Command Prompt from Start and run the following commands: -`cd "%OVERTE_DIR%"` -`mkdir build` -`cd build` +These instructions only apply to Visual Studio 2019. -### Visual Studio 2019 -Run `cmake .. -G "Visual Studio 16 2019" -A x64`. +### Automatic + +There is a batch file to automatically run the commands below for ease of use. + +`winprepareVS19.bat` + +### Manual + +Run The Command Prompt from Start and run the following commands: + +```Bash +cd "%OVERTE_DIR%" +mkdir build +cd build +cmake .. -G "Visual Studio 16 2019" -A x64 +``` Where `%OVERTE_DIR%` is the directory for the Overte repository.