Skip to content

Commit

Permalink
Add Mixed configuration to build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Dec 16, 2017
1 parent 9c43597 commit f64b76a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions xrbuild.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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\
Expand Down

0 comments on commit f64b76a

Please sign in to comment.