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_buttons/SConscript

17 lines
524 B
Python
Raw Normal View History

#!/usr/bin/python
Import ('env')
sources = env.Glob('*.c')
incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
2011-02-27 06:19:40 +00:00
<<<<<<< .working
2009-07-16 06:27:37 +00:00
incs += ' ../../makesrna ../../render/extern/include ../../bmesh'
2011-02-27 06:19:40 +00:00
=======
incs += ' ../../makesrna ../../render/extern/include ../../blenloader'
2011-02-27 06:19:40 +00:00
>>>>>>> .merge-right.r35190
defs = []
env.BlenderLib ( 'bf_editors_space_buttons', sources, Split(incs), defs, libtype=['core'], priority=[120] )