This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/editors/space_console/SConscript

24 lines
478 B
Python

#!/usr/bin/python
Import ('env')
sources = env.Glob('*.c')
defs = []
incs = [
'../include',
'#extern/glew/include',
'#/intern/guardedalloc',
'../../makesdna',
'../../makesrna',
'../../blenkernel',
'../../blenlib',
'../../windowmanager',
'../../blenfont',
'../../blenloader',
]
if env['WITH_BF_PYTHON']:
defs.append('WITH_PYTHON')
env.BlenderLib ( 'bf_editors_space_console', sources, incs, defs, libtype=['core'], priority=[95] )