CMake: quiet uninitialized warning in fmtlib

This can be removed after the next upgrade.
This commit is contained in:
Campbell Barton 2023-06-08 11:58:05 +10:00
parent c9988ffc6a
commit b9ddf2aec6
1 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,10 @@
# SPDX-License-Identifier: GPL-2.0-or-later
if(CMAKE_COMPILER_IS_GNUCC)
# NOTE: Resolved up-stream, quiet noisy compiler warnings for now.
add_cxx_flag("-Wno-uninitialized")
endif()
set(INC
include
)