diff options
| author | Martin Ridgers <[email protected]> | 2021-12-16 13:31:06 +0100 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2022-01-05 09:34:12 +0100 |
| commit | 1391035aa3aa111b50c4e79aae50a51d6f017c56 (patch) | |
| tree | 5e71ffbd844dbbfdf44399ed753a77f6db2b0bf5 | |
| parent | Fix issues with deployment python script due to removal of sln files. (diff) | |
| download | zen-1391035aa3aa111b50c4e79aae50a51d6f017c56.tar.xz zen-1391035aa3aa111b50c4e79aae50a51d6f017c56.zip | |
Add compiler flags for GCC-compatible toolchains on Mac too
| -rw-r--r-- | xmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ if is_os("windows") then -- add_ldflags("/MAP") end -if is_os("linux") then +if is_os("linux") or is_os("macosx") then add_cxxflags("-Wno-unused-value") add_cxxflags("-Wno-strict-aliasing") add_cxxflags("-Wno-implicit-fallthrough") |