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:
authorJulian Eisel <julian@blender.org>2022-01-26 13:44:58 +0300
committerJulian Eisel <julian@blender.org>2022-01-26 13:44:58 +0300
commit9bce134e56c28045aee37080f5c5b6622a07927b (patch)
treee91a6eae7f00d2f0bfb4753a33dcc285018faaf5 /source/blender/editors/space_outliner/CMakeLists.txt
parent1bf6a880ab4fc1d0f1e6b2bb7cc0354b4e18f45b (diff)
Outliner: Port RNA elements to new tree-element design
Continuation of work started in 2e221de4ceee and 249e4df110e0. Adds new tree-element classes for RNA structs, properties and array elements. This isn't exactly a copy and paste, even though logic should effectively be the same. Further cleanups are included to share code in a nice way, improve code with simple C++ features, etc.
Diffstat (limited to 'source/blender/editors/space_outliner/CMakeLists.txt')
-rw-r--r--source/blender/editors/space_outliner/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/CMakeLists.txt b/source/blender/editors/space_outliner/CMakeLists.txt
index cac9d4131f8..60b881fb32b 100644
--- a/source/blender/editors/space_outliner/CMakeLists.txt
+++ b/source/blender/editors/space_outliner/CMakeLists.txt
@@ -65,6 +65,7 @@ set(SRC
tree/tree_element_id_scene.cc
tree/tree_element_nla.cc
tree/tree_element_overrides.cc
+ tree/tree_element_rna.cc
tree/tree_element_scene_objects.cc
tree/tree_element_view_layer.cc
@@ -81,6 +82,7 @@ set(SRC
tree/tree_element_id_scene.hh
tree/tree_element_nla.hh
tree/tree_element_overrides.hh
+ tree/tree_element_rna.hh
tree/tree_element_scene_objects.hh
tree/tree_element_view_layer.hh
)