[Bf-blender-cvs] [5ecaa9a8385] master: Fix compilation error caused by missing target relation

Ray Molenkamp noreply at git.blender.org
Thu Jan 13 19:34:46 CET 2022


Commit: 5ecaa9a8385d45ce75c71dde1fc96d5312a769e1
Author: Ray Molenkamp
Date:   Thu Jan 13 11:34:41 2022 -0700
Branches: master
https://developer.blender.org/rB5ecaa9a8385d45ce75c71dde1fc96d5312a769e1

Fix compilation error caused by missing target relation

compositor depends on DNA now so that it can access offsets.

===================================================================

M	source/blender/compositor/CMakeLists.txt

===================================================================

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)



More information about the Bf-blender-cvs mailing list