You've already forked OpenRCT2-Unity
mirror of
https://github.com/izzy2lost/OpenRCT2-Unity.git
synced 2026-03-10 12:38:22 -07:00
- Move many of the post build operations in openrc2.proj to bash scripts, some of which can be shared with the macOS and Linux CIs. - Improve performance of NSIS stage by grabbing a pre-packaged portable zip from GitHub. This typically saves the CI a minute and is more reliable.
24 lines
575 B
Batchfile
24 lines
575 B
Batchfile
@echo off
|
|
|
|
rem Invokes a tool within a Visual Studio prompt
|
|
rem Uses %PLATFORM% to set architecture of prompt
|
|
|
|
set "vspath=C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise"
|
|
if exist "%vspath%" goto found
|
|
set "vspath=C:\Program Files (x86)\Microsoft Visual Studio\2019\Community"
|
|
if exist "%vspath%" goto found
|
|
|
|
:notfound
|
|
echo Visual Studio directory not found
|
|
exit /b 1
|
|
|
|
:found
|
|
if "%platform%"=="x64" (
|
|
call "%vspath%\Common7\Tools\VsDevCmd.bat" -no_logo -arch=x64
|
|
) else (
|
|
call "%vspath%\Common7\Tools\VsDevCmd.bat" -no_logo
|
|
)
|
|
|
|
%*
|
|
exit /b %errorlevel%
|