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:
authorBastien Montagne <bastien@blender.org>2021-03-16 20:35:53 +0300
committerBastien Montagne <bastien@blender.org>2021-03-16 20:35:53 +0300
commit0449da54602b2e9a1ea58d336f190c3919f3f27a (patch)
tree8b15c677607b058d846c655a7c343f2d95c686e1 /source/blender/editors/space_outliner/CMakeLists.txt
parent15a4ed3aff400a289fafff68019820e89779234c (diff)
Outliner: Refactor: Move overrides tree items to new CPP code.
Fairly straight forwards. Also fixes the bug from recent refactor that would not show overrides as a tree, but as a flat list directly under IDs.
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 eb3371e989a..4a1e5c1a12c 100644
--- a/source/blender/editors/space_outliner/CMakeLists.txt
+++ b/source/blender/editors/space_outliner/CMakeLists.txt
@@ -63,6 +63,7 @@ set(SRC
tree/tree_element_id_library.cc
tree/tree_element_id_scene.cc
tree/tree_element_nla.cc
+ tree/tree_element_overrides.cc
tree/tree_element_scene_objects.cc
tree/tree_element_view_layer.cc
@@ -79,6 +80,7 @@ set(SRC
tree/tree_element_id_library.hh
tree/tree_element_id_scene.hh
tree/tree_element_nla.hh
+ tree/tree_element_overrides.hh
tree/tree_element_scene_objects.hh
tree/tree_element_view_layer.hh
)