diff options
author | John Fultz <jfultz@wolfram.com> | 2014-08-25 00:12:03 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2014-08-25 00:12:03 -0500 |
commit | 46e79f5233447d39fcae01681c41a4e68d04e7b3 (patch) | |
tree | 0e81c22e396b0d5ff28c9af5748147c6fe71ec28 | |
parent | df3be077583510d8ec42c47cbbf97255cd9e7d8b (diff) |
Disable Linux warnings without producing Mac warnings.
-rw-r--r-- | quacker/quacker.pro | 2 | ||||
-rw-r--r-- | quackleio/quackleio.pro | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/quacker/quacker.pro b/quacker/quacker.pro index 9fad721..8c4a263 100644 --- a/quacker/quacker.pro +++ b/quacker/quacker.pro @@ -61,6 +61,6 @@ macx-g++ { QMAKE_CXXFLAGS += -fpermissive } -unix { +unix:!macx { QMAKE_CXXFLAGS += -Wno-unused-local-typedefs } diff --git a/quackleio/quackleio.pro b/quackleio/quackleio.pro index 3666134..44e6dd1 100644 --- a/quackleio/quackleio.pro +++ b/quackleio/quackleio.pro @@ -40,6 +40,6 @@ macx-xcode { CONFIG += x86 } -unix { +unix:!macx { QMAKE_CXXFLAGS += -Wno-unused-local-typedefs } |