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:
authorJacques Lucke <jacques@blender.org>2020-11-06 16:27:51 +0300
committerJacques Lucke <jacques@blender.org>2020-11-06 16:28:33 +0300
commitdfa027fe09b53485802cb0d6224ffc6bbc058b87 (patch)
treebfbb6c9db0f08fb0783e97ef2b232eeaa62c2136 /source/blender/sequencer/CMakeLists.txt
parent94ce248b30e8c43ac3108c2d670a1d6a42516f87 (diff)
Refactor: move sequencer modifier .blend I/O to sequencer module
Ref T76372.
Diffstat (limited to 'source/blender/sequencer/CMakeLists.txt')
-rw-r--r--source/blender/sequencer/CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/sequencer/CMakeLists.txt b/source/blender/sequencer/CMakeLists.txt
index 3841a6e6414..bc3bda8d5b2 100644
--- a/source/blender/sequencer/CMakeLists.txt
+++ b/source/blender/sequencer/CMakeLists.txt
@@ -23,6 +23,7 @@ set(INC
intern
../blenkernel
../blenlib
+ ../blenloader
../blentranslation
../depsgraph
../imbuf
@@ -33,6 +34,9 @@ set(INC
../windowmanager
../../../intern/atomic
../../../intern/guardedalloc
+
+ # dna_type_offsets.h
+ ${CMAKE_CURRENT_BINARY_DIR}/../makesdna/intern
)
set(INC_SYS
@@ -72,3 +76,6 @@ if(WITH_AUDASPACE)
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)