Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/SConscript
| Context not available. | |||||
| '#/intern/guardedalloc', | '#/intern/guardedalloc', | ||||
| '#/intern/memutil', | '#/intern/memutil', | ||||
| '#/source/gameengine/BlenderRoutines', | '#/source/gameengine/BlenderRoutines', | ||||
| env['BF_GLEW_INC'], | '#/extern/glew/include', | ||||
| '#/intern/glew-mx', | |||||
| '../blenfont', | '../blenfont', | ||||
| '../blenkernel', | '../blenkernel', | ||||
| '../blenlib', | '../blenlib', | ||||
| Context not available. | |||||
| ] | ] | ||||
| incs = ' '.join(incs) | incs = ' '.join(incs) | ||||
| defs = env['BF_GL_DEFINITIONS'] | defs = [ 'GLEW_STATIC' ] | ||||
| if env['WITH_BF_PYTHON']: | if env['WITH_BF_PYTHON']: | ||||
| defs.append('WITH_PYTHON') | defs.append('WITH_PYTHON') | ||||
| Context not available. | |||||
| if env['WITH_BF_PYTHON_SECURITY']: | if env['WITH_BF_PYTHON_SECURITY']: | ||||
| defs.append("WITH_PYTHON_SECURITY") | defs.append("WITH_PYTHON_SECURITY") | ||||
| if env['OURPLATFORM'] in ('linux', 'openbsd3', 'sunos5', 'freebsd7', 'freebsd8', 'freebsd9', 'aix4', 'aix5'): | |||||
| defs.append("WITH_X11") | |||||
| env.BlenderLib ( 'bf_windowmanager', sources, Split(incs), defines=defs, libtype=['core'], priority=[5] ) | env.BlenderLib ( 'bf_windowmanager', sources, Split(incs), defines=defs, libtype=['core'], priority=[5] ) | ||||
| Context not available. | |||||