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
125 lines (115 loc) · 4.17 KB
/
Sources.pp
File metadata and controls
125 lines (115 loc) · 4.17 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
#define BUILD_DIRECTORY $[HAVE_ODE]
#define BUILDING_DLL BUILDING_PANDAODE
#define OTHER_LIBS p3interrogatedb:c p3dconfig:c p3dtoolconfig:m \
p3dtoolutil:c p3dtoolbase:c p3dtool:m p3prc:c
#begin lib_target
#define TARGET p3ode
#define LOCAL_LIBS \
p3pgraph p3physics
#define USE_PACKAGES ode
#define COMBINED_SOURCES $[TARGET]_composite1.cxx \
$[TARGET]_composite2.cxx $[TARGET]_composite3.cxx \
$[TARGET]_ext_composite.cxx
#define SOURCES \
ode_includes.h config_ode.h \
odeWorld.I odeWorld.h \
odeMass.I odeMass.h \
odeBody.I odeBody.h odeBody_ext.h \
odeJointGroup.I odeJointGroup.h \
odeJoint.I odeJoint.h odeJoint_ext.h \
odeUtil.h odeUtil_ext.h \
odeSpace.I odeSpace.h \
odeSpace_ext.I odeSpace_ext.h \
odeGeom.I odeGeom.h \
odeGeom_ext.I odeGeom_ext.h \
odeSurfaceParameters.I odeSurfaceParameters.h \
odeContactGeom.I odeContactGeom.h \
odeContact.I odeContact.h \
odeAMotorJoint.I odeAMotorJoint.h \
odeBallJoint.I odeBallJoint.h \
odeContactJoint.I odeContactJoint.h \
odeFixedJoint.I odeFixedJoint.h \
odeHingeJoint.I odeHingeJoint.h \
odeHinge2Joint.I odeHinge2Joint.h \
odeLMotorJoint.I odeLMotorJoint.h \
odeNullJoint.I odeNullJoint.h \
odePlane2dJoint.I odePlane2dJoint.h \
odeSliderJoint.I odeSliderJoint.h \
odeUniversalJoint.I odeUniversalJoint.h \
odeJointCollection.I odeJointCollection.h \
odeSimpleSpace.I odeSimpleSpace.h \
odeHashSpace.I odeHashSpace.h \
odeQuadTreeSpace.I odeQuadTreeSpace.h \
odeSphereGeom.I odeSphereGeom.h \
odeBoxGeom.I odeBoxGeom.h \
odePlaneGeom.I odePlaneGeom.h \
odeCappedCylinderGeom.I odeCappedCylinderGeom.h \
odeCylinderGeom.I odeCylinderGeom.h \
odeRayGeom.I odeRayGeom.h \
odeTriMeshData.I odeTriMeshData.h \
odeTriMeshGeom.I odeTriMeshGeom.h \
odeCollisionEntry.I odeCollisionEntry.h \
odeHelperStructs.h
#define INCLUDED_SOURCES \
config_ode.cxx \
odeWorld.cxx odeMass.cxx \
odeBody.cxx odeBody_ext.cxx \
odeJointGroup.cxx \
odeJoint.cxx odeJoint_ext.cxx \
odeUtil.cxx odeUtil_ext.cxx \
odeSpace.cxx odeSpace_ext.cxx \
odeGeom.cxx odeGeom_ext.cxx \
odeSurfaceParameters.cxx \
odeContactGeom.cxx odeContact.cxx \
odeAMotorJoint.cxx odeBallJoint.cxx \
odeContactJoint.cxx odeFixedJoint.cxx \
odeHingeJoint.cxx odeHinge2Joint.cxx \
odeLMotorJoint.cxx odeNullJoint.cxx \
odePlane2dJoint.cxx odeSliderJoint.cxx \
odeUniversalJoint.cxx odeJointCollection.cxx\
odeSimpleSpace.cxx \
odeHashSpace.cxx odeQuadTreeSpace.cxx \
odeSphereGeom.cxx odeBoxGeom.cxx \
odePlaneGeom.cxx odeCappedCylinderGeom.cxx \
odeCylinderGeom.cxx odeRayGeom.cxx \
odeTriMeshData.cxx odeTriMeshGeom.cxx \
odeCollisionEntry.cxx
#define INSTALL_HEADERS \
ode_includes.h config_ode.h \
odeWorld.I odeWorld.h \
odeMass.I odeMass.h \
odeBody.I odeBody.h \
odeJointGroup.I odeJointGroup.h \
odeJoint.I odeJoint.h \
odeUtil.h \
odeSpace.I odeSpace.h \
odeGeom.I odeGeom.h \
odeSurfaceParameters.I odeSurfaceParameters.h \
odeContactGeom.I odeContactGeom.h \
odeContact.I odeContact.h \
odeAMotorJoint.I odeAMotorJoint.h \
odeBallJoint.I odeBallJoint.h \
odeContactJoint.I odeContactJoint.h \
odeFixedJoint.I odeFixedJoint.h \
odeHingeJoint.I odeHingeJoint.h \
odeHinge2Joint.I odeHinge2Joint.h \
odeLMotorJoint.I odeLMotorJoint.h \
odeNullJoint.I odeNullJoint.h \
odePlane2dJoint.I odePlane2dJoint.h \
odeSliderJoint.I odeSliderJoint.h \
odeUniversalJoint.I odeUniversalJoint.h \
odeJointCollection.I odeJointCollection.h \
odeSimpleSpace.I odeSimpleSpace.h \
odeHashSpace.I odeHashSpace.h \
odeQuadTreeSpace.I odeQuadTreeSpace.h \
odeSphereGeom.I odeSphereGeom.h \
odeBoxGeom.I odeBoxGeom.h \
odePlaneGeom.I odePlaneGeom.h \
odeCappedCylinderGeom.I odeCappedCylinderGeom.h \
odeCylinderGeom.I odeCylinderGeom.h \
odeRayGeom.I odeRayGeom.h \
odeTriMeshData.I odeTriMeshData.h \
odeTriMeshGeom.I odeTriMeshGeom.h \
odeCollisionEntry.I odeCollisionEntry.h
#define IGATESCAN all
#end lib_target