diff options
author | David Cole <david.cole@kitware.com> | 2011-09-30 19:57:28 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-09-30 19:57:28 (GMT) |
commit | e3d593ad4d76ead1aea7a486c148333f8ef22193 (patch) | |
tree | e430842dd353e3f01b75296d1525ab7788ae61fa | |
parent | c4ef30e3dd7ba96c7e9feff93392af8685ddb317 (diff) | |
parent | ad6fa0cbca85febca573e18bbbd7bafa2ea00f81 (diff) | |
download | CMake-e3d593ad4d76ead1aea7a486c148333f8ef22193.zip CMake-e3d593ad4d76ead1aea7a486c148333f8ef22193.tar.gz CMake-e3d593ad4d76ead1aea7a486c148333f8ef22193.tar.bz2 |
Merge topic 'really-eliminate-clang-warnings'
ad6fa0c CTestCustom.cmake: Ignore clang's summary warning
-rw-r--r-- | CTestCustom.cmake.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index 0e61da4..1a46688 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -44,6 +44,10 @@ SET(CTEST_CUSTOM_WARNING_EXCEPTION "cc-3968 CC: WARNING File.*" # "implicit" truncation by static_cast "ld: warning: directory not found for option .-(F|L)" "warning.*This version of Mac OS X is unsupported" + + # Ignore clang's summary warning, assuming prior text has matched some + # other warning expression: + "[0-9,]+ warnings? generated." ) IF(NOT "@CMAKE_GENERATOR@" MATCHES "Xcode") |