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:
Diffstat (limited to 'source/blender/python/generic/CMakeLists.txt')
-rw-r--r--source/blender/python/generic/CMakeLists.txt18
1 files changed, 16 insertions, 2 deletions
diff --git a/source/blender/python/generic/CMakeLists.txt b/source/blender/python/generic/CMakeLists.txt
index 1a91abfbec8..4ac3fc36ebd 100644
--- a/source/blender/python/generic/CMakeLists.txt
+++ b/source/blender/python/generic/CMakeLists.txt
@@ -18,8 +18,6 @@
#
# ***** END GPL LICENSE BLOCK *****
-FILE(GLOB SRC *.c)
-
SET(INC
.
../../blenlib
@@ -31,4 +29,20 @@ SET(INC
${PYTHON_INC}
)
+SET(SRC
+ IDProp.c
+ bgl.c
+ blf_api.c
+ bpy_internal_import.c
+ geometry.c
+ mathutils.c
+ mathutils_color.c
+ mathutils_euler.c
+ mathutils_matrix.c
+ mathutils_quat.c
+ mathutils_vector.c
+ noise.c
+ py_capi_utils.c
+)
+
BLENDERLIB(bf_python_ext "${SRC}" "${INC}")