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:
authorKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2005-01-23 04:36:29 +0300
committerKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2005-01-23 04:36:29 +0300
commita1f0f165e42982fb5ef45dea54f3ebc48cbca892 (patch)
tree09d843f18ce514a76779d90767145dba7c8c8ad6 /source/gameengine/GameLogic/SConscript
parenta572d196e655e60c68c622adcb28cf45138c4d15 (diff)
Added Joystick sensor (from snailrose)
Diffstat (limited to 'source/gameengine/GameLogic/SConscript')
-rwxr-xr-xsource/gameengine/GameLogic/SConscript7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/gameengine/GameLogic/SConscript b/source/gameengine/GameLogic/SConscript
index f50e14e0af9..928667ea4c1 100755
--- a/source/gameengine/GameLogic/SConscript
+++ b/source/gameengine/GameLogic/SConscript
@@ -16,6 +16,8 @@ source_files = ['SCA_ANDController.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',
@@ -30,7 +32,9 @@ source_files = ['SCA_ANDController.cpp',
'SCA_RandomEventManager.cpp',
'SCA_RandomNumberGenerator.cpp',
'SCA_RandomSensor.cpp',
- 'SCA_TimeEventManager.cpp']
+ 'SCA_TimeEventManager.cpp',
+ 'Joystick/SCA_Joystick.cpp',
+ 'Joystick/SCA_JoystickEvents.cpp']
sca_gamelogic_env.Append (CPPPATH=['.',
'#/source/kernel/gen_system',
@@ -39,5 +43,6 @@ sca_gamelogic_env.Append (CPPPATH=['.',
'#/intern/moto/include'])
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)