From 4c4abb062423b821067f84d5628449c2513c1e26 Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Sat, 29 Dec 2007 18:05:24 +0000 Subject: * add also SConscripts for editors. I totally forgot those. Anyway, now all compiles and links (scons/mingw) --- source/blender/SConscript | 1 + source/blender/editors/SConscript | 7 +++++++ source/blender/editors/area/SConscript | 2 ++ source/blender/editors/datafiles/SConscript | 9 +++++++++ source/blender/editors/screen/SConscript | 9 +++++++++ 5 files changed, 28 insertions(+) create mode 100644 source/blender/editors/SConscript create mode 100644 source/blender/editors/area/SConscript create mode 100644 source/blender/editors/datafiles/SConscript create mode 100644 source/blender/editors/screen/SConscript (limited to 'source/blender') 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] ) -- cgit v1.2.3