summaryrefslogtreecommitdiff
path: root/Externals
diff options
context:
space:
mode:
authorLioncash <mai.iam2048@gmail.com>2023-12-12 21:53:13 -0500
committerLioncash <mai.iam2048@gmail.com>2023-12-12 21:56:27 -0500
commite27a4b5d72cb114ebf17921bb5592aa8f9ba9760 (patch)
treebbadf2c3add59bac474e9690529a51abdffeb967 /Externals
parent3f06d32dcdca4bba35a21326e811b0f8ceca218c (diff)
Externals/mbedtls: Disable -Wdocumentation related warnings
It's actually kind of wild that these flags are enabled by default. They produce an incredible amount of console output spam. Let's remove them, especially since we've made other changes to this CMakeLists.txt
Diffstat (limited to 'Externals')
-rw-r--r--Externals/mbedtls/library/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Externals/mbedtls/library/CMakeLists.txt b/Externals/mbedtls/library/CMakeLists.txt
index fc2786c7f2..5aa233e080 100644
--- a/Externals/mbedtls/library/CMakeLists.txt
+++ b/Externals/mbedtls/library/CMakeLists.txt
@@ -122,7 +122,7 @@ if(CMAKE_COMPILER_IS_GNUCC)
endif(CMAKE_COMPILER_IS_GNUCC)
if(CMAKE_COMPILER_IS_CLANG)
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wmissing-declarations -Wmissing-prototypes -Wdocumentation -Wno-documentation-deprecated-sync -Wunreachable-code")
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wmissing-declarations -Wmissing-prototypes -Wunreachable-code")
endif(CMAKE_COMPILER_IS_CLANG)
if(WIN32)