diff options
| author | Lioncash <mai.iam2048@gmail.com> | 2023-12-12 21:53:13 -0500 |
|---|---|---|
| committer | Lioncash <mai.iam2048@gmail.com> | 2023-12-12 21:56:27 -0500 |
| commit | e27a4b5d72cb114ebf17921bb5592aa8f9ba9760 (patch) | |
| tree | bbadf2c3add59bac474e9690529a51abdffeb967 /Externals | |
| parent | 3f06d32dcdca4bba35a21326e811b0f8ceca218c (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.txt | 2 |
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) |
