Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/doitsujin/dxvk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Ashton <joshua@froggi.es>2022-09-11 00:04:36 +0300
committerJoshie <joshua@froggi.es>2022-09-11 00:27:04 +0300
commitf9bd1a5d7965d945b8a5783c09c01e0a7f3d3b74 (patch)
tree4a4717e50ed64f36e77ec55bc424cdc253013e1e /meson.build
parent64d88c684d23a51cc734bedc51cade08017cb0e0 (diff)
[build] Enable warning_level 2
Compiles cleanly with GCC 12
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build6
1 files changed, 5 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index b6efedce..ca51272e 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('dxvk', ['c', 'cpp'], version : 'v1.10.1', meson_version : '>= 0.49', default_options : [ 'cpp_std=c++17' ])
+project('dxvk', ['c', 'cpp'], version : 'v1.10.1', meson_version : '>= 0.49', default_options : [ 'cpp_std=c++17', 'warning_level=2' ])
cpu_family = target_machine.cpu_family()
platform = target_machine.system()
@@ -13,6 +13,10 @@ compiler_args = [
'-msse3',
'-mfpmath=sse',
'-Wimplicit-fallthrough',
+ # gcc
+ '-Wno-missing-field-initializers',
+ '-Wno-unused-parameter',
+ '-Wno-cast-function-type', # Needed for GetProcAddress.
# clang
'-Wno-unused-private-field',
'-Wno-microsoft-exception-spec',