You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
853 B
35 lines
853 B
14 years ago
|
include_directories("../../CoreLib")
|
||
|
include_directories("../../NucleusLib/inc")
|
||
|
include_directories("../../NucleusLib")
|
||
|
include_directories("../../PubUtilLib")
|
||
|
|
||
|
set(plParticleSystem_SOURCES
|
||
|
plBoundInterface.cpp
|
||
|
plConvexVolume.cpp
|
||
|
plParticleApplicator.cpp
|
||
|
plParticleEffect.cpp
|
||
|
plParticleEmitter.cpp
|
||
|
plParticleGenerator.cpp
|
||
|
plParticleSDLMod.cpp
|
||
|
plParticleSystem.cpp
|
||
|
)
|
||
|
|
||
|
set(plParticleSystem_HEADERS
|
||
|
plBoundInterface.h
|
||
|
plConvexVolume.h
|
||
|
plEffectTargetInfo.h
|
||
|
plParticle.h
|
||
|
plParticleApplicator.h
|
||
|
plParticleCreatable.h
|
||
|
plParticleEffect.h
|
||
|
plParticleEmitter.h
|
||
|
plParticleGenerator.h
|
||
|
plParticleSDLMod.h
|
||
|
plParticleSystem.h
|
||
|
)
|
||
|
|
||
|
add_library(plParticleSystem STATIC ${plParticleSystem_SOURCES} ${plParticleSystem_HEADERS})
|
||
|
|
||
|
source_group("Source Files" FILES ${plParticleSystem_SOURCES})
|
||
|
source_group("Header Files" FILES ${plParticleSystem_HEADERS})
|