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>2009-10-05 05:27:35 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2009-10-05 05:27:35 +0400
commit896a5fccef78bfbb60be8eae5ed552388ecdeb1b (patch)
treeebd99d05508a5fff208a125a8574612889ea175b /source/blender/freestyle/SConscript
parentf5a14015e3585e3c8c82a27f2148e5ce8a54d72f (diff)
fixed headers and SConscript to have successful build
Diffstat (limited to 'source/blender/freestyle/SConscript')
-rw-r--r--source/blender/freestyle/SConscript12
1 files changed, 8 insertions, 4 deletions
diff --git a/source/blender/freestyle/SConscript b/source/blender/freestyle/SConscript
index 4cff11f4b4c..770ec8a1c2f 100644
--- a/source/blender/freestyle/SConscript
+++ b/source/blender/freestyle/SConscript
@@ -48,9 +48,13 @@ stroke_sources = env.Glob(prefix + '/*.cpp')
prefix = 'intern/rendering'
rendering_sources = env.Glob(prefix + '/GL*.cpp')
-# app / app_blender
-prefix = 'intern/app_blender'
-app_sources = env.Glob(prefix + '/*.cpp')
+# application
+prefix = 'intern/application'
+application_sources = env.Glob(prefix + '/*.cpp')
+
+# blender_interface
+prefix = 'intern/blender_interface'
+interface_sources = env.Glob(prefix + '/*.cpp')
# Python
prefix = 'intern/python'
@@ -61,7 +65,7 @@ python_sources = env.Glob(prefix + '/*.cpp') \
sources = system_sources + image_sources + geometry_sources + scene_graph_sources \
+ winged_edge_sources + view_map_sources + stroke_sources + rendering_sources \
- + app_sources + python_sources
+ + application_sources + interface_sources + python_sources
env.BlenderLib (libname="bf_freestyle",
sources=sources,