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
path: root/extern
diff options
context:
space:
mode:
Diffstat (limited to 'extern')
-rw-r--r--extern/ceres/CMakeLists.txt3
-rwxr-xr-xextern/ceres/bundle.sh3
-rw-r--r--extern/mantaflow/CMakeLists.txt17
-rw-r--r--extern/quadriflow/CMakeLists.txt1
4 files changed, 22 insertions, 2 deletions
diff --git a/extern/ceres/CMakeLists.txt b/extern/ceres/CMakeLists.txt
index 4ab3bffb705..009445ea690 100644
--- a/extern/ceres/CMakeLists.txt
+++ b/extern/ceres/CMakeLists.txt
@@ -257,7 +257,8 @@ set(SRC
)
set(LIB
- extern_glog
+ ${GLOG_LIBRARIES}
+ ${GFLAGS_LIBRARIES}
)
if(WITH_LIBMV_SCHUR_SPECIALIZATIONS)
diff --git a/extern/ceres/bundle.sh b/extern/ceres/bundle.sh
index bf5a43852b5..02af59faf28 100755
--- a/extern/ceres/bundle.sh
+++ b/extern/ceres/bundle.sh
@@ -136,7 +136,8 @@ ${headers}
)
set(LIB
- extern_glog
+ \${GLOG_LIBRARIES}
+ \${GFLAGS_LIBRARIES}
)
if(WITH_LIBMV_SCHUR_SPECIALIZATIONS)
diff --git a/extern/mantaflow/CMakeLists.txt b/extern/mantaflow/CMakeLists.txt
index aab1fdd0219..d2f78f7ab6c 100644
--- a/extern/mantaflow/CMakeLists.txt
+++ b/extern/mantaflow/CMakeLists.txt
@@ -73,6 +73,9 @@ if(WITH_TBB)
list(APPEND INC_SYS
${TBB_INCLUDE_DIRS}
)
+ list(APPEND LIB
+ ${TBB_LIBRARIES}
+ )
endif()
if(WITH_OPENVDB)
@@ -81,6 +84,18 @@ if(WITH_OPENVDB)
${OPENEXR_INCLUDE_DIRS}
${OPENVDB_INCLUDE_DIRS}
)
+ list(APPEND LIB
+ ${OPENVDB_LIBRARIES}
+ ${OPENEXR_LIBRARIES}
+ ${ZLIB_LIBRARIES}
+ ${BOOST_LIBRARIES}
+ )
+ if(WITH_OPENVDB_BLOSC)
+ list(APPEND LIB
+ ${BLOSC_LIBRARIES}
+ ${ZLIB_LIBRARIES}
+ )
+ endif()
endif()
set(SRC
@@ -207,6 +222,8 @@ set(SRC
)
set(LIB
+ ${PYTHON_LINKFLAGS}
+ ${PYTHON_LIBRARIES}
)
blender_add_lib(extern_mantaflow "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
diff --git a/extern/quadriflow/CMakeLists.txt b/extern/quadriflow/CMakeLists.txt
index 0f10b8fe707..bf64e5edb67 100644
--- a/extern/quadriflow/CMakeLists.txt
+++ b/extern/quadriflow/CMakeLists.txt
@@ -105,6 +105,7 @@ set(SRC
)
set(LIB
+ ${BOOST_LIBRARIES}
)
blender_add_lib(extern_quadriflow "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")