[Bf-blender-cvs] [263c5b33d69] master: Fix: Build error from missing build dependencies

Hans Goudey noreply at git.blender.org
Wed Mar 16 18:20:11 CET 2022


Commit: 263c5b33d697f6202e3d9b07317e1dc05ffb9a25
Author: Hans Goudey
Date:   Wed Mar 16 12:19:56 2022 -0500
Branches: master
https://developer.blender.org/rB263c5b33d697f6202e3d9b07317e1dc05ffb9a25

Fix: Build error from missing build dependencies

Somehow exposed after 943b919fe807b5355, linking could fail because
bf_nodes was not properly configured as a dependency of bf_nodes_shader.
Also add the dependency to the geometry nodes module.

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

M	source/blender/nodes/geometry/CMakeLists.txt
M	source/blender/nodes/shader/CMakeLists.txt

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

diff --git a/source/blender/nodes/geometry/CMakeLists.txt b/source/blender/nodes/geometry/CMakeLists.txt
index 3e6d7c6b408..5c6c7532a0f 100644
--- a/source/blender/nodes/geometry/CMakeLists.txt
+++ b/source/blender/nodes/geometry/CMakeLists.txt
@@ -155,6 +155,7 @@ set(LIB
   bf_bmesh
   bf_functions
   bf_geometry
+  bf_nodes
 )
 
 if(WITH_BULLET)
diff --git a/source/blender/nodes/shader/CMakeLists.txt b/source/blender/nodes/shader/CMakeLists.txt
index 9a3663b51c2..9b4ea0e0db6 100644
--- a/source/blender/nodes/shader/CMakeLists.txt
+++ b/source/blender/nodes/shader/CMakeLists.txt
@@ -127,6 +127,7 @@ set(SRC
 set(LIB
   bf_functions
   bf_intern_sky
+  bf_nodes
 )
 
 if(WITH_PYTHON)



More information about the Bf-blender-cvs mailing list