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:
authorJacques Lucke <jacques@blender.org>2020-07-16 20:52:28 +0300
committerJacques Lucke <jacques@blender.org>2020-07-16 20:52:28 +0300
commitb13bbb22e4cb7b4cd21b33d1f1b165abcde5fe6e (patch)
treead8c8356f236e458fd12dc87efd7f1ba22f06574 /source/blender/nodes/CMakeLists.txt
parent02a3720000b560df9fdc7d3050a2f376b7b5bf66 (diff)
Fix link error in bf_nodes
I got undefined reference errors on the `NodeMFNetworkBuilder::get_default_fn` function under some circumstances. This symbol is definitely defined in bf_blenkernel. The error seemed a bit undeterministic and was probably caused by some incorrect link order. I don't get the error with this change.
Diffstat (limited to 'source/blender/nodes/CMakeLists.txt')
-rw-r--r--source/blender/nodes/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/nodes/CMakeLists.txt b/source/blender/nodes/CMakeLists.txt
index 9106eacb31a..f644cdc134a 100644
--- a/source/blender/nodes/CMakeLists.txt
+++ b/source/blender/nodes/CMakeLists.txt
@@ -298,6 +298,7 @@ set(SRC
)
set(LIB
+ bf_blenkernel
bf_functions
bf_intern_sky
)