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>2013-03-23 03:04:14 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-03-23 03:04:14 +0400
commit865e80f0f47b8cda1b126c2130114b833c7c5035 (patch)
tree0a81e5dd28b78d0ae73b45b8d176f32ef7b37ef5
parent6df365f6a4724700caae5a39ca4be8ed88dbd66c (diff)
Fix for missing -DWITH_FREESTYLE.
-rw-r--r--source/blender/python/bmesh/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/python/bmesh/CMakeLists.txt b/source/blender/python/bmesh/CMakeLists.txt
index ccabe572ce5..b15923a87d2 100644
--- a/source/blender/python/bmesh/CMakeLists.txt
+++ b/source/blender/python/bmesh/CMakeLists.txt
@@ -51,4 +51,8 @@ set(SRC
bmesh_py_utils.h
)
+if(WITH_FREESTYLE)
+ add_definitions(-DWITH_FREESTYLE)
+endif()
+
blender_add_lib(bf_python_bmesh "${SRC}" "${INC}" "${INC_SYS}")