From aadabe1ecd5d75192d9e281832c0da29af324ed6 Mon Sep 17 00:00:00 2001 From: David Chavez Date: Fri, 5 Aug 2022 17:49:38 +0200 Subject: [PATCH] Better instructions for VS solutions --- BUILDING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 685df147336..7606032ba34 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -30,8 +30,8 @@ With the cmake build system you have two options for working on the project: #### Visual Studio To develop using Visual Studio you only need to use cmake to generate the solution file: ```powershell -# Generates Ship.sln at the root directory -& 'C:\Program Files\CMake\bin\cmake' -S . -G "Visual Studio 17 2022" -T v142 -A x64 +# Generates Ship.sln at `build/x64` +& 'C:\Program Files\CMake\bin\cmake' -S . -B "build/x64" -G "Visual Studio 17 2022" -T v142 -A x64 ``` #### Visual Studio Code or another editor