Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[build] Extend SetVsEnv.bat #1233

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion build/SetVsEnv.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ if not "%EnterpriseWDK%"=="" goto ready
if "%1"=="Win11" (
if "%EWDK11_24H2_DIR%"=="" set EWDK11_24H2_DIR=c:\ewdk11_24h2
call %EWDK11_24H2_DIR%\BuildEnv\SetupBuildEnv.cmd
@echo off
goto :eof
) else (
if "%EWDK11_DIR%"=="" set EWDK11_DIR=c:\ewdk11
:: call :add_path "%EWDK11_DIR%\Program Files\Microsoft Visual Studio\2019\BuildTools\VC\Redist\MSVC\14.28.29910\onecore\x86\Microsoft.VC142.OPENMP\vcomp140.dll"
call %EWDK11_DIR%\BuildEnv\SetupBuildEnv.cmd
@echo off
goto :eof
)

Expand All @@ -23,5 +25,10 @@ set path=%path%;%~dp1
goto :eof

:ready
echo We are already in EWDK version: %Version_Number%
for /f "tokens=4 usebackq delims=\'" %%i in (`echo %%VSINSTALLDIR%%`) do @set vs_year=%%i
echo **********************************************************************
echo ** We are already in an Enterprise WDK build environment
echo ** Version %BuildLab% ^| %Version_Number%
echo ** Visual Studio %vs_year% Developer Command Prompt v%VSCMD_VER%
echo **********************************************************************
goto :eof