Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-11-14 20:05:25 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-11-14 20:05:25 +0300
commita2175968a7a21bd09463ac9582130c593d27094d (patch)
tree26456772fb769aa67a9bc381908eb277bc76a097 /source/blender/editors/space_outliner/SConscript
parent4a8e571e8d3b5a4f8d223d40594b1be96206a141 (diff)
RNA
* Added RNA list viewer. This is currently drawn in the outliner window, the UI is limited but it is just intended to test RNA at the moment. * Added UI names for currently wrapped properties. * Made iterating collections a bit more convenient.
Diffstat (limited to 'source/blender/editors/space_outliner/SConscript')
-rw-r--r--source/blender/editors/space_outliner/SConscript10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/SConscript b/source/blender/editors/space_outliner/SConscript
new file mode 100644
index 00000000000..f5d6ddc76d3
--- /dev/null
+++ b/source/blender/editors/space_outliner/SConscript
@@ -0,0 +1,10 @@
+#!/usr/bin/python
+Import ('env')
+
+sources = env.Glob('*.c')
+
+incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
+incs += ' ../../windowmanager #/intern/guardedalloc ../../makesrna'
+incs += ' #/extern/glew/include'
+
+env.BlenderLib ( 'bf_editors_space_outliner', sources, Split(incs), [], libtype=['core', 'intern'], priority=[35, 40] )