From 048f8a6467a9be7585a1c692a20b0acf0681dc67 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 14 May 2023 14:54:34 +0200 Subject: [PATCH] Create the runtime directory Create the runtime (binary) directory while running the project generator. --- CreateSolution.bat | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CreateSolution.bat b/CreateSolution.bat index d1534583..ab3a3f56 100644 --- a/CreateSolution.bat +++ b/CreateSolution.bat @@ -2,6 +2,7 @@ setlocal set BUILDDIR=build_intermediate +set BINDIR=game REM Check for Visual Studio versions in order for %%V in (15 16 17) do ( @@ -26,6 +27,9 @@ exit /b 1 if not exist "%BUILDDIR%" ( mkdir "%BUILDDIR%" ) +if not exist "%BINDIR%" ( + mkdir "%BINDIR%" +) cd "%BUILDDIR%" cmake .. -G"%CMAKE_GENERATOR%" -A"x64"