From 3438acc3c3cebc5ffcafa64559a1a2c771fe324e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 6 Mar 2025 11:08:18 +1100 Subject: [PATCH] CMake: add missing headers to source lists --- source/blender/CMakeLists.txt | 1 + source/blender/editors/animation/CMakeLists.txt | 1 + source/blender/geometry/CMakeLists.txt | 1 + source/blender/gpu/CMakeLists.txt | 1 + tools/check_source/check_cmake_consistency_config.py | 2 +- 5 files changed, 5 insertions(+), 1 deletion(-) diff --git a/source/blender/CMakeLists.txt b/source/blender/CMakeLists.txt index b7b1ade0092..924ab4413f8 100644 --- a/source/blender/CMakeLists.txt +++ b/source/blender/CMakeLists.txt @@ -134,6 +134,7 @@ set(SRC_DNA_DEFAULTS_INC # Utility & other headers. set(SRC_DNA_OTHER_INC ${CMAKE_CURRENT_SOURCE_DIR}/makesdna/DNA_array_utils.hh + ${CMAKE_CURRENT_SOURCE_DIR}/makesdna/DNA_print.hh ) add_subdirectory(datatoc) diff --git a/source/blender/editors/animation/CMakeLists.txt b/source/blender/editors/animation/CMakeLists.txt index 077caa5726f..4e6b27d4c1b 100644 --- a/source/blender/editors/animation/CMakeLists.txt +++ b/source/blender/editors/animation/CMakeLists.txt @@ -37,6 +37,7 @@ set(SRC time_scrub_ui.cc anim_intern.hh + keyframes_general_intern.hh ) set(LIB diff --git a/source/blender/geometry/CMakeLists.txt b/source/blender/geometry/CMakeLists.txt index ff6f572ddd6..860c9bdb94a 100644 --- a/source/blender/geometry/CMakeLists.txt +++ b/source/blender/geometry/CMakeLists.txt @@ -56,6 +56,7 @@ set(SRC GEO_add_curves_on_mesh.hh GEO_curve_constraints.hh + GEO_curves_remove_and_split.hh GEO_extend_curves.hh GEO_extract_elements.hh GEO_fillet_curves.hh diff --git a/source/blender/gpu/CMakeLists.txt b/source/blender/gpu/CMakeLists.txt index 4ea532dd0ba..d399f6a681f 100644 --- a/source/blender/gpu/CMakeLists.txt +++ b/source/blender/gpu/CMakeLists.txt @@ -149,6 +149,7 @@ set(SRC intern/gpu_query.hh intern/gpu_select_private.hh intern/gpu_shader_create_info.hh + intern/gpu_shader_create_info_list.hh intern/gpu_shader_create_info_private.hh intern/gpu_shader_dependency_private.hh intern/gpu_shader_interface.hh diff --git a/tools/check_source/check_cmake_consistency_config.py b/tools/check_source/check_cmake_consistency_config.py index fee35ad9fe4..bbeb280fa3a 100644 --- a/tools/check_source/check_cmake_consistency_config.py +++ b/tools/check_source/check_cmake_consistency_config.py @@ -114,7 +114,6 @@ IGNORE_SOURCE_MISSING: tuple[tuple[str, tuple[str, ...]], ...] = ( "hiprt/impl/hiprt_device_impl.h", "hiprt/impl/hiprt_kernels_bitcode.h", "hiprt/impl/Instance.h", - "hiprt/impl/Math.h", "hiprt/impl/QrDecomposition.h", "hiprt/impl/Quaternion.h", "hiprt/impl/Scene.h", @@ -123,6 +122,7 @@ IGNORE_SOURCE_MISSING: tuple[tuple[str, tuple[str, ...]], ...] = ( "hiprt/hiprt_common.h", "hiprt/hiprt_device.h", + "hiprt/hiprt_math.h", "hiprt/hiprt_types.h", "hiprt/hiprt_vec.h", ),