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>2021-03-08 20:34:53 +0300
committerJulian Eisel <julian@blender.org>2021-03-08 20:38:23 +0300
commitfc0de69471f0e6a69ae6ffd01ca27156e524ce40 (patch)
tree44d69b8ddc7cabab79e0cba520c24b0585b89bd8 /source/blender/editors/space_outliner/CMakeLists.txt
parentf0ad78e17c3b48b457ad2cda9224924500e89eb9 (diff)
Cleanup: Split up new files for Outliner ID tree-elements
Splits up `tree_element_id.cc`/`tree_element_id.hh`. If we move all ID types into this one file, it will become rather big. Smaller files are probably easier to work with. We could still keep small classes like `TreeElementIDLibrary` in the general file, don't mind really, but this creates separate files for that too.
Diffstat (limited to 'source/blender/editors/space_outliner/CMakeLists.txt')
-rw-r--r--source/blender/editors/space_outliner/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_outliner/CMakeLists.txt b/source/blender/editors/space_outliner/CMakeLists.txt
index 0306807d9ad..eb3371e989a 100644
--- a/source/blender/editors/space_outliner/CMakeLists.txt
+++ b/source/blender/editors/space_outliner/CMakeLists.txt
@@ -60,6 +60,8 @@ set(SRC
tree/tree_element_driver.cc
tree/tree_element_gpencil_layer.cc
tree/tree_element_id.cc
+ tree/tree_element_id_library.cc
+ tree/tree_element_id_scene.cc
tree/tree_element_nla.cc
tree/tree_element_scene_objects.cc
tree/tree_element_view_layer.cc
@@ -74,6 +76,8 @@ set(SRC
tree/tree_element_driver.hh
tree/tree_element_gpencil_layer.hh
tree/tree_element_id.hh
+ tree/tree_element_id_library.hh
+ tree/tree_element_id_scene.hh
tree/tree_element_nla.hh
tree/tree_element_scene_objects.hh
tree/tree_element_view_layer.hh