From a4b416eacdf5fac37062d356b631c4297368b28c Mon Sep 17 00:00:00 2001 From: gameboycjp <37276103+gameboycjp@users.noreply.github.com> Date: Fri, 21 Apr 2023 16:49:20 -0700 Subject: [PATCH] Update winprepareVS19.bat There should either be no pause, or it should wait for user input. If CMake fails, this gives the user a chance to review logs. --- winprepareVS19.bat | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/winprepareVS19.bat b/winprepareVS19.bat index 5950b78c75..259286a9bb 100644 --- a/winprepareVS19.bat +++ b/winprepareVS19.bat @@ -1,4 +1,5 @@ mkdir build cd build cmake .. -G "Visual Studio 16 2019" -A x64 -pause \ No newline at end of file +ECHO CMake has finished. +pause