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>2009-01-07 01:42:39 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2009-01-07 01:42:39 +0300
commitcd6a9198d0244f3a661f91373e0bbcb23c250c3e (patch)
treecbc674d27cc47b33b4df47672f7bc1e4e3a12054 /source/blender/editors
parentad3d552226cd081acab46a2acc6c6aff1b014e9f (diff)
2.5 / Sculpt / SCons
* add SConscript to have it build with this buildsystem too :) * commented out GHOST_Types.h - I guess any stuff that was used from it should be properly done through event system (WM).
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/SConscript3
-rw-r--r--source/blender/editors/sculpt/SConscript11
-rw-r--r--source/blender/editors/sculpt/sculpt.c2
3 files changed, 14 insertions, 2 deletions
diff --git a/source/blender/editors/SConscript b/source/blender/editors/SConscript
index 00157d77a3b..c42f50a4eff 100644
--- a/source/blender/editors/SConscript
+++ b/source/blender/editors/SConscript
@@ -26,4 +26,5 @@ SConscript(['datafiles/SConscript',
'space_text/SConscript',
'space_sequencer/SConscript',
'transform/SConscript',
- 'screen/SConscript'])
+ 'screen/SConscript',
+ 'sculpt/SConscript'])
diff --git a/source/blender/editors/sculpt/SConscript b/source/blender/editors/sculpt/SConscript
new file mode 100644
index 00000000000..430563323de
--- /dev/null
+++ b/source/blender/editors/sculpt/SConscript
@@ -0,0 +1,11 @@
+#!/usr/bin/python
+Import ('env')
+
+sources = env.Glob('*.c')
+
+incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
+incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
+incs += ' ../../render/extern/include #/intern/guardedalloc #intern/bmfont'
+incs += ' ../../gpu ../../makesrna'
+
+env.BlenderLib ( 'bf_editors_sculpt', sources, Split(incs), [], libtype=['core'], priority=[40] ) \ No newline at end of file
diff --git a/source/blender/editors/sculpt/sculpt.c b/source/blender/editors/sculpt/sculpt.c
index 0783c065ab9..5a38bae89c9 100644
--- a/source/blender/editors/sculpt/sculpt.c
+++ b/source/blender/editors/sculpt/sculpt.c
@@ -32,7 +32,7 @@
*
*/
-#include "GHOST_Types.h"
+// XXX #include "GHOST_Types.h"
#include "MEM_guardedalloc.h"