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>2011-02-14 07:15:25 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-14 07:15:25 +0300
commit72bc3f22b7d01349eaa82b58f8b03a1a26b738ba (patch)
tree2ad1f687b487dea019aa0cb4e9cf885e6df06cd1 /source/blender/python/generic/CMakeLists.txt
parent54190dd8e5562cf5f964e6bb60be170c9063c616 (diff)
python api renaming and added headers for some files which didnt have one, no functionality change.
Diffstat (limited to 'source/blender/python/generic/CMakeLists.txt')
-rw-r--r--source/blender/python/generic/CMakeLists.txt24
1 files changed, 13 insertions, 11 deletions
diff --git a/source/blender/python/generic/CMakeLists.txt b/source/blender/python/generic/CMakeLists.txt
index 58d69db4a0e..b3dec148e9d 100644
--- a/source/blender/python/generic/CMakeLists.txt
+++ b/source/blender/python/generic/CMakeLists.txt
@@ -34,13 +34,13 @@ set(SRC
blf_py_api.c
bpy_internal_import.c
mathutils.c
- mathutils_color.c
- mathutils_euler.c
+ mathutils_Color.c
+ mathutils_Euler.c
+ mathutils_Matrix.c
+ mathutils_Quaternion.c
+ mathutils_Vector.c
mathutils_geometry.c
- mathutils_matrix.c
- mathutils_quat.c
- mathutils_vector.c
- noise.c
+ noise_py_api.c
py_capi_utils.c
IDProp.h
@@ -48,13 +48,15 @@ set(SRC
blf_py_api.h
bpy_internal_import.h
mathutils.h
- mathutils_color.h
- mathutils_euler.h
+ mathutils_Color.h
+ mathutils_Euler.h
+ mathutils_Matrix.h
+ mathutils_Quaternion.h
+ mathutils_Vector.h
mathutils_geometry.h
- mathutils_matrix.h
- mathutils_quat.h
- mathutils_vector.h
+ noise_py_api.h
py_capi_utils.h
)
+
blender_add_lib(bf_python_ext "${SRC}" "${INC}")