[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [13165] branches/blender2.5/blender: * update scons-files to build with Ton's latest commits.

Nathan Letwory jesterking at letwory.net
Tue Jan 8 06:57:55 CET 2008


Revision: 13165
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=13165
Author:   jesterking
Date:     2008-01-08 06:57:27 +0100 (Tue, 08 Jan 2008)

Log Message:
-----------
* update scons-files to build with Ton's latest commits.

Modified Paths:
--------------
    branches/blender2.5/blender/config/win32-vc-config.py
    branches/blender2.5/blender/source/blender/SConscript
    branches/blender2.5/blender/source/blender/editors/SConscript
    branches/blender2.5/blender/source/blender/editors/screen/SConscript

Added Paths:
-----------
    branches/blender2.5/blender/source/blender/editors/interface/SConscript
    branches/blender2.5/blender/source/blender/editors/mesh/SConscript
    branches/blender2.5/blender/source/blender/editors/object/SConscript
    branches/blender2.5/blender/source/blender/editors/space_view3d/SConscript
    branches/blender2.5/blender/source/blender/editors/transform/SConscript
    branches/blender2.5/blender/source/blender/python/SConscript

Modified: branches/blender2.5/blender/config/win32-vc-config.py
===================================================================
--- branches/blender2.5/blender/config/win32-vc-config.py	2008-01-08 00:49:33 UTC (rev 13164)
+++ branches/blender2.5/blender/config/win32-vc-config.py	2008-01-08 05:57:27 UTC (rev 13165)
@@ -145,7 +145,7 @@
 CC = 'cl.exe'
 CXX = 'cl.exe'
 
-CCFLAGS = ['/nologo', '/Og', '/Ot', '/Ob1', '/Op', '/G6','/EHsc', '/J', '/W3', '/Gd', '/MT']
+CCFLAGS = ['/nologo', '/Ot', '/Ob1', '/EHsc', '/J', '/W3', '/Gd', '/MT']
 
 BF_DEBUG_FLAGS = ['/Zi', '/FR${TARGET}.sbr']
 

Modified: branches/blender2.5/blender/source/blender/SConscript
===================================================================
--- branches/blender2.5/blender/source/blender/SConscript	2008-01-08 00:49:33 UTC (rev 13164)
+++ branches/blender2.5/blender/source/blender/SConscript	2008-01-08 05:57:27 UTC (rev 13165)
@@ -3,31 +3,32 @@
 import sys
 
 SConscript(['avi/SConscript',
-            'blenkernel/SConscript',
-            'blenlib/SConscript',
-            'blenloader/SConscript',
-            'blenpluginapi/SConscript',
-            'editors/SConscript',
-            'imbuf/SConscript',
-            'imbuf/intern/cineon/SConscript',
-            'makesdna/SConscript',
-            'radiosity/SConscript',
-            'readblenfile/SConscript',
-            'render/SConscript',
-            'nodes/SConscript',
-            'windowmanager/SConscript'])
+			'blenkernel/SConscript',
+			'blenlib/SConscript',
+			'blenloader/SConscript',
+			'blenpluginapi/SConscript',
+			'editors/SConscript',
+			'imbuf/SConscript',
+			'imbuf/intern/cineon/SConscript',
+			'makesdna/SConscript',
+			'python/SConscript',
+			'radiosity/SConscript',
+			'readblenfile/SConscript',
+			'render/SConscript',
+			'nodes/SConscript',
+			'windowmanager/SConscript'])
 
 if env['WITH_BF_YAFRAY'] == 1:
-    SConscript(['yafray/SConscript'])
+	SConscript(['yafray/SConscript'])
 
 if env['WITH_BF_INTERNATIONAL'] == 1:
-    SConscript (['ftfont/SConscript'])
+	SConscript (['ftfont/SConscript'])
 
 if env['WITH_BF_DDS'] == 1:
