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:
authorNathan Letwory <nathan@letworyinteractive.com>2007-12-29 21:05:24 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2007-12-29 21:05:24 +0300
commit4c4abb062423b821067f84d5628449c2513c1e26 (patch)
tree2efb9486d7895809478e069527d72fb549bcbf5a /source/blender/editors/datafiles
parentda7208eab5332b78e8fcd1ce6299f9ad06738ee5 (diff)
* add also SConscripts for editors.
I totally forgot those. Anyway, now all compiles and links (scons/mingw)
Diffstat (limited to 'source/blender/editors/datafiles')
-rw-r--r--source/blender/editors/datafiles/SConscript9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/editors/datafiles/SConscript b/source/blender/editors/datafiles/SConscript
new file mode 100644
index 00000000000..88ac37b84c9
--- /dev/null
+++ b/source/blender/editors/datafiles/SConscript
@@ -0,0 +1,9 @@
+#!/usr/bin/python
+Import ('env')
+
+sources = env.Glob('*.c')
+
+incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
+incs += ' #/intern/guardedalloc'
+
+env.BlenderLib ( 'bf_editor_datafiles', sources, Split(incs), [], libtype=['core','intern'], priority=[5, 25] )