~diresu/blender/blender-command-port

« back to all changes in this revision

Viewing changes to source/gameengine/Physics/BlOde/SConscript

  • Committer: theeth
  • Date: 2008-10-14 16:52:04 UTC
  • Revision ID: vcs-imports@canonical.com-20081014165204-r32w2gm6s0osvdhn
copy back trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
Import ('user_options_dict')
 
3
Import ('library_env')
 
4
 
 
5
phy_ode_env = library_env.Copy ()
 
6
 
 
7
source_files = ['OdePhysicsController.cpp',
 
8
                'OdePhysicsEnvironment.cpp']
 
9
 
 
10
phy_ode_env.Append (CPPPATH=['.',
 
11
                             '../common',
 
12
                            ])
 
13
phy_ode_env.Append (CPPPATH=user_options_dict['ODE_INCLUDE'])
 
14
 
 
15
phy_ode_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/PHY_Ode', source=source_files)