[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [57723] trunk/blender/source/blender: Buildbot: another workaround for the Windows command length limit, this time

Brecht Van Lommel brechtvanlommel at pandora.be
Tue Jun 25 02:11:05 CEST 2013


Revision: 57723
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=57723
Author:   blendix
Date:     2013-06-25 00:11:04 +0000 (Tue, 25 Jun 2013)
Log Message:
-----------
Buildbot: another workaround for the Windows command length limit, this time
with the freestyle module which has 242 cpp files.

Modified Paths:
--------------
    trunk/blender/source/blender/compositor/SConscript
    trunk/blender/source/blender/freestyle/SConscript

Modified: trunk/blender/source/blender/compositor/SConscript
===================================================================
--- trunk/blender/source/blender/compositor/SConscript	2013-06-24 23:55:50 UTC (rev 57722)
+++ trunk/blender/source/blender/compositor/SConscript	2013-06-25 00:11:04 UTC (rev 57723)
@@ -59,7 +59,7 @@
 if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw', 'linuxcross', 'win64-vc'):
     incs.append(env['BF_PTHREADS_INC'])
 
-env.BlenderLib('bf_composite_intern', sources_intern, incs, defines=defs, libtype=['core'], priority=[164])
+env.BlenderLib('bf_composite_intern', sources_intern, incs, defines=defs, libtype=['core'], priority=[166])
 env.BlenderLib('bf_composite_nodes', sources_nodes, incs, defines=defs, libtype=['core'], priority=[165])
-env.BlenderLib('bf_composite_operations', sources_operations, incs, defines=defs, libtype=['core'], priority=[166])
+env.BlenderLib('bf_composite_operations', sources_operations, incs, defines=defs, libtype=['core'], priority=[164])
 

Modified: trunk/blender/source/blender/freestyle/SConscript
===================================================================
--- trunk/blender/source/blender/freestyle/SConscript	2013-06-24 23:55:50 UTC (rev 57722)
+++ trunk/blender/source/blender/freestyle/SConscript	2013-06-25 00:11:04 UTC (rev 57723)
@@ -76,8 +76,13 @@
 
 sources = system_sources + image_sources + geometry_sources + scene_graph_sources + \
           winged_edge_sources + view_map_sources + stroke_sources + \
-          application_sources + interface_sources + python_sources
+          application_sources + interface_sources
 
 env.BlenderLib(libname="bf_freestyle", sources=sources, includes=Split(incs),
-               defines=defs, libtype=['core'], priority = [370] # bf_python is 361
+               defines=defs, libtype=['core'], priority = [370]
 )
+
+env.BlenderLib(libname="bf_freestyle_python", sources=python_sources, includes=Split(incs),
+               defines=defs, libtype=['core'], priority = [369] # bf_python is 361
+)
+




More information about the Bf-blender-cvs mailing list