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:
authorMartijn Versteegh <Baardaap>2022-05-12 17:42:19 +0300
committerRay Molenkamp <github@lazydodo.com>2022-05-12 17:42:19 +0300
commitc31f519954f2b21fecc86b1b3b9386685226dbdc (patch)
tree2ec5b575ebf3c3aa5c24160b534d85f3958d620f
parent65d44093c9d14fd2c26d6e980d53659f588d2dc0 (diff)
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.
-rw-r--r--source/blender/editors/curves/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
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)
+