Fix: Warnings after Ceres update

The external libraries did not properly ignore Wreorder for GCC and MSVC.

Pull Request: https://projects.blender.org/blender/blender/pulls/136946
This commit is contained in:
Sergey Sharybin
2025-04-03 19:13:07 +02:00
committed by Sergey Sharybin
parent b2950de4a2
commit 85a97b01a9
2 changed files with 6 additions and 1 deletions

View File

@@ -1981,7 +1981,8 @@ if(CMAKE_COMPILER_IS_GNUCC)
CXX_WARN_NO_COMMENT -Wno-comment
CXX_WARN_NO_UNUSED_TYPEDEFS -Wno-unused-local-typedefs
CXX_WARN_NO_UNUSED_VARIABLE -Wno-unused-variable
CXX_WARN_NO_UNUSED_VARIABLE -Wno-uninitialized
CXX_WARN_NO_UNINITIALIZED -Wno-uninitialized
CXX_WARN_NO_REORDER -Wno-reorder
)