2004-05-16 13:07:20 +00:00
|
|
|
#!/usr/bin/python
|
2004-03-22 22:02:18 +00:00
|
|
|
import sys
|
2004-02-15 19:25:32 +00:00
|
|
|
Import ('user_options_dict')
|
2004-02-29 21:40:48 +00:00
|
|
|
Import ('library_env')
|
|
|
|
|
|
|
|
kx_blenderhook_env = library_env.Copy ()
|
2004-01-20 20:28:39 +00:00
|
|
|
|
|
|
|
source_files = ['KX_BlenderSystem.cpp',
|
|
|
|
'KX_BlenderRenderTools.cpp',
|
|
|
|
'KX_BlenderMouseDevice.cpp',
|
|
|
|
'KX_BlenderKeyboardDevice.cpp',
|
|
|
|
'KX_BlenderInputDevice.cpp',
|
|
|
|
'KX_BlenderGL.cpp',
|
|
|
|
'KX_BlenderCanvas.cpp',
|
|
|
|
'BL_KetsjiEmbedStart.cpp']
|
|
|
|
|
|
|
|
kx_blenderhook_env.Append (CPPPATH=['.',
|
|
|
|
'#source/kernel/gen_system',
|
|
|
|
'#intern/string',
|
|
|
|
'#intern/guardedalloc',
|
|
|
|
'#source/gameengine/Rasterizer/RAS_OpenGLRasterizer',
|
|
|
|
'#intern/bmfont',
|
|
|
|
'#source/gameengine/Converter',
|
|
|
|
'#source/blender/imbuf',
|
|
|
|
'#intern/moto/include',
|
|
|
|
'#source/gameengine/Ketsji',
|
|
|
|
'#source/blender/blenlib',
|
|
|
|
'#source/blender/blenkernel',
|
|
|
|
'#source/blender',
|
|
|
|
'#source/blender/include',
|
|
|
|
'#source/blender/makesdna',
|
|
|
|
'#source/gameengine/Rasterizer',
|
|
|
|
'#source/gameengine/GameLogic',
|
|
|
|
'#source/gameengine/Expressions',
|
|
|
|
'#source/gameengine/Network',
|
|
|
|
'#source/gameengine/SceneGraph',
|
2004-03-22 22:02:18 +00:00
|
|
|
'#source/gameengine/Physics/common',
|
2005-08-01 21:19:41 +00:00
|
|
|
'#source/gameengine/Physics/Bullet',
|
2004-03-22 22:02:18 +00:00
|
|
|
'#source/gameengine/Physics/Sumo',
|
2004-01-20 20:28:39 +00:00
|
|
|
'#source/gameengine/Physics/Sumo/Fuzzics/include',
|
|
|
|
'#source/gameengine/Network/LoopBackNetwork',
|
|
|
|
'#intern/SoundSystem',
|
|
|
|
'#source/blender/misc',
|
2004-02-21 15:13:15 +00:00
|
|
|
'#source/blender/blenloader'
|
2004-01-20 20:28:39 +00:00
|
|
|
])
|
|
|
|
|
2004-02-21 15:13:15 +00:00
|
|
|
kx_blenderhook_env.Append (CPPPATH = user_options_dict['PYTHON_INCLUDE'])
|
|
|
|
kx_blenderhook_env.Append (CPPPATH = user_options_dict['SOLID_INCLUDE'])
|
2005-08-01 21:19:41 +00:00
|
|
|
kx_blenderhook_env.Append (CPPPATH = user_options_dict['BULLET_INCLUDE'])
|
2005-04-05 15:06:41 +00:00
|
|
|
kx_blenderhook_env.Append (CPPPATH = user_options_dict['OPENGL_INCLUDE'])
|
2004-02-21 15:13:15 +00:00
|
|
|
|
2004-03-22 22:02:18 +00:00
|
|
|
if sys.platform=='win32':
|
|
|
|
kx_blenderhook_env.Append (CXXFLAGS = ['/GR'])
|
|
|
|
|
2004-02-15 19:25:32 +00:00
|
|
|
kx_blenderhook_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/KX_blenderhook', source=source_files)
|