Fix MinGW support

This commit is contained in:
Jérôme Leclercq 2021-09-06 10:37:24 +02:00
parent 7a78e7be8c
commit 601a0cedec
3 changed files with 5 additions and 2 deletions

View File

@ -67,7 +67,7 @@ jobs:
# Build the engine
- name: Build Nazara
run: xmake -v
run: xmake
# Install the result files
- name: Install Nazara

View File

@ -59,7 +59,7 @@ jobs:
# Build the engine
- name: Build Nazara
run: xmake.exe -v
run: xmake.exe
# Install the result files
- name: Install Nazara

View File

@ -146,6 +146,9 @@ if is_plat("windows") then
add_cxxflags("/bigobj", "/permissive-", "/Zc:__cplusplus", "/Zc:referenceBinding", "/Zc:throwingNew")
add_cxflags("/w44062") -- Enable warning: switch case not handled
add_cxflags("/wd4251") -- Disable warning: class needs to have dll-interface to be used by clients of class blah blah blah
elseif is_plat("mingw") then
add_cxflags("-Og", "-Wa,-mbig-obj")
add_ldflags("-Wa,-mbig-obj")
end
for name, module in pairs(modules) do