This is a minimal, information-only view currently, listing by default all the override data-blocks, with their user-edited override properties. System-generated overrides (like the overrides of pointers to other override data-blocks) can be shown through a filter option. Finally, potential info or warning messages from (auto-)resync propcess are also shown, as an icon + tooltip next to the affected items. Part of D10855.
101 lines
2.6 KiB
CMake
101 lines
2.6 KiB
CMake
# ***** BEGIN GPL LICENSE BLOCK *****
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
# ***** END GPL LICENSE BLOCK *****
|
|
|
|
set(INC
|
|
../include
|
|
../../blenkernel
|
|
../../blenlib
|
|
../../blentranslation
|
|
../../depsgraph
|
|
../../gpu
|
|
../../imbuf
|
|
../../makesdna
|
|
../../makesrna
|
|
../../sequencer
|
|
../../windowmanager
|
|
../../../../intern/clog
|
|
../../../../intern/glew-mx
|
|
../../../../intern/guardedalloc
|
|
)
|
|
|
|
|
|
set(SRC
|
|
outliner_collections.c
|
|
outliner_context.c
|
|
outliner_dragdrop.c
|
|
outliner_draw.c
|
|
outliner_edit.c
|
|
outliner_ops.c
|
|
outliner_select.c
|
|
outliner_sync.c
|
|
outliner_tools.c
|
|
outliner_tree.c
|
|
outliner_utils.c
|
|
space_outliner.c
|
|
tree/common.cc
|
|
tree/tree_display.cc
|
|
tree/tree_display_data.cc
|
|
tree/tree_display_libraries.cc
|
|
tree/tree_display_orphaned.cc
|
|
tree/tree_display_override_library.cc
|
|
tree/tree_display_scenes.cc
|
|
tree/tree_display_sequencer.cc
|
|
tree/tree_display_view_layer.cc
|
|
tree/tree_element.cc
|
|
tree/tree_element_anim_data.cc
|
|
tree/tree_element_collection.cc
|
|
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_overrides.cc
|
|
tree/tree_element_scene_objects.cc
|
|
tree/tree_element_view_layer.cc
|
|
|
|
outliner_intern.h
|
|
tree/tree_display.h
|
|
tree/tree_display.hh
|
|
tree/tree_element.h
|
|
tree/tree_element.hh
|
|
tree/tree_element_anim_data.hh
|
|
tree/tree_element_collection.hh
|
|
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_overrides.hh
|
|
tree/tree_element_scene_objects.hh
|
|
tree/tree_element_view_layer.hh
|
|
)
|
|
|
|
set(LIB
|
|
bf_blenkernel
|
|
bf_blenlib
|
|
bf_editor_undo
|
|
)
|
|
|
|
if(WITH_INTERNATIONAL)
|
|
add_definitions(-DWITH_INTERNATIONAL)
|
|
endif()
|
|
|
|
|
|
blender_add_lib(bf_editor_space_outliner "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|