This repository was archived by the owner on Apr 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.bat
More file actions
52 lines (52 loc) · 1.26 KB
/
build.bat
File metadata and controls
52 lines (52 loc) · 1.26 KB
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
@ECHO OFF
set path="C:\Program Files\7-Zip";"C:\Program Files\Inno Setup 5"
cd..
7z a -tzip OPL3EMU\output\OPL3EMU.zip @OPL3EMU\zip.txt
cd OPL3EMU
call "c:\program files\microsoft visual studio 8\vc\bin\vcvars32.bat"
call "C:\program files\Microsoft Platform SDK\SetEnv.Cmd" /SRV32 /RETAIL
cd Driver\X86
call "compile_all.bat"
cd..\..\Installer\X86
call "compile_all.bat"
cd..\..\MidiPlyr\X86
call "compile.bat"
cd..\..\MidiSel\X86
call "compile.bat"
cd..\..\OPL3EMU_CFG\X86
call "compile.bat"
cd..\..\SetEnv\X86
call "compile.bat"
call "C:\program files\Microsoft Platform SDK\SetEnv.Cmd" /SRV64 /RETAIL
cd..\..\Driver\IA64
call "compile_all.bat"
cd..\..\Installer\IA64
call "compile_all.bat"
cd..\..\MidiPlyr\IA64
call "compile.bat"
cd..\..\MidiSel\IA64
call "compile.bat"
cd..\..\OPL3EMU_CFG\IA64
call "compile.bat"
cd..\..\SetEnv\IA64
call "compile.bat"
call "C:\program files\Microsoft Platform SDK\SetEnv.Cmd" /X64 /RETAIL
cd..\..\Driver\X64
call "compile_all.bat"
cd..\..\Installer\X64
call "compile_all.bat"
cd..\..\MidiPlyr\X64
call "compile.bat"
cd..\..\MidiSel\X64
call "compile.bat"
cd..\..\OPL3EMU_CFG\X64
call "compile.bat"
cd..\..\SetEnv\X64
call "compile.bat"
cd..\..
iscc "OPL3EMU.iss"
cd driver\oplclone
call "compile_msvc.bat"
cd..\test
call "compile_msvc.bat"
cd..\..