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:
authorCampbell Barton <ideasman42@gmail.com>2012-02-23 09:20:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-23 09:20:09 +0400
commit0dc50a0e079a5ba552a8ea223039a64afa5c84db (patch)
tree5fb99b15246736308050a42a48ba598d23772278 /source/blender/python/bmesh/CMakeLists.txt
parent38f546a614a2e52f284ebce64b9bcf6f287128b5 (diff)
bmesh py api, new submodules
* bmesh.types, just allows access to BMVert, BMEdge etc. * bmesh.utils, so far only added edge_split() function, this module will give access to mesh editing functions.
Diffstat (limited to 'source/blender/python/bmesh/CMakeLists.txt')
-rw-r--r--source/blender/python/bmesh/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/python/bmesh/CMakeLists.txt b/source/blender/python/bmesh/CMakeLists.txt
index 31e108cf3ae..2823254c5c2 100644
--- a/source/blender/python/bmesh/CMakeLists.txt
+++ b/source/blender/python/bmesh/CMakeLists.txt
@@ -23,7 +23,6 @@ set(INC
../../bmesh
../../blenkernel
../../blenlib
- ../../blenloader
../../makesdna
../../../../intern/guardedalloc
)
@@ -35,9 +34,11 @@ set(INC_SYS
set(SRC
bmesh_py_api.c
bmesh_py_types.c
+ bmesh_py_utils.c
bmesh_py_api.h
bmesh_py_types.h
+ bmesh_py_utils.h
)
blender_add_lib(bf_python_bmesh "${SRC}" "${INC}" "${INC_SYS}")