diff options
Diffstat (limited to '')
-rw-r--r-- | tools/buildsteps/windows/x64/BuildSetup.bat | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/buildsteps/windows/x64/BuildSetup.bat b/tools/buildsteps/windows/x64/BuildSetup.bat new file mode 100644 index 0000000..09acf3f --- /dev/null +++ b/tools/buildsteps/windows/x64/BuildSetup.bat @@ -0,0 +1,17 @@ +@ECHO OFF + +PUSHD %~dp0\.. +CALL vswhere.bat x64 +IF ERRORLEVEL 1 ( + ECHO ERROR! BuildSetup.bat: Something went wrong when calling vswhere.bat + POPD + EXIT /B 1 +) + +SET cmakeGenerator=Visual Studio %vsver% +SET cmakeArch=x64 +SET TARGET_ARCHITECTURE=x64 +SET TARGET_PLATFORM=%TARGET_ARCHITECTURE% + +CALL BuildSetup.bat %* +POPD |