forked from panda3d/panda3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSources.pp
More file actions
154 lines (135 loc) · 5.13 KB
/
Sources.pp
File metadata and controls
154 lines (135 loc) · 5.13 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#define OTHER_LIBS p3interrogatedb:c p3dconfig:c p3dtoolconfig:m \
p3dtoolutil:c p3dtoolbase:c p3dtool:m p3prc:c
#define WIN_SYS_LIBS $[WIN_SYS_LIBS] ws2_32
#begin lib_target
#define TARGET p3display
#define LOCAL_LIBS \
p3pgraph p3pgraphnodes p3cull p3putil p3gsgbase p3gobj p3linmath p3mathutil \
p3pstatclient
#define COMBINED_SOURCES $[TARGET]_composite1.cxx $[TARGET]_composite2.cxx
#define SOURCES \
standardMunger.I standardMunger.h \
config_display.h \
$[if $[HAVE_PYTHON], pythonGraphicsWindowProc.h] \
callbackGraphicsWindow.I callbackGraphicsWindow.h \
drawableRegion.I drawableRegion.h \
displayRegion.I displayRegion.h \
displayRegionCullCallbackData.I displayRegionCullCallbackData.h \
displayRegionDrawCallbackData.I displayRegionDrawCallbackData.h \
frameBufferProperties.I frameBufferProperties.h \
get_x11.h pre_x11_include.h post_x11_include.h \
graphicsEngine.I graphicsEngine.h \
graphicsOutput.I graphicsOutput.h \
graphicsBuffer.I graphicsBuffer.h \
graphicsDevice.h graphicsDevice.I \
graphicsPipe.I graphicsPipe.h \
graphicsPipeSelection.I graphicsPipeSelection.h \
graphicsStateGuardian.I graphicsStateGuardian.h \
graphicsStateGuardian_ext.cxx graphicsStateGuardian_ext.h \
graphicsThreadingModel.I graphicsThreadingModel.h \
graphicsWindow.I graphicsWindow.h \
graphicsWindow_ext.cxx graphicsWindow_ext.h \
graphicsWindowInputDevice.I \
graphicsWindowInputDevice.h \
graphicsWindowProc.h \
graphicsWindowProcCallbackData.I graphicsWindowProcCallbackData.h \
lru.h \
nativeWindowHandle.I nativeWindowHandle.h \
parasiteBuffer.I parasiteBuffer.h \
pStatGPUTimer.I pStatGPUTimer.h \
windowHandle.I windowHandle.h \
windowProperties.I windowProperties.h \
renderBuffer.h \
stereoDisplayRegion.I stereoDisplayRegion.h \
displaySearchParameters.h \
displayInformation.h \
subprocessWindow.h subprocessWindow.I \
$[if $[OSX_PLATFORM], subprocessWindowBuffer.h subprocessWindowBuffer.I] \
touchInfo.h
#define INCLUDED_SOURCES \
standardMunger.cxx \
config_display.cxx \
$[if $[HAVE_PYTHON], pythonGraphicsWindowProc.cxx] \
callbackGraphicsWindow.cxx \
drawableRegion.cxx \
displayRegion.cxx \
displayRegionCullCallbackData.cxx \
displayRegionDrawCallbackData.cxx \
displaySearchParameters.cxx \
displayInformation.cxx \
frameBufferProperties.cxx \
graphicsEngine.cxx \
graphicsOutput.cxx \
graphicsBuffer.cxx \
graphicsPipe.cxx \
graphicsPipeSelection.cxx \
graphicsStateGuardian.cxx \
graphicsThreadingModel.cxx \
graphicsWindow.cxx graphicsWindowInputDevice.cxx \
graphicsWindowProc.cxx \
graphicsWindowProcCallbackData.cxx \
graphicsDevice.cxx \
lru.cxx \
nativeWindowHandle.cxx \
parasiteBuffer.cxx \
windowHandle.cxx \
windowProperties.cxx \
stereoDisplayRegion.cxx \
subprocessWindow.cxx \
touchInfo.cxx
#define INSTALL_HEADERS \
standardMunger.I standardMunger.h \
config_display.h \
$[if $[HAVE_PYTHON], pythonGraphicsWindowProc.h] \
callbackGraphicsWindow.I callbackGraphicsWindow.h \
drawableRegion.I drawableRegion.h \
displayInformation.h \
displayRegion.I displayRegion.h \
displayRegionCullCallbackData.I displayRegionCullCallbackData.h \
displayRegionDrawCallbackData.I displayRegionDrawCallbackData.h \
displaySearchParameters.h \
frameBufferProperties.I frameBufferProperties.h \
get_x11.h pre_x11_include.h post_x11_include.h \
graphicsEngine.I graphicsEngine.h \
graphicsOutput.I graphicsOutput.h \
graphicsBuffer.I graphicsBuffer.h \
graphicsPipe.I graphicsPipe.h \
graphicsPipeSelection.I graphicsPipeSelection.h \
graphicsStateGuardian.I \
graphicsStateGuardian.h \
graphicsWindow.I graphicsWindow.h \
graphicsWindowProc.h \
graphicsWindowProcCallbackData.I graphicsWindowProcCallbackData.h \
graphicsThreadingModel.I graphicsThreadingModel.h \
graphicsWindowInputDevice.I graphicsWindowInputDevice.h \
graphicsDevice.I graphicsDevice.h \
lru.h \
nativeWindowHandle.I nativeWindowHandle.h \
parasiteBuffer.I parasiteBuffer.h \
pStatGPUTimer.I pStatGPUTimer.h \
windowHandle.I windowHandle.h \
windowProperties.I windowProperties.h \
renderBuffer.h \
stereoDisplayRegion.I stereoDisplayRegion.h \
subprocessWindow.h subprocessWindow.I \
subprocessWindowBuffer.h subprocessWindowBuffer.I \
touchInfo.h
#define IGATESCAN all
#end lib_target
#begin static_lib_target
// We build a static library of just these files, so the plugin can
// link with it in direct/src/plugin, without pulling in the rest of
// Panda.
#define BUILD_TARGET $[and $[OSX_PLATFORM],$[HAVE_P3D_PLUGIN]]
#define TARGET p3subprocbuffer
#define SOURCES \
subprocessWindowBuffer.h subprocessWindowBuffer.I \
subprocessWindowBuffer.cxx
#end static_lib_target
#begin test_bin_target
#define TARGET test_display
#define LOCAL_LIBS \
p3display p3putil
#define SOURCES \
test_display.cxx
#end test_bin_target