Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SConscript « common « Physics « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d7c808f49b12d005651770575c443a0557c3942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python
Import ('env')

sources = 'PHY_IMotionState.cpp PHY_IPhysicsController.cpp PHY_IPhysicsEnvironment.cpp PHY_IVehicle.cpp'

incs = '. ../Dummy #intern/moto/include'

cxxflags = []
if env['OURPLATFORM']=='win32-vc':
	cxxflags.append ('/GR')
	cxxflags.append ('/O2')

env.BlenderLib ( 'bf_common', Split(sources), Split(incs), [], libtype=['core','player'], priority=[360, 90], cxx_compileflags = cxxflags )