2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2004-02-15 19:25:32 +00:00
|
|
|
Import ('user_options_dict')
|
2004-02-29 21:40:48 +00:00
|
|
|
Import ('library_env')
|
|
|
|
|
|
|
|
phy_physics_env = library_env.Copy ()
|
2004-01-20 20:28:39 +00:00
|
|
|
|
|
|
|
source_files = ['PHY_IMotionState.cpp',
|
|
|
|
'PHY_IPhysicsController.cpp',
|
|
|
|
'PHY_IPhysicsEnvironment.cpp']
|
|
|
|
|
|
|
|
phy_physics_env.Append (CPPPATH = ['.',
|
2004-04-08 11:34:50 +00:00
|
|
|
'../Dummy',
|
|
|
|
'#intern/moto/include'
|
2004-01-20 20:28:39 +00:00
|
|
|
])
|
|
|
|
|
2004-02-15 19:25:32 +00:00
|
|
|
phy_physics_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/PHY_Physics', source=source_files)
|