diff options
| author | Tilka <tilkax@gmail.com> | 2025-02-25 18:32:28 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-25 18:32:28 +0000 |
| commit | 030892abd981f661a5a272194089552122ddc331 (patch) | |
| tree | 8e51d1e81e664c9f2b5d3db16bf93c62723b02f5 /Source | |
| parent | 89277ee52ec58bf396bd4a9dfedd22699fae99d0 (diff) | |
| parent | a8363854eec6a53e8f49736e3a257a28790bf498 (diff) | |
Merge pull request #13369 from Tilka/qt_warnings
CMake: disable Qt deprecation warnings we can't fix
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinQt/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt index 59a3139ca3..38d481cdf9 100644 --- a/Source/Core/DolphinQt/CMakeLists.txt +++ b/Source/Core/DolphinQt/CMakeLists.txt @@ -412,6 +412,9 @@ PRIVATE -DQT_USE_QSTRINGBUILDER -DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_TO_ASCII + # This Qt version should match Externals/Qt. + # It disables deprecation warnings we can't fix yet. + -DQT_WARN_DEPRECATED_UP_TO=0x060501 ) target_include_directories(dolphin-emu |
