51 lines
1.0 KiB
Makefile
51 lines
1.0 KiB
Makefile
TOPDIR = ../../..
|
|
include $(TOPDIR)/Make/makedefs
|
|
|
|
CXXFILES =\
|
|
AccelOperator.cpp\
|
|
AngularAccelOperator.cpp\
|
|
CenteredPlacer.cpp\
|
|
ConnectedParticleSystem.cpp\
|
|
ConstantRateCounter.cpp\
|
|
Counter.cpp\
|
|
Emitter.cpp\
|
|
ExplosionDebrisEffect.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\
|
|
SectorPlacer.cpp\
|
|
SegmentPlacer.cpp\
|
|
Shooter.cpp\
|
|
SmokeEffect.cpp\
|
|
SmokeTrailEffect.cpp\
|
|
VariableRateCounter.cpp\
|
|
range.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
|