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>2016-04-05 00:02:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-04-05 00:38:57 +0300
commit82b0a9e36900c8aeb374078bd4cb3a7d7f8295e6 (patch)
treea3fc9e26f72de53c47de2637e52164a24a875f6f /source/blender/python/intern/CMakeLists.txt
parent65f279b7705a14ffdbd79f1835504344af40c283 (diff)
PyDriver support for all RNA property types
Support for driver variables that don't resolve to numbers, eg: objects, bones, curves... etc. Without this, Python expressions to access this data needed to use an absolute path from `bpy.data`, however this is inconvenient, breaks easily (based on naming) and wouldn't set the dependencies correctly.
Diffstat (limited to 'source/blender/python/intern/CMakeLists.txt')
-rw-r--r--source/blender/python/intern/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/intern/CMakeLists.txt b/source/blender/python/intern/CMakeLists.txt
index fa7c94025f7..2715d2c5992 100644
--- a/source/blender/python/intern/CMakeLists.txt
+++ b/source/blender/python/intern/CMakeLists.txt
@@ -71,6 +71,7 @@ set(SRC
bpy_rna_anim.c
bpy_rna_array.c
bpy_rna_callback.c
+ bpy_rna_driver.c
bpy_rna_id_collection.c
bpy_traceback.c
bpy_util.c
@@ -99,6 +100,7 @@ set(SRC
bpy_rna.h
bpy_rna_anim.h
bpy_rna_callback.h
+ bpy_rna_driver.h
bpy_rna_id_collection.h
bpy_traceback.h
bpy_util.h