[Bf-blender-cvs] [d8ffb4655c3] master: Fix missed libraries in auto CMake config update for 3.5 libraries

Brecht Van Lommel noreply at git.blender.org
Wed Dec 7 15:37:32 CET 2022


Commit: d8ffb4655c34e2f060accf8639b54c83bacb9998
Author: Brecht Van Lommel
Date:   Wed Dec 7 15:36:19 2022 +0100
Branches: master
https://developer.blender.org/rBd8ffb4655c34e2f060accf8639b54c83bacb9998

Fix missed libraries in auto CMake config update for 3.5 libraries

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

M	build_files/cmake/platform/platform_old_libs_update.cmake

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

diff --git a/build_files/cmake/platform/platform_old_libs_update.cmake b/build_files/cmake/platform/platform_old_libs_update.cmake
index 1e98ea7a4ff..14f64ff0607 100644
--- a/build_files/cmake/platform/platform_old_libs_update.cmake
+++ b/build_files/cmake/platform/platform_old_libs_update.cmake
@@ -45,14 +45,16 @@ if(UNIX AND DEFINED NANOVDB_INCLUDE_DIR)
   endif()
 endif()
 
-# Detect update to 3.4 libs with shared libraries.
+# Detect update to 3.5 libs with shared libraries.
 if(UNIX AND
   DEFINED TBB_LIBRARY AND
   TBB_LIBRARY MATCHES "libtbb.a$" AND
   EXISTS ${LIBDIR}/usd/include/pxr/base/tf/pyModule.h)
-  message(STATUS "Auto updating CMake configuration for Blender 3.4 libraries")
+  message(STATUS "Auto updating CMake configuration for Blender 3.5 libraries")
   unset_cache_variables("^BLOSC")
   unset_cache_variables("^BOOST")
+  unset_cache_variables("^Boost")
+  unset_cache_variables("^IMATH")
   unset_cache_variables("^OPENCOLORIO")
   unset_cache_variables("^OPENEXR")
   unset_cache_variables("^OPENIMAGEIO")



More information about the Bf-blender-cvs mailing list