Skip to content
Snippets Groups Projects
Commit 1ad3450c authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Use the new MSVS 2022 "common tools" environment variable: VS170COMNTOOLS

to find VsMSBuildCmd.bat

This means you can't use MSVS 2019 with this build.bat any longer.
parent 88ebbc0f
Branches
Tags
1 merge request!455Update branch with changes from master
@echo off
setlocal
rem *** Requires Microsoft Visual C++ 2019 ***
call "%VS160COMNTOOLS%\VsMSBuildCmd.bat"
rem *** Requires Microsoft Visual C++ 2022 ***
call "%VS170COMNTOOLS%\VsMSBuildCmd.bat"
msbuild sbbs3.sln /p:Platform="Win32" %*
if errorlevel 1 echo. & echo !ERROR(s) occurred & exit /b 1
\ No newline at end of file
@echo off
setlocal
rem *** Requires Microsoft Visual C++ 2019 ***
call "%VS160COMNTOOLS%\VsMSBuildCmd.bat"
rem *** Requires Microsoft Visual C++ 2022 ***
call "%VS170COMNTOOLS%\VsMSBuildCmd.bat"
msbuild sexpots.sln /p:Platform="Win32" %*
if errorlevel 1 echo. & echo !ERROR(s) occurred & exit /b 1
\ No newline at end of file
@echo off
setlocal
rem *** Requires Microsoft Visual C++ 2019 ***
call "%VS160COMNTOOLS%\VsMSBuildCmd.bat"
rem *** Requires Microsoft Visual C++ 2022 ***
call "%VS170COMNTOOLS%\VsMSBuildCmd.bat"
msbuild syncterm.sln /p:Platform="Win32" %*
if errorlevel 1 echo. & echo !ERROR(s) occurred & exit /b 1
\ No newline at end of file
@echo off
setlocal
rem *** Requires Microsoft Visual C++ 2019 ***
call "%VS160COMNTOOLS%\VsMSBuildCmd.bat"
rem *** Requires Microsoft Visual C++ 2022 ***
call "%VS170COMNTOOLS%\VsMSBuildCmd.bat"
msbuild vdmodem.sln /p:Platform="Win32" %*
if errorlevel 1 echo. & echo !ERROR(s) occurred & exit /b 1
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment