mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2024-12-26 14:45:38 +03:00
20 lines
443 B
Batchfile
20 lines
443 B
Batchfile
|
@echo off
|
||
|
|
||
|
if defined VS150COMNTOOLS (
|
||
|
if not exist "%VS150COMNTOOLS%vcvarsqueryregistry.bat" goto NoVS
|
||
|
call "%VS150COMNTOOLS%vcvarsqueryregistry.bat"
|
||
|
goto :run
|
||
|
) else if defined VS140COMNTOOLS (
|
||
|
if not exist "%VS140COMNTOOLS%vcvarsqueryregistry.bat" goto NoVS
|
||
|
call "%VS140COMNTOOLS%vcvarsqueryregistry.bat"
|
||
|
goto :run
|
||
|
)
|
||
|
|
||
|
:NoVS
|
||
|
echo Error: Visual Studio 2015 or 2017 required.
|
||
|
exit /b 1
|
||
|
|
||
|
:run
|
||
|
echo %UniversalCRTSdkDir%
|
||
|
echo %UCRTVersion%
|