forked from bartvdbraak/blender
d52400bfbd
Notes: * Sequence transform strip uses G.scene global, this is commented out now, should be fixed. * Etch-a-ton code was most difficult to merge. The files already in 2.5 got merged, but no new files were added. Calls to these files are commented out with "XXX etch-a-ton". editarmature.c and transform_snap.c were complex to merge. Martin, please check? * Game engine compiles and links again here for scons/make/cmake (player still fails to link).
34 lines
1.2 KiB
Python
34 lines
1.2 KiB
Python
#!/usr/bin/python
|
|
import sys
|
|
|
|
Import ('env')
|
|
|
|
sources = env.Glob('*.cpp')
|
|
|
|
incs = '. #source/gameengine/Ketsji #source/gameengine/Expressions'
|
|
incs += ' #source/gameengine/GameLogic #source/gameengine/SceneGraph #source/gameengine/Rasterizer'
|
|
incs += ' #source/gameengine/Rasterizer/RAS_OpenGLRasterizer'
|
|
incs += ' #source/gameengine/BlenderRoutines'
|
|
incs += ' #source/blender/editors/include #source/blender/blenlib #source/blender/blenkernel'
|
|
incs += ' #source/blender/makesdna #source/blender/imbuf #source/blender/python'
|
|
incs += ' #source/blender/gpu #source/kernel/gen_system #intern/string #intern/moto/include'
|
|
incs += ' #intern/guardedalloc #intern/SoundSystem'
|
|
incs += ' #extern/glew/include'
|
|
|
|
defs = ''
|
|
cxxflags = []
|
|
if env['OURPLATFORM']=='win32-vc':
|
|
cxxflags.append ('/GR')
|
|
cxxflags.append ('/O2')
|
|
|
|
|
|
incs += ' ' + env['BF_PYTHON_INC']
|
|
#incs += ' ' + env['BF_OPENGL_INC']
|
|
|
|
if env['WITH_BF_FFMPEG']:
|
|
defs += ' WITH_FFMPEG'
|
|
incs += ' ' + env['BF_FFMPEG_INC'] + ' ' + env['BF_PTHREADS_INC']
|
|
defs += ' __STDC_CONSTANT_MACROS'
|
|
|
|
env.BlenderLib ( 'bf_videotex', sources, Split(incs), Split(defs), libtype=['core','player'], priority=[300, 72], cxx_compileflags = cxxflags )
|