forked from softdorothy/GliderPRO
-
Notifications
You must be signed in to change notification settings - Fork 9
/
MakeRelease.bat
67 lines (52 loc) · 2.5 KB
/
MakeRelease.bat
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
rmdir /S /Q ReleasePkg
mkdir ReleasePkg
mkdir ReleasePkg\Aerofoil
mkdir ReleasePkg\Aerofoil\Packaged
mkdir ReleasePkg\AerofoilTools
copy /Y x64\Release\Aerofoil.exe ReleasePkg\Aerofoil
copy /Y x64\Release\GpAudioDriver_XAudio2.dll ReleasePkg\Aerofoil
copy /Y x64\Release\xaudio2_9redist.dll ReleasePkg\Aerofoil
copy /Y x64\Release\GpDisplayDriver_D3D11.dll ReleasePkg\Aerofoil
copy /Y x64\Release\GpInputDriver_XInput.dll ReleasePkg\Aerofoil
copy /Y x64\Release\GpApp.dll ReleasePkg\Aerofoil
copy /Y x64\Release\flattenmov.exe ReleasePkg\AerofoilTools
copy /Y x64\Release\bin2gp.exe ReleasePkg\AerofoilTools
copy /Y x64\Release\hqx2bin.exe ReleasePkg\AerofoilTools
copy /Y x64\Release\hqx2gp.exe ReleasePkg\AerofoilTools
copy /Y x64\Release\MakeTimestamp.exe ReleasePkg\AerofoilTools
copy /Y x64\Release\FTagData.exe ReleasePkg\AerofoilTools
copy /Y x64\Release\gpr2gpa.exe ReleasePkg\AerofoilTools
copy /Y x64\Release\unpacktool.exe ReleasePkg\AerofoilTools
copy /Y x64\Release\MergeGPF.exe ReleasePkg\AerofoilTools
mkdir ReleasePkg\PDBs
copy /Y x64\Release\Aerofoil.pdb ReleasePkg\PDBs
copy /Y x64\Release\GpAudioDriver_XAudio2.pdb ReleasePkg\PDBs
copy /Y x64\Release\GpDisplayDriver_D3D11.pdb ReleasePkg\PDBs
copy /Y x64\Release\GpInputDriver_XInput.pdb ReleasePkg\PDBs
copy /Y x64\Release\GpApp.pdb ReleasePkg\PDBs
copy /Y x64\Release\flattenmov.pdb ReleasePkg\PDBs
copy /Y x64\Release\bin2gp.pdb ReleasePkg\PDBs
copy /Y x64\Release\hqx2bin.pdb ReleasePkg\PDBs
copy /Y x64\Release\hqx2gp.pdb ReleasePkg\PDBs
copy /Y x64\Release\MakeTimestamp.pdb ReleasePkg\PDBs
copy /Y x64\Release\FTagData.pdb ReleasePkg\PDBs
copy /Y x64\Release\gpr2gpa.pdb ReleasePkg\PDBs
copy /Y x64\Release\unpacktool.pdb ReleasePkg\PDBs
xcopy /I /E /Y /K Packaged ReleasePkg\Aerofoil\Packaged
xcopy /I /E /Y /K Documentation ReleasePkg\Aerofoil\Documentation
attrib +R Packaged\Houses\*
rmdir /S /Q InstallerPackages
mkdir InstallerPackages
mkdir InstallerPackages\DefaultHouses
mkdir InstallerPackages\HousePack1
mkdir InstallerPackages\LooseDocumentation
copy /Y Packaged\Houses\* InstallerPackages\HousePack1\
del /Q InstallerPackages\HousePack1\Slumberland.*
del /Q "InstallerPackages\HousePack1\Demo House.*"
copy /Y Packaged\Houses\Slumberland.* InstallerPackages\DefaultHouses
copy /Y "Packaged\Houses\Demo House.*" InstallerPackages\DefaultHouses
attrib +R InstallerPackages\DefaultHouses\*
attrib +R InstallerPackages\HousePack1\*
copy /Y Documentation\* InstallerPackages\LooseDocumentation\
del /Q InstallerPackages\LooseDocumentation\readme.txt
pause