Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(287)

Unified Diff: source/blender/python/intern/bpy_app_build_options.c

Issue 7416049: Freestyle r54826 branch review Base URL: https://svn.blender.org/svnroot/bf-blender/trunk/blender/
Patch Set: Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: source/blender/python/intern/bpy_app_build_options.c
===================================================================
--- source/blender/python/intern/bpy_app_build_options.c (revision 54826)
+++ source/blender/python/intern/bpy_app_build_options.c (working copy)
@@ -41,6 +41,7 @@
{(char *)"compositor", NULL},
{(char *)"cycles", NULL},
{(char *)"cycles_osl", NULL},
+ {(char *)"freestyle", NULL},
{(char *)"gameengine", NULL},
{(char *)"image_cineon", NULL},
{(char *)"image_dds", NULL},
@@ -137,6 +138,12 @@
SetObjIncref(Py_False);
#endif
+#ifdef WITH_FREESTYLE
+ SetObjIncref(Py_True);
+#else
+ SetObjIncref(Py_False);
+#endif
+
#ifdef WITH_GAMEENGINE
SetObjIncref(Py_True);
#else

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b