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
parentda7208eab5332b78e8fcd1ce6299f9ad06738ee5 (diff)
* add also SConscripts for editors.
I totally forgot those. Anyway, now all compiles and links (scons/mingw)
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/SConscript1
-rw-r--r--source/blender/editors/SConscript7
-rw-r--r--source/blender/editors/area/SConscript2
-rw-r--r--source/blender/editors/datafiles/SConscript9
-rw-r--r--source/blender/editors/screen/SConscript9
5 files changed, 28 insertions, 0 deletions
diff --git a/source/blender/SConscript b/source/blender/SConscript
index e4c78373ef5..1fd28df62c8 100644
--- a/source/blender/SConscript
+++ b/source/blender/SConscript
@@ -7,6 +7,7 @@ SConscript(['avi/SConscript',
'blenlib/SConscript',
'blenloader/SConscript',
'blenpluginapi/SConscript',
+ 'editors/SConscript',
'imbuf/SConscript',
'imbuf/intern/cineon/SConscript',
'makesdna/SConscript',
diff --git a/source/blender/editors/SConscript b/source/blender/editors/SConscript
new file mode 100644
index 00000000000..ec56e557c79
--- /dev/null
+++ b/source/blender/editors/SConscript
@@ -0,0 +1,7 @@
+#!/usr/bin/python
+Import ('env')
+
+
+SConscript(['area/SConscript',
+ 'datafiles/SConscript',
+ 'screen/SConscript'])
diff --git a/source/blender/editors/area/SConscript b/source/blender/editors/area/SConscript
new file mode 100644
index 00000000000..6a9ec433398
--- /dev/null
+++ b/source/blender/editors/area/SConscript
@@ -0,0 +1,2 @@
+
+Import('env') \ No newline at end of file
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] )
diff --git a/source/blender/editors/screen/SConscript b/source/blender/editors/screen/SConscript
new file mode 100644
index 00000000000..3be5d900f0b
--- /dev/null
+++ b/source/blender/editors/screen/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_screen', sources, Split(incs), [], libtype=['core','intern'], priority=[5, 25] )