From 7f1a671b2a23bb6c5f6338a8a8beda6c522ab194 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 12 Jun 2024 15:10:00 +0200 Subject: [PATCH] Fix compilation error of the Lite configuration This is kind of wrong fix from the perspective of properly maintaining dependencies of static libraries, but having cyclic dependencies and whole-archive for the test suit makes it very hard to do things properly. Pull Request: https://projects.blender.org/blender/blender/pulls/123123 --- source/blender/editors/object/CMakeLists.txt | 1 + source/blender/editors/undo/CMakeLists.txt | 7 ------- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/source/blender/editors/object/CMakeLists.txt b/source/blender/editors/object/CMakeLists.txt index 435a72f5440..fd3083117e1 100644 --- a/source/blender/editors/object/CMakeLists.txt +++ b/source/blender/editors/object/CMakeLists.txt @@ -68,6 +68,7 @@ set(LIB PRIVATE bf::depsgraph PRIVATE bf::dna bf_editor_mesh + bf_editor_metaball bf_editor_grease_pencil PRIVATE bf::extern::fmtlib PRIVATE bf::intern::clog diff --git a/source/blender/editors/undo/CMakeLists.txt b/source/blender/editors/undo/CMakeLists.txt index ffe3ca0c79b..d87232108b1 100644 --- a/source/blender/editors/undo/CMakeLists.txt +++ b/source/blender/editors/undo/CMakeLists.txt @@ -28,13 +28,6 @@ set(LIB bf_blenkernel PRIVATE bf::blenlib PRIVATE bf::dna - bf_editor_armature - bf_editor_curve - bf_editor_curves - bf_editor_lattice - bf_editor_mesh - bf_editor_metaball - bf_editor_physics PRIVATE bf::intern::clog PRIVATE bf::intern::guardedalloc )