-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
@echo off | ||
rem set MSBuild environment variables | ||
pushd | ||
call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat" x64 | ||
popd | ||
set PWD="%~dp0" | ||
pushd | ||
|
||
rem build libraries, utilities and the trial program | ||
call .\x64_build.bat NOVARS | ||
if not errorlevel 0 goto end | ||
call .\x86_build.bat NOVARS | ||
if not errorlevel 0 goto end | ||
|
||
rem rem build test suites | ||
rem cd /D .\Tests | ||
rem call .\x64_build.bat NOVARS NORUN | ||
rem if not errorlevel 0 goto end | ||
rem call .\x86_build.bat NOVARS NORUN | ||
rem if not errorlevel 0 goto end | ||
|
||
rem end of the job | ||
:end | ||
popd |