49 lines
982 B
Makefile
49 lines
982 B
Makefile
|
TOPDIR = ../../..
|
||
|
include $(TOPDIR)/Make/makedefs
|
||
|
|
||
|
CXXFILES =\
|
||
|
AccelOperator.cpp\
|
||
|
AngularAccelOperator.cpp\
|
||
|
CenteredPlacer.cpp\
|
||
|
Counter.cpp\
|
||
|
Emitter.cpp\
|
||
|
ExplosionDebriEffect.cpp\
|
||
|
ExplosionEffect.cpp\
|
||
|
FireEffect.cpp\
|
||
|
FluidFrictionOperator.cpp\
|
||
|
FluidProgram.cpp\
|
||
|
ForceOperator.cpp\
|
||
|
Interpolator.cpp\
|
||
|
LinearInterpolator.cpp\
|
||
|
ModularEmitter.cpp\
|
||
|
ModularProgram.cpp\
|
||
|
MultiSegmentPlacer.cpp\
|
||
|
Operator.cpp\
|
||
|
Particle.cpp\
|
||
|
ParticleEffect.cpp\
|
||
|
ParticleProcessor.cpp\
|
||
|
ParticleSystem.cpp\
|
||
|
ParticleSystemUpdater.cpp\
|
||
|
Placer.cpp\
|
||
|
PointPlacer.cpp\
|
||
|
Program.cpp\
|
||
|
RadialShooter.cpp\
|
||
|
RandomRateCounter.cpp\
|
||
|
range.cpp\
|
||
|
SectorPlacer.cpp\
|
||
|
SegmentPlacer.cpp\
|
||
|
Shooter.cpp\
|
||
|
SmokeEffect.cpp\
|
||
|
VariableRateCounter.cpp\
|
||
|
|
||
|
|
||
|
LIBS += -losgParticle -losg -losgIntrospection $(GL_LIBS) $(OTHER_LIBS)
|
||
|
|
||
|
OPTF = -O
|
||
|
|
||
|
TARGET_BASENAME = osgParticle
|
||
|
include $(TOPDIR)/Make/cygwin_wrapper_def
|
||
|
WRAPPER = $(WRAPPER_PREFIX)$(TARGET_BASENAME).$(PLUGIN_EXT)
|
||
|
|
||
|
include $(TOPDIR)/Make/makerules
|