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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/GameLogic/SConscript')
-rwxr-xr-xsource/gameengine/GameLogic/SConscript50
1 files changed, 7 insertions, 43 deletions
diff --git a/source/gameengine/GameLogic/SConscript b/source/gameengine/GameLogic/SConscript
index 928667ea4c1..126c84eecb2 100755
--- a/source/gameengine/GameLogic/SConscript
+++ b/source/gameengine/GameLogic/SConscript
@@ -1,48 +1,12 @@
#!/usr/bin/python
-Import ('user_options_dict')
-Import ('library_env')
+Import ('env')
-sca_gamelogic_env = library_env.Copy ()
+sources = env.Glob('*.cpp') + env.Glob('Joystick/*.cpp')
-source_files = ['SCA_ANDController.cpp',
- 'SCA_AlwaysEventManager.cpp',
- 'SCA_AlwaysSensor.cpp',
- 'SCA_EventManager.cpp',
- 'SCA_ExpressionController.cpp',
- 'SCA_IActuator.cpp',
- 'SCA_IController.cpp',
- 'SCA_IInputDevice.cpp',
- 'SCA_ILogicBrick.cpp',
- 'SCA_IObject.cpp',
- 'SCA_IScene.cpp',
- 'SCA_ISensor.cpp',
- 'SCA_JoystickManager.cpp',
- 'SCA_JoystickSensor.cpp',
- 'SCA_KeyboardManager.cpp',
- 'SCA_KeyboardSensor.cpp',
- 'SCA_LogicManager.cpp',
- 'SCA_MouseManager.cpp',
- 'SCA_MouseSensor.cpp',
- 'SCA_ORController.cpp',
- 'SCA_PropertyActuator.cpp',
- 'SCA_PropertyEventManager.cpp',
- 'SCA_PropertySensor.cpp',
- 'SCA_PythonController.cpp',
- 'SCA_RandomActuator.cpp',
- 'SCA_RandomEventManager.cpp',
- 'SCA_RandomNumberGenerator.cpp',
- 'SCA_RandomSensor.cpp',
- 'SCA_TimeEventManager.cpp',
- 'Joystick/SCA_Joystick.cpp',
- 'Joystick/SCA_JoystickEvents.cpp']
+incs = '. #/source/kernel/gen_system #/intern/string'
+incs += ' #/source/gameengine/Expressions #/intern/moto/include'
-sca_gamelogic_env.Append (CPPPATH=['.',
- '#/source/kernel/gen_system',
- '#/intern/string',
- '#/source/gameengine/Expressions',
- '#/intern/moto/include'])
+incs += ' ' + env['BF_PYTHON_INC']
+incs += ' ' + env['BF_SDL_INC']
-sca_gamelogic_env.Append (CPPPATH = user_options_dict['PYTHON_INCLUDE'])
-sca_gamelogic_env.Append (CPPPATH = user_options_dict['SDL_INCLUDE'])
-
-sca_gamelogic_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/SCA_GameLogic', source=source_files)
+env.BlenderLib ( 'SCA_GameLogic', sources, Split(incs), [], libtype='game', priority=30 )