diff --git a/xrbuild.cmd b/xrbuild.cmd index 4d82ffee307..3486ba23400 100644 --- a/xrbuild.cmd +++ b/xrbuild.cmd @@ -2,6 +2,8 @@ md res\bins\ if %CONFIGURATION%==Debug if %PLATFORM%==x86 goto :DX86 if %CONFIGURATION%==Debug if %PLATFORM%==x64 goto :DX64 +if %CONFIGURATION%==Mixed if %PLATFORM%==x86 goto :MX86 +if %CONFIGURATION%==Mixed if %PLATFORM%==x64 goto :MX64 if %CONFIGURATION%==Release if %PLATFORM%==x86 goto :RX86 if %CONFIGURATION%==Release if %PLATFORM%==x64 goto :RX64 @@ -30,6 +32,28 @@ cd res\ 7z a xdOpenXRay.Dx64.7z .\* goto :END +:MX86 +cd bin\Win32\Mixed +copy *.dll ..\..\..\res\bins\ +copy *.exe ..\..\..\res\bins\ +cd ..\..\..\ +copy License.txt .\res\ +copy README.md .\res\ +cd res\ +7z a xdOpenXRay.Mx86.7z .\* +goto :END + +:MX64 +cd bin\Win64\Mixed +copy *.dll ..\..\..\res\bins\ +copy *.exe ..\..\..\res\bins\ +cd ..\..\..\ +copy License.txt .\res\ +copy README.md .\res\ +cd res\ +7z a xdOpenXRay.Mx64.7z .\* +goto :END + :RX86 cd bin\Win32\Release copy *.dll ..\..\..\res\bins\