[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [18385] branches/blender2.5/blender/source /blender/editors: 2.5 / Sculpt / SCons

Nathan Letwory jesterking at letwory.net
Tue Jan 6 23:42:40 CET 2009


Revision: 18385
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=18385
Author:   jesterking
Date:     2009-01-06 23:42:39 +0100 (Tue, 06 Jan 2009)

Log Message:
-----------
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).

Modified Paths:
--------------
    branches/blender2.5/blender/source/blender/editors/SConscript
    branches/blender2.5/blender/source/blender/editors/sculpt/sculpt.c

Added Paths:
-----------
    branches/blender2.5/blender/source/blender/editors/sculpt/SConscript

Modified: branches/blender2.5/blender/source/blender/editors/SConscript
===================================================================
--- branches/blender2.5/blender/source/blender/editors/SConscript	2009-01-06 22:41:47 UTC (rev 18384)
+++ branches/blender2.5/blender/source/blender/editors/SConscript	2009-01-06 22:42:39 UTC (rev 18385)
@@ -26,4 +26,5 @@
 			'space_text/SConscript',
 			'space_sequencer/SConscript',
 			'transform/SConscript',
-			'screen/SConscript'])
+			'screen/SConscript',
+			'sculpt/SConscript'])

Added: branches/blender2.5/blender/source/blender/editors/sculpt/SConscript
===================================================================
--- branches/blender2.5/blender/source/blender/editors/sculpt/SConscript	                        (rev 0)
+++ branches/blender2.5/blender/source/blender/editors/sculpt/SConscript	2009-01-06 22:42:39 UTC (rev 18385)
@@ -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


Property changes on: branches/blender2.5/blender/source/blender/editors/sculpt/SConscript
___________________________________________________________________
Name: svn:eol-style
   + LF

Modified: branches/blender2.5/blender/source/blender/editors/sculpt/sculpt.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/sculpt/sculpt.c	2009-01-06 22:41:47 UTC (rev 18384)
+++ branches/blender2.5/blender/source/blender/editors/sculpt/sculpt.c	2009-01-06 22:42:39 UTC (rev 18385)
@@ -32,7 +32,7 @@
  *
  */
 
-#include "GHOST_Types.h"
+// XXX #include "GHOST_Types.h"
 
 #include "MEM_guardedalloc.h"
 





More information about the Bf-blender-cvs mailing list