From 263c5b33d697f6202e3d9b07317e1dc05ffb9a25 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Wed, 16 Mar 2022 12:19:56 -0500 Subject: 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. --- source/blender/nodes/geometry/CMakeLists.txt | 1 + source/blender/nodes/shader/CMakeLists.txt | 1 + 2 files changed, 2 insertions(+) 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) -- cgit v1.2.3