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:
authorRay Molenkamp <github@lazydodo.com>2022-01-14 17:46:00 +0300
committerRay Molenkamp <github@lazydodo.com>2022-01-14 17:46:00 +0300
commit348631cffeada63c175ed7d44dec15302fbf2c7f (patch)
treed658a5cbd128ce8ac6b0bdf8a6246ebb8f3d1e75 /source/blender/nodes/composite/CMakeLists.txt
parent8ae6995e985b1a354e44c08cb023251d04a5113d (diff)
Fix: Compilation error caused by missing target relation
bf_nodes/bf_nodes_composite depend on DNA headers
Diffstat (limited to 'source/blender/nodes/composite/CMakeLists.txt')
-rw-r--r--source/blender/nodes/composite/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/nodes/composite/CMakeLists.txt b/source/blender/nodes/composite/CMakeLists.txt
index 0374f913d4b..aceca617fb4 100644
--- a/source/blender/nodes/composite/CMakeLists.txt
+++ b/source/blender/nodes/composite/CMakeLists.txt
@@ -158,3 +158,6 @@ if(WITH_UNITY_BUILD)
set_target_properties(bf_nodes_composite PROPERTIES UNITY_BUILD ON)
set_target_properties(bf_nodes_composite PROPERTIES UNITY_BUILD_BATCH_SIZE 10)
endif()
+
+# Needed so we can use dna_type_offsets.h for defaults initialization.
+add_dependencies(bf_nodes_composite bf_dna)