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>2004-04-08 16:10:09 +0400
committerKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-04-08 16:10:09 +0400
commit30c8bc33efa7b5efcc8a03fdb7fe1f42d9a5b4b6 (patch)
tree356f10be80afec27be6a8dcff9b9b29c7735a66b /source/gameengine/GamePlayer
parenteede1399f3d514b4f552498523df082ce74e600e (diff)
Fix SConscript for GamePlayer.
Diffstat (limited to 'source/gameengine/GamePlayer')
-rw-r--r--source/gameengine/GamePlayer/common/SConscript26
1 files changed, 14 insertions, 12 deletions
diff --git a/source/gameengine/GamePlayer/common/SConscript b/source/gameengine/GamePlayer/common/SConscript
index 2a72983ac72..0b93ebd3ac9 100644
--- a/source/gameengine/GamePlayer/common/SConscript
+++ b/source/gameengine/GamePlayer/common/SConscript
@@ -46,18 +46,20 @@ gp_common_env.Append( CPPPATH = ['.',
'#source/gameengine/GamePlayer/ghost',
'#source/blender/misc',
'#source/blender/blenloader'])
-if sys.platform=='win32':
- source_files += ['windows/GPW_Canvas.cpp',
- 'windows/GPW_Engine.cpp',
- 'windows/GPW_KeyboardDevice.cpp',
- 'windows/GPW_System.cpp']
- gp_common_env.Append ( CPPPATH = ['windows'])
-elif sys.platform=='linux2' or sys.platform=='linux-i386':
- source_files += ['unix/GPU_Canvas.cpp',
- 'unix/GPU_Engine.cpp',
- 'unix/GPU_KeyboardDevice.cpp',
- 'unix/GPU_System.cpp']
- gp_common_env.Append ( CPPPATH = ['unix'])
+
+#This is all plugin stuff!
+#if sys.platform=='win32':
+# source_files += ['windows/GPW_Canvas.cpp',
+# 'windows/GPW_Engine.cpp',
+# 'windows/GPW_KeyboardDevice.cpp',
+# 'windows/GPW_System.cpp']
+# gp_common_env.Append ( CPPPATH = ['windows'])
+#elif sys.platform=='linux2' or sys.platform=='linux-i386':
+# source_files += ['unix/GPU_Canvas.cpp',
+# 'unix/GPU_Engine.cpp',
+# 'unix/GPU_KeyboardDevice.cpp',
+# 'unix/GPU_System.cpp']
+# gp_common_env.Append ( CPPPATH = ['unix'])
gp_common_env.Append (CPPPATH = user_options_dict['PYTHON_INCLUDE'])
gp_common_env.Append (CPPPATH = user_options_dict['SOLID_INCLUDE'])