From 28ce8b7a147e315eb4bce4f0ae014e100162aa59 Mon Sep 17 00:00:00 2001 From: David Cole Date: Thu, 1 Sep 2011 09:29:51 -0400 Subject: Suppress Qt warning for dashmacmini5 builds Qt 4.7 and earlier produce a "This version of Mac OS X is unsupported" warning on Lion, even though they work fine once built. We'll upgrade this machine to use Qt 4.8 when it's officially released. Until then, suppress this warning so that we don't miss other "more real" warnings on the dashboard. --- CTestCustom.cmake.in | 1 + 1 file changed, 1 insertion(+) diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index e175d9f..d11f515 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -43,6 +43,7 @@ SET(CTEST_CUSTOM_WARNING_EXCEPTION "CMakeSetupManifest.xml.*manifest authoring warning.*Unrecognized Element" "cc-3968 CC: WARNING File.*" # "implicit" truncation by static_cast "ld: warning: directory not found for option .-(F|L)" + "qglobal.h.*warning.*This version of Mac OS X is unsupported" ) IF(NOT "@CMAKE_GENERATOR@" MATCHES "Xcode") -- cgit v0.12 From 79701929fb7dc3a8aee913866bc8f9352af57ee7 Mon Sep 17 00:00:00 2001 From: David Cole Date: Fri, 2 Sep 2011 14:20:02 -0400 Subject: Suppress Qt warning for dashmacmini5 builds The clang and icc compilers see two lines of warning with essentially the same message. But the second line does not say qglobal.h, so remove that part of the warning exclusion regex. See parent commit for further comments regarding this warning exclusion. --- CTestCustom.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index d11f515..0e61da4 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -43,7 +43,7 @@ SET(CTEST_CUSTOM_WARNING_EXCEPTION "CMakeSetupManifest.xml.*manifest authoring warning.*Unrecognized Element" "cc-3968 CC: WARNING File.*" # "implicit" truncation by static_cast "ld: warning: directory not found for option .-(F|L)" - "qglobal.h.*warning.*This version of Mac OS X is unsupported" + "warning.*This version of Mac OS X is unsupported" ) IF(NOT "@CMAKE_GENERATOR@" MATCHES "Xcode") -- cgit v0.12