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>2022-01-13 19:25:57 +0300
committerSergey Sharybin <sergey@blender.org>2022-01-13 19:25:57 +0300
commitb8157f5bf13ceb2fd69295be14d13ddf72e12efd (patch)
treed3340cae5a50c6039891d1ae9bfe9531d1708f3a /source/blender/editors/space_clip/CMakeLists.txt
parent22dc865a86520e70ce05bd099ddc3b2053c1bb60 (diff)
Fix compilation error caused by missing target relation
Space clip depends on DNA now so that it can access offsets.
Diffstat (limited to 'source/blender/editors/space_clip/CMakeLists.txt')
-rw-r--r--source/blender/editors/space_clip/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_clip/CMakeLists.txt b/source/blender/editors/space_clip/CMakeLists.txt
index 06179ffdd95..db881dafa6b 100644
--- a/source/blender/editors/space_clip/CMakeLists.txt
+++ b/source/blender/editors/space_clip/CMakeLists.txt
@@ -72,4 +72,8 @@ if(WITH_INTERNATIONAL)
add_definitions(-DWITH_INTERNATIONAL)
endif()
+
blender_add_lib(bf_editor_space_clip "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
+
+# Needed so we can use dna_type_offsets.h for defaults initialization.
+add_dependencies(bf_editor_space_clip bf_dna)