[Bf-blender-cvs] [1fbec423f27] tmp-vfx-platform-2023: cmake: fix missing crlf's

Ray Molenkamp noreply at git.blender.org
Tue Oct 25 19:48:50 CEST 2022


Commit: 1fbec423f2798041d201f88ea8816a48ef2ab82b
Author: Ray Molenkamp
Date:   Tue Oct 25 11:48:18 2022 -0600
Branches: tmp-vfx-platform-2023
https://developer.blender.org/rB1fbec423f2798041d201f88ea8816a48ef2ab82b

cmake: fix missing crlf's

went missing during the last master merge

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

M	build_files/cmake/platform/platform_unix.cmake

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

diff --git a/build_files/cmake/platform/platform_unix.cmake b/build_files/cmake/platform/platform_unix.cmake
index b0448a31348..bcbd2155b92 100644
--- a/build_files/cmake/platform/platform_unix.cmake
+++ b/build_files/cmake/platform/platform_unix.cmake
@@ -350,7 +350,8 @@ if(WITH_USD)
   set_and_warn_library_found("USD" USD_FOUND WITH_USD)
  if(WITH_USD)
     add_bundled_libraries(usd/lib)
- endif()endif()
+ endif()
+endif()
 
 if(WITH_BOOST)
   # uses in build instructions to override include and library variables
@@ -440,7 +441,8 @@ if(WITH_OPENIMAGEIO)
   set_and_warn_library_found("OPENIMAGEIO" OPENIMAGEIO_FOUND WITH_OPENIMAGEIO)
   if(WITH_OPENIMAGEIO)
     add_bundled_libraries(openimageio/lib)
-  endif()endif()
+  endif()
+endif()
 
 if(WITH_OPENCOLORIO)
   find_package_wrapper(OpenColorIO 2.0.0)
@@ -492,13 +494,17 @@ if(WITH_OPENSUBDIV)
 
   set_and_warn_library_found("OpenSubdiv" OPENSUBDIV_FOUND WITH_OPENSUBDIV)
   if(WITH_OPENSUBDIV)
-    add_bundled_libraries(opensubdiv/lib)  endif()endif()
+    add_bundled_libraries(opensubdiv/lib)
+  endif()
+endif()
 
 if(WITH_TBB)
   find_package_wrapper(TBB)
   set_and_warn_library_found("TBB" TBB_FOUND WITH_TBB)
   if(WITH_TBB)
-    add_bundled_libraries(tbb/lib)  endif()endif()
+    add_bundled_libraries(tbb/lib)
+  endif()
+endif()
 
 if(WITH_XR_OPENXR)
   find_package(XR_OpenXR_SDK)



More information about the Bf-blender-cvs mailing list