[Bf-blender-cvs] [2f65eed0e74] soc-2021-porting-modifiers-to-nodes-remesh-blocks: - make initial setup work.

Fabian Schempp noreply at git.blender.org
Tue Jul 13 22:00:54 CEST 2021


Commit: 2f65eed0e741fd3545e445279463dd81839f1aab
Author: Fabian Schempp
Date:   Thu May 27 21:05:39 2021 +0200
Branches: soc-2021-porting-modifiers-to-nodes-remesh-blocks
https://developer.blender.org/rB2f65eed0e741fd3545e445279463dd81839f1aab

- make initial setup work.

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

M	source/blender/nodes/CMakeLists.txt

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

diff --git a/source/blender/nodes/CMakeLists.txt b/source/blender/nodes/CMakeLists.txt
index 00f6996f595..9a9bb38d27c 100644
--- a/source/blender/nodes/CMakeLists.txt
+++ b/source/blender/nodes/CMakeLists.txt
@@ -414,9 +414,16 @@ if(WITH_GMP)
 endif()
 
 if(WITH_OPENVDB)
+  list(APPEND INC
+          ../../../intern/openvdb
+          )
   list(APPEND INC_SYS
-    ${OPENVDB_INCLUDE_DIRS}
-  )
+          ${OPENVDB_INCLUDE_DIRS}
+          )
+  list(APPEND LIB
+          bf_intern_openvdb
+          ${OPENVDB_LIBRARIES}
+          )
   add_definitions(-DWITH_OPENVDB ${OPENVDB_DEFINITIONS})
 endif()



More information about the Bf-blender-cvs mailing list