-    SConscript (['imbuf/intern/dds/SConscript'])
+	SConscript (['imbuf/intern/dds/SConscript'])
 
 if env['WITH_BF_OPENEXR'] == 1:
-    SConscript (['imbuf/intern/openexr/SConscript'])
+	SConscript (['imbuf/intern/openexr/SConscript'])
 
 if env['WITH_BF_QUICKTIME'] == 1:
-    SConscript (['quicktime/SConscript'])
+	SConscript (['quicktime/SConscript'])

Modified: branches/blender2.5/blender/source/blender/editors/SConscript
===================================================================
--- branches/blender2.5/blender/source/blender/editors/SConscript	2008-01-08 00:49:33 UTC (rev 13164)
+++ branches/blender2.5/blender/source/blender/editors/SConscript	2008-01-08 05:57:27 UTC (rev 13165)
@@ -2,6 +2,10 @@
 Import ('env')
 
 
-SConscript(['area/SConscript',
-            'datafiles/SConscript',
-            'screen/SConscript'])
+SConscript(['datafiles/SConscript',
+			'interface/SConscript',
+			'mesh/SConscript',
+			'object/SConscript',
+			'space_view3d/SConscript',
+			'transform/SConscript',
+			'screen/SConscript'])

Added: branches/blender2.5/blender/source/blender/editors/interface/SConscript
===================================================================

Added: branches/blender2.5/blender/source/blender/editors/mesh/SConscript
===================================================================

Added: branches/blender2.5/blender/source/blender/editors/object/SConscript
===================================================================

Modified: branches/blender2.5/blender/source/blender/editors/screen/SConscript
===================================================================
--- branches/blender2.5/blender/source/blender/editors/screen/SConscript	2008-01-08 00:49:33 UTC (rev 13164)
+++ branches/blender2.5/blender/source/blender/editors/screen/SConscript	2008-01-08 05:57:27 UTC (rev 13165)
@@ -1,7 +1,10 @@
 #!/usr/bin/python
 Import ('env')
 
+sources = env.Glob('*.c')
 
-SConscript(['area/SConscript',
-            'datafiles/SConscript',
-            'screen/SConscript'])
+incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
+incs += ' ../../blenloader ../../windowmanager ../../python'
+incs += ' #/intern/guardedalloc'
+
+env.BlenderLib ( 'bf_screen', sources, Split(incs), [], libtype=['core','intern'], priority=[5, 25] )

Added: branches/blender2.5/blender/source/blender/editors/space_view3d/SConscript
===================================================================
--- branches/blender2.5/blender/source/blender/editors/space_view3d/SConscript	                        (rev 0)
+++ branches/blender2.5/blender/source/blender/editors/space_view3d/SConscript	2008-01-08 05:57:27 UTC (rev 13165)
@@ -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_space_view3d', sources, Split(incs), [], libtype=['core','intern'], priority=[5, 25] )

Added: branches/blender2.5/blender/source/blender/editors/transform/SConscript
===================================================================

Added: branches/blender2.5/blender/source/blender/python/SConscript
===================================================================
--- branches/blender2.5/blender/source/blender/python/SConscript	                        (rev 0)
+++ branches/blender2.5/blender/source/blender/python/SConscript	2008-01-08 05:57:27 UTC (rev 13165)
@@ -0,0 +1,16 @@
+#!/usr/bin/python
+Import ('env')
+
+sources = env.Glob('intern/*.c')
+
+incs = '. ../editors/include ../makesdna ../blenlib ../blenkernel ../nodes'
+incs += ' ../imbuf ../blenloader ../render/extern/include'
+incs += ' #intern/guardedalloc #intern/memutil'
+incs += ' ' + env['BF_PYTHON_INC']
+
+defs = []
+
+if env['OURPLATFORM'] in ('win32-mingw', 'win32-vc') and env['BF_DEBUG']:
+	defs.append('Py_TRACE_REFS')
+
+env.BlenderLib( libname = 'bf_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype = ['core'], priority = [60])





More information about the Bf-blender-cvs mailing list