File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ md res\bins\
22
33if %CONFIGURATION% == Debug if %PLATFORM% == x86 goto :DX86
44if %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
57if %CONFIGURATION% == Release if %PLATFORM% == x86 goto :RX86
68if %CONFIGURATION% == Release if %PLATFORM% == x64 goto :RX64
79
@@ -30,6 +32,28 @@ cd res\
30327z a xdOpenXRay.Dx64.7z .\*
3133goto :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
3458cd bin\Win32\Release
3559copy *.dll ..\..\..\res\bins\
You can’t perform that action at this time.
0 commit comments