forked from meganz/MEGAsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gather_built_products.cmd
33 lines (25 loc) · 1.51 KB
/
gather_built_products.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
mkdir built64
copy build-x64-windows-mega\src\MEGAUpdater\RelWithDebInfo\*.dll built64
copy build-x64-windows-mega\src\MEGAUpdater\RelWithDebInfo\*.exe built64
copy build-x64-windows-mega\src\MEGAUpdater\RelWithDebInfo\*.pdb built64
copy build-x64-windows-mega\src\MEGASync\RelWithDebInfo\*.dll built64
copy build-x64-windows-mega\src\MEGASync\RelWithDebInfo\*.exe built64
copy build-x64-windows-mega\src\MEGASync\RelWithDebInfo\*.pdb built64
copy build-x64-windows-mega\src\MEGASync\mega\RelWithDebInfo\*.pdb built64
copy build-x64-windows-mega\src\MEGAShellExt\RelWithDebInfo\*.dll built64
copy build-x64-windows-mega\src\MEGAShellExt\RelWithDebInfo\*.exe built64
copy build-x64-windows-mega\src\MEGAShellExt\RelWithDebInfo\*.pdb built64
IF "%MEGA_SKIP_32_BIT_BUILD%" == "true" (
GOTO :EOF
)
mkdir built32
copy build-x86-windows-mega\src\MEGAUpdater\RelWithDebInfo\*.dll built32
copy build-x86-windows-mega\src\MEGAUpdater\RelWithDebInfo\*.exe built32
copy build-x86-windows-mega\src\MEGAUpdater\RelWithDebInfo\*.pdb built32
copy build-x86-windows-mega\src\MEGASync\RelWithDebInfo\*.dll built32
copy build-x86-windows-mega\src\MEGASync\RelWithDebInfo\*.exe built32
copy build-x86-windows-mega\src\MEGASync\RelWithDebInfo\*.pdb built32
copy build-x86-windows-mega\src\MEGASync\mega\RelWithDebInfo\*.pdb built32
copy build-x86-windows-mega\src\MEGAShellExt\RelWithDebInfo\*.dll built32
copy build-x86-windows-mega\src\MEGAShellExt\RelWithDebInfo\*.exe built32
copy build-x86-windows-mega\src\MEGAShellExt\RelWithDebInfo\*.pdb built32