diff options
| author | 2026-04-04 07:38:32 +1100 | |
|---|---|---|
| committer | 2026-04-04 07:38:50 +1100 | |
| commit | f9fb5fcff0d77d26c1c88d13c14c59ae37e9fea9 (patch) | |
| tree | d668f2d14152f21f8e9e8214c140d92990268664 /scripts | |
| parent | 5efd5fc946137dd434c04b6c49d2678f3e9e41d3 (diff) | |
Fixed Qt debugger build on Windows with clang.
Qt provides inline definitions of dllimport functions, which causes a
warning. There are too many of them to practically leave the warning
enabled for this module.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/src/osd/modules.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/src/osd/modules.lua b/scripts/src/osd/modules.lua index 9e656b95206..aaaf8965ad0 100644 --- a/scripts/src/osd/modules.lua +++ b/scripts/src/osd/modules.lua @@ -358,6 +358,11 @@ function qtdebuggerbuild() buildoptions { "-Wno-error=inconsistent-missing-override", } + if _OPTIONS["targetos"]=="windows" then + buildoptions { + "-Wno-ignored-attributes", + } + end configuration { } end |
