-
Notifications
You must be signed in to change notification settings - Fork 19
/
SciterGroup.bpg
105 lines (76 loc) · 2.48 KB
/
SciterGroup.bpg
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#------------------------------------------------------------------------------
VERSION = BWS.01
#------------------------------------------------------------------------------
!ifndef ROOT
ROOT = $(MAKEDIR)\..
!endif
#------------------------------------------------------------------------------
MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
DCC = $(ROOT)\bin\dcc32.exe $**
BRCC = $(ROOT)\bin\brcc32.exe $**
#------------------------------------------------------------------------------
PROJECTS = Layered.exe QQLogin.exe SciterTest.exe Sciter.exe minimal.exe \
Installer.exe plainWin.exe UIFramework.exe uminimal.exe d360.exe d360_2.exe \
d360_3.exe d360_4.exe Picasa.exe Collapsible.exe KillerWhale.exe AButtons.exe \
DeskTip.exe BrushAsist.exe Repeatable.exe Plus.exe DeskLyrics.exe \
DirectxDemo.exe VSTDemo.exe VSTPlugin.dll SciterWke.dll SciterFlash.dll \
SciterIE.dll
#------------------------------------------------------------------------------
default: $(PROJECTS)
#------------------------------------------------------------------------------
SciterTest.exe: Demos\Test\SciterTest.dpr
$(DCC)
Layered.exe: Demos\Layered\Layered.dpr
$(DCC)
Sciter.exe: Demos\Sciter\Sciter.dpr
$(DCC)
minimal.exe: Demos\minimal\minimal.dpr
$(DCC)
plainWin.exe: Demos\plain-win\plainWin.dpr
$(DCC)
UIFramework.exe: Demos\ui-framework\UIFramework.dpr
$(DCC)
uminimal.exe: Demos\uminimal\uminimal.dpr
$(DCC)
d360.exe: Demos\360\d360.dpr
$(DCC)
Picasa.exe: Demos\Picasa\Picasa.dpr
$(DCC)
d360_2.exe: Demos\d360_2\d360_2.dpr
$(DCC)
Collapsible.exe: Demos\Collapsible\Collapsible.dpr
$(DCC)
KillerWhale.exe: Demos\KillerWhale\KillerWhale.dpr
$(DCC)
AButtons.exe: Demos\Buttons\AButtons.dpr
$(DCC)
DeskTip.exe: Demos\DeskTip\DeskTip.dpr
$(DCC)
BrushAsist.exe: Demos\BrushAsist\BrushAsist.dpr
$(DCC)
d360_3.exe: Demos\d360_3\d360_3.dpr
$(DCC)
Repeatable.exe: Demos\repeatable\Repeatable.dpr
$(DCC)
d360_4.exe: Demos\d360_4\d360_4.dpr
$(DCC)
DeskLyrics.exe: Demos\DeskLyrics\DeskLyrics.dpr
$(DCC)
Plus.exe: Demos\Plus\Plus.dpr
$(DCC)
VSTDemo.exe: Demos\VSTDemo\VSTDemo.dpr
$(DCC)
VSTPlugin.dll: Demos\VSTPlugin\VSTPlugin.dpr
$(DCC)
SciterWke.dll: Plugins\SciterWke\SciterWke.dpr
$(DCC)
QQLogin.exe: Demos\QQLogin\QQLogin.dpr
$(DCC)
SciterFlash.dll: Plugins\SciterFlash\SciterFlash.dpr
$(DCC)
DirectxDemo.exe: Demos\DirectxDemo\DirectxDemo.dpr
$(DCC)
SciterIE.dll: Plugins\SciterIE\SciterIE.dpr
$(DCC)
Installer.exe: Demos\Installer\Installer.dpr
$(DCC)