~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/gameengine/Ketsji/SConscript

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
1
2
import sys
2
3
 
3
4
Import ('user_options_dict')
16
17
                'KX_TimeCategoryLogger.cpp',
17
18
                'KX_SoundActuator.cpp',
18
19
                'KX_SG_NodeRelationships.cpp',
 
20
                'KX_SG_BoneParentNodeRelationship.cpp',
19
21
                'KX_SceneActuator.cpp',
20
22
                'KX_Scene.cpp',
21
23
                'KX_ScalingInterpolator.cpp',
25
27
                'KX_SCA_AddObjectActuator.cpp',
26
28
                'KX_RaySensor.cpp',
27
29
                'KX_RayEventManager.cpp',
 
30
                'KX_RayCast.cpp',
28
31
                'KX_RadarSensor.cpp',
 
32
                'KX_PyMath.cpp',
29
33
                'KX_PythonInit.cpp',
30
34
                'KX_PyConstraintBinding.cpp',
31
35
                'KX_PositionInterpolator.cpp',
 
36
                'KX_PolygonMaterial.cpp',
32
37
                'KX_PhysicsObjectWrapper.cpp',
33
38
                'KX_OrientationInterpolator.cpp',
34
39
                'KX_ObjectActuator.cpp',
106
111
        ketsji_env.Append (CXXFLAGS = ['/GR'])
107
112
        ketsji_env.Append ( CCFLAGS =['/Ox'])
108
113
ketsji_env.Append (CPPPATH = user_options_dict['PYTHON_INCLUDE'])
 
114
ketsji_env.Append (CPPPATH = user_options_dict['SDL_INCLUDE'])
109
115
 
110
116
ketsji_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/KX_ketsji', source=source_files)