Skip to content

Commit f64b76a

Browse files
committed
Add Mixed configuration to build script
1 parent 9c43597 commit f64b76a

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

xrbuild.cmd

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ md res\bins\
22

33
if %CONFIGURATION%==Debug if %PLATFORM%==x86 goto :DX86
44
if %CONFIGURATION%==Debug if %PLATFORM%==x64 goto :DX64
5+
if %CONFIGURATION%==Mixed if %PLATFORM%==x86 goto :MX86
6+
if %CONFIGURATION%==Mixed if %PLATFORM%==x64 goto :MX64
57
if %CONFIGURATION%==Release if %PLATFORM%==x86 goto :RX86
68
if %CONFIGURATION%==Release if %PLATFORM%==x64 goto :RX64
79

@@ -30,6 +32,28 @@ cd res\
3032
7z a xdOpenXRay.Dx64.7z .\*
3133
goto :END
3234

35+
:MX86
36+
cd bin\Win32\Mixed
37+
copy *.dll ..\..\..\res\bins\
38+
copy *.exe ..\..\..\res\bins\
39+
cd ..\..\..\
40+
copy License.txt .\res\
41+
copy README.md .\res\
42+
cd res\
43+
7z a xdOpenXRay.Mx86.7z .\*
44+
goto :END
45+
46+
:MX64
47+
cd bin\Win64\Mixed
48+
copy *.dll ..\..\..\res\bins\
49+
copy *.exe ..\..\..\res\bins\
50+
cd ..\..\..\
51+
copy License.txt .\res\
52+
copy README.md .\res\
53+
cd res\
54+
7z a xdOpenXRay.Mx64.7z .\*
55+
goto :END
56+
3357
:RX86
3458
cd bin\Win32\Release
3559
copy *.dll ..\..\..\res\bins\

0 commit comments

Comments
 (0)