[Bf-blender-cvs] [c31f519954f] master: CMake: Fix missing dependency in bf_editor_curves

Martijn Versteegh noreply at git.blender.org
Thu May 12 16:42:24 CEST 2022


Commit: c31f519954f2b21fecc86b1b3b9386685226dbdc
Author: Martijn Versteegh
Date:   Thu May 12 08:42:19 2022 -0600
Branches: master
https://developer.blender.org/rBc31f519954f2b21fecc86b1b3b9386685226dbdc

CMake: Fix missing dependency in bf_editor_curves

curves_ops.cc uses RNA_Prototypes.h. so bf_rna
needs to build before bf_editor_curves.

===================================================================

M	source/blender/editors/curves/CMakeLists.txt

===================================================================

diff --git a/source/blender/editors/curves/CMakeLists.txt b/source/blender/editors/curves/CMakeLists.txt
index ba5d16de253..383640504c4 100644
--- a/source/blender/editors/curves/CMakeLists.txt
+++ b/source/blender/editors/curves/CMakeLists.txt
@@ -27,3 +27,5 @@ set(LIB
 )
 
 blender_add_lib(bf_editor_curves "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
+add_dependencies(bf_editor_curves bf_rna)
+



More information about the Bf-blender-cvs mailing list