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-13 21:34:41 +0300
committerRay Molenkamp <github@lazydodo.com>2022-01-13 21:34:41 +0300
commit5ecaa9a8385d45ce75c71dde1fc96d5312a769e1 (patch)
tree3f9627469edbcf549e5d561734b6e74479aa4fe7 /source/blender/compositor
parent3537abe84bd49dbeb705c2c3a659d7a13a9c7862 (diff)
Fix compilation error caused by missing target relation
compositor depends on DNA now so that it can access offsets.
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/compositor/CMakeLists.txt b/source/blender/compositor/CMakeLists.txt
index af0ac6aee2e..d5d8154d7ee 100644
--- a/source/blender/compositor/CMakeLists.txt
+++ b/source/blender/compositor/CMakeLists.txt
@@ -680,3 +680,6 @@ if(WITH_GTESTS)
include(GTestTesting)
blender_add_test_lib(bf_compositor_tests "${TEST_SRC}" "${INC};${TEST_INC}" "${INC_SYS}" "${LIB};${TEST_LIB}")
endif()
+
+# Needed so we can use dna_type_offsets.h for defaults initialization.
+add_dependencies(bf_compositor bf_dna)