forked from BonneCW/GD3D11
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added BuildAll.bat / CreateRedist_All.bat, now building SSE2 and AVX …
…builds separately. Added runtime check for compatibility, fix build for G1 (add address for zCRndD3D::Drawline), beautified stackwalker output (remove unnecessery newlines),
- Loading branch information
Showing
14 changed files
with
444 additions
and
186 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@ECHO OFF | ||
CD %~dp0 | ||
|
||
SET "MSBUILD=C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\amd64\MSBuild.exe" | ||
|
||
REM RMDIR /s /q D3D11Engine\Release_AVX\ | ||
REM RMDIR /s /q D3D11Engine\Release\ | ||
REM RMDIR /s /q D3D11Engine\Release_G1_AVX\ | ||
REM RMDIR /s /q D3D11Engine\Release_G1\ | ||
|
||
"%MSBUILD%" Direct3D7Wrapper.sln /p:Configuration=Release_AVX | ||
"%MSBUILD%" Direct3D7Wrapper.sln /p:Configuration=Release_G1_AVX | ||
|
||
"%MSBUILD%" Direct3D7Wrapper.sln /p:Configuration=Release | ||
"%MSBUILD%" Direct3D7Wrapper.sln /p:Configuration=Release_G1 | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,27 @@ | ||
@ECHO OFF | ||
setlocal enableextensions enabledelayedexpansion | ||
|
||
PUSHD %~dp0 | ||
|
||
SET "VERSION=17.7-dev17" | ||
|
||
CALL :SUB_BUILD "Gothic2-GD3D11-%VERSION%_avx" "Release_AVX" | ||
CD /D %~dp0 | ||
CALL :SUB_BUILD "Gothic1-GD3D11-%VERSION%_avx" "Release_G1_AVX" | ||
CD /D %~dp0 | ||
CALL :SUB_BUILD "Gothic2-GD3D11-%VERSION%" "Release" | ||
CD /D | ||
CALL :SUB_BUILD "Gothic1-GD3D11-%VERSION%" "Release_G1" | ||
|
||
EXIT /B | ||
|
||
:SUB_BUILD | ||
|
||
CALL PrepareRedist.bat %1 | ||
COPY "%2\ddraw.dll" %1 | ||
PUSHD %1 | ||
"C:\Program Files\7-Zip\7z.exe" a -tzip "..\%1.zip" "*.*" -r | ||
POPD | ||
|
||
EXIT /B | ||
|
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
Oops, something went wrong.