2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2006-02-04 14:15:10 +00:00
|
|
|
Import ('env')
|
2004-02-29 21:40:48 +00:00
|
|
|
|
2006-02-21 06:08:18 +00:00
|
|
|
sources = 'PHY_IMotionState.cpp PHY_IPhysicsController.cpp PHY_IPhysicsEnvironment.cpp PHY_IVehicle.cpp'
|
2004-01-20 20:28:39 +00:00
|
|
|
|
2006-02-04 14:15:10 +00:00
|
|
|
incs = '. ../Dummy #intern/moto/include'
|
2004-01-20 20:28:39 +00:00
|
|
|
|
2009-02-15 23:26:00 +00:00
|
|
|
cxxflags = []
|
|
|
|
|
if env['OURPLATFORM']=='win32-vc':
|
|
|
|
|
cxxflags.append ('/GR')
|
|
|
|
|
cxxflags.append ('/O2')
|
|
|
|
|
|
2009-03-17 21:44:58 +00:00
|
|
|
env.BlenderLib ( 'bf_common', Split(sources), Split(incs), [], libtype=['core','player'], priority=[360, 90], cxx_compileflags = cxxflags )
|