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:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-05-18 17:01:52 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-05-18 17:01:52 +0400
commit55655a065943d67dbdb584e8426a60793e65d6f1 (patch)
tree69569ab6eb32859b5d9c30e0d9b7237e9b22666d /source/blender/freestyle/SConscript
parent29b2db85181414b2581dd303a654b8d61ac80fbd (diff)
soc-2008-mxcurioni: towards Freestyle's first render: controller, config, appglwidget corrected. Freestyle is called but cannot be linked (ImBuf issues). This is an unstable commit.
Diffstat (limited to 'source/blender/freestyle/SConscript')
-rw-r--r--source/blender/freestyle/SConscript18
1 files changed, 10 insertions, 8 deletions
diff --git a/source/blender/freestyle/SConscript b/source/blender/freestyle/SConscript
index 6e13af06ee2..1f5359c5d39 100644
--- a/source/blender/freestyle/SConscript
+++ b/source/blender/freestyle/SConscript
@@ -46,23 +46,25 @@ stroke_sources = env.Glob(prefix + '/*.cpp')
# rendering
prefix = 'intern/rendering'
-stroke_sources = env.Glob(prefix + '/GL*.cpp')
+rendering_sources = env.Glob(prefix + '/GL*.cpp')
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
- stroke_sources = env.Glob(prefix + '/extgl.cpp')
+ rendering_sources = env.Glob(prefix + '/extgl.cpp')
-# app
+# app / app_blender
+prefix = 'intern/app_blender'
+app_sources = env.Glob(prefix + '/*.cpp')
-sources = system_sources + image_sources + geometry_sources + scene_graph_sources + \
- winged_edge_sources + view_map_sources + stroke_sources
-#print sources
+sources = system_sources + image_sources + geometry_sources + scene_graph_sources \
+ + winged_edge_sources + view_map_sources + stroke_sources + rendering_sources \
+ + app_sources
env.BlenderLib (libname="bf_freestyle",
sources=sources,
includes=Split(incs),
defines=defs,
- libtype=['blender'],
- priority = [15] )
+ libtype=['blender'],
+ priority = [20] )
########################################################
# SWIG