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:
authorAndrea Weikert <elubie@gmx.net>2008-12-14 14:25:00 +0300
committerAndrea Weikert <elubie@gmx.net>2008-12-14 14:25:00 +0300
commita3c77e4d9ed90b29abc37e7764598a1236cfa287 (patch)
tree98ced5b52c5b12638864f7779e4c609cac51ed0c /source/blender/editors/space_file/SConscript
parent36fb509f96c3ed8cbe44345e1cbbaa9636b34b4c (diff)
2.5
Skeleton for bringing back SpaceFile. Code to initialize the SpaceFile struct missing still, I think this is the right time to cleanup there :)
Diffstat (limited to 'source/blender/editors/space_file/SConscript')
-rw-r--r--source/blender/editors/space_file/SConscript9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/editors/space_file/SConscript b/source/blender/editors/space_file/SConscript
new file mode 100644
index 00000000000..b08d6169e13
--- /dev/null
+++ b/source/blender/editors/space_file/SConscript
@@ -0,0 +1,9 @@
+#!/usr/bin/python
+Import ('env')
+
+sources = env.Glob('*.c')
+
+incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
+incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
+
+env.BlenderLib ( 'bf_editors_space_file', sources, Split(incs), [], libtype=['core','intern'], priority=[35, 40] )