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-17 14:47:57 +0300
committerJacques Lucke <jacques@blender.org>2020-07-17 14:49:18 +0300
commit3ef59121a49b986700747469850e02f6420ee8aa (patch)
tree9a6dc6b823ebd355e227ce0ad0427f8d1a4c8e39 /source/blender/nodes
parent9582797d4b50a18040e96ae07aa8c7643cbcc25a (diff)
Simulation: move initial simulation code from bf_blenkernel to bf_simulation
I removed bf_blenkernel from `nodes/CMakeLists.txt` again (added it yesterday), because now this was causing me unresolved symbol errors... Without it, cmake seems to link the libraries bf_simulation, bf_blenkernel and bf_nodes in the right order. Not sure if that is just luck or if it is guaranteed. It was possible to fix the issue by using cmakes `LINK_INTERFACE_MULTIPLICITY`, but that is probably bad style.
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/CMakeLists.txt1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/nodes/CMakeLists.txt b/source/blender/nodes/CMakeLists.txt
index bb2541fd7a6..b3cb8163f2a 100644
--- a/source/blender/nodes/CMakeLists.txt
+++ b/source/blender/nodes/CMakeLists.txt
@@ -304,7 +304,6 @@ set(SRC
)
set(LIB
- bf_blenkernel
bf_functions
bf_intern_sky
)