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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-10-02 12:49:35 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-10-02 12:52:18 +0400
commit1b0214cb882985e4867bddce128a4b2d4f89660a (patch)
treed04c95e9a8ad5bfb9bb3df108ad6ada9d1152981
parentc47682d6abd36c607bc6aa25595afc4034df0d5c (diff)
Freestyle: Fix for a compiler failure in makesrna.
-rw-r--r--source/blender/makesrna/SConscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesrna/SConscript b/source/blender/makesrna/SConscript
index 7abda8790c3..898881076c4 100644
--- a/source/blender/makesrna/SConscript
+++ b/source/blender/makesrna/SConscript
@@ -126,6 +126,10 @@ if env['WITH_BF_OPENAL']:
if env['WITH_BF_JACK']:
defs.append('WITH_JACK')
+if env['WITH_BF_FREESTYLE']:
+ defs.append('WITH_FREESTYLE')
+ incs += ' ../freestyle'
+
if env['OURPLATFORM'] == 'linux':
cflags='-pthread'