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:
authorSergey Sharybin <sergey@blender.org>2020-11-06 16:47:46 +0300
committerSergey Sharybin <sergey@blender.org>2020-11-06 16:47:46 +0300
commita83fcf2b35fa66686c722c8f70664eb1ded36829 (patch)
tree9d45e96d027b62c5a34a1bc69ff699f38d4a9e91 /source/blender/sequencer
parent7dd76329e11cd5dc13b5804670bee0efe4d51fa6 (diff)
CMake: Fix wrong library used for dependency
Was causing compilation failure on fresh builds.
Diffstat (limited to 'source/blender/sequencer')
-rw-r--r--source/blender/sequencer/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/sequencer/CMakeLists.txt b/source/blender/sequencer/CMakeLists.txt
index bc3bda8d5b2..43a45fd896a 100644
--- a/source/blender/sequencer/CMakeLists.txt
+++ b/source/blender/sequencer/CMakeLists.txt
@@ -78,4 +78,4 @@ endif()
blender_add_lib(bf_sequencer "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
# Needed so we can use dna_type_offsets.h.
-add_dependencies(bf_blenkernel bf_dna)
+add_dependencies(bf_sequencer bf_dna)