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-07-12 08:02:08 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-07-12 08:02:08 +0400
commitd124d3c5cdfdc9d470a4734281396b97c4d3afb5 (patch)
tree60cb9464d00ad8937d5bddeae1eb5bb6e95b63ea /source/blender/freestyle/SConscript
parentd760119f451ef9ff0218ad5e053e51d54c64fc1b (diff)
soc-2008-mxcurioni: first part of the Freestyle Python implementation. A new Freestyle module is added. The following modules are implemented: BinaryPredicate0D, BinaryPredicate1D, Id, Interface0D, Interface1D. I added a Convert module to help in the creation of Python objects for Freestyle's data structures. I also added a missing file for guarded_alloc needed for compilation on Windows.
Diffstat (limited to 'source/blender/freestyle/SConscript')
-rw-r--r--source/blender/freestyle/SConscript14
1 files changed, 13 insertions, 1 deletions
diff --git a/source/blender/freestyle/SConscript b/source/blender/freestyle/SConscript
index 31715bda5a3..98a66e272be 100644
--- a/source/blender/freestyle/SConscript
+++ b/source/blender/freestyle/SConscript
@@ -56,10 +56,22 @@ if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
prefix = 'intern/app_blender'
app_sources = env.Glob(prefix + '/*.cpp')
+# Python
+prefix = 'intern/python'
+# python_sources = env.Glob(prefix + '/*.cpp')
+python_sources = [
+ prefix + '/Freestyle.cpp',
+ prefix + '/Convert.cpp',
+ prefix + '/BinaryPredicate0D.cpp',
+ prefix + '/BinaryPredicate1D.cpp',
+ prefix + '/Id.cpp',
+ prefix + '/Interface0D.cpp',
+ prefix + '/Interface1D.cpp'
+ ]
sources = system_sources + image_sources + geometry_sources + scene_graph_sources \
+ winged_edge_sources + view_map_sources + stroke_sources + rendering_sources \
- + app_sources
+ + app_sources + python_sources
env.BlenderLib (libname="bf_freestyle",
sources=sources,