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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-25 04:11:04 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-25 04:11:04 +0400
commitd54b2391c4b0c862aa4991f467bf724bb811048e (patch)
tree5594f1684d9a81ea53b04e35e4969c305e3d7d96 /source/blender/freestyle
parentcd8959c4bfb591c8b3d003aeec99cc5501c87e41 (diff)
Buildbot: another workaround for the Windows command length limit, this time
with the freestyle module which has 242 cpp files.
Diffstat (limited to 'source/blender/freestyle')
-rw-r--r--source/blender/freestyle/SConscript9
1 files changed, 7 insertions, 2 deletions
diff --git a/source/blender/freestyle/SConscript b/source/blender/freestyle/SConscript
index 909165529a8..2542bbd1ec6 100644
--- a/source/blender/freestyle/SConscript
+++ b/source/blender/freestyle/SConscript
@@ -76,8 +76,13 @@ python_sources = env.Glob(prefix + '/*.cpp') + \
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
+)
+