[Bf-blender-cvs] [ba8233174cd] master: Fix build error with clean builds

Julian Eisel noreply at git.blender.org
Thu Oct 15 23:02:35 CEST 2020


Commit: ba8233174cd72ded420ff0668cf8c4a99a813534
Author: Julian Eisel
Date:   Thu Oct 15 22:58:33 2020 +0200
Branches: master
https://developer.blender.org/rBba8233174cd72ded420ff0668cf8c4a99a813534

Fix build error with clean builds

Needed after d1b3439b80fd6e. Think the error only happened with fresh builds,
where dna_type_offsets.h didn't already exist.

We have to do the same in other places too, see 8594cdb45684.

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

M	source/blender/gpencil_modifiers/CMakeLists.txt

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

diff --git a/source/blender/gpencil_modifiers/CMakeLists.txt b/source/blender/gpencil_modifiers/CMakeLists.txt
index 2cedc5675f7..cb4d74559a4 100644
--- a/source/blender/gpencil_modifiers/CMakeLists.txt
+++ b/source/blender/gpencil_modifiers/CMakeLists.txt
@@ -81,3 +81,5 @@ endif()
 
 
 blender_add_lib(bf_gpencil_modifiers "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
+
+add_dependencies(bf_gpencil_modifiers bf_dna)



More information about the Bf-blender-cvs mailing list