blender/source/gameengine/Physics/Bullet/SConscript
Diego Borghetti f0d58a8b99 Update scons files in source/gameengine/Physics/Bullet.
Please Nathan double check this, but all compile fine here :)
2008-08-21 21:14:08 +00:00

16 lines
455 B
Python

#!/usr/bin/python
Import ('env')
sources = 'CcdPhysicsEnvironment.cpp CcdPhysicsController.cpp'
incs = '. ../common #source/kernel/gen_system #intern/string #intern/moto/include #source/gameengine/Rasterizer'
incs += ' ' + env['BF_BULLET_INC']
cflags = []
if env['OURPLATFORM']=='win32-vc':
cflags.append('/GR')
cflags.append('/O2')
env.BlenderLib ( 'bf_bullet', Split(sources), Split(incs), [], libtype=['game','player'], priority=[15,90] )