diff options
author | Brad King <brad.king@kitware.com> | 2013-12-23 10:23:27 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-01-02 14:08:05 -0500 |
commit | 0fd172c8d077797e806060a5026ac4a33a209196 (patch) | |
tree | 0bfb9d0ba3ff9b973251d2cede4fcd1fb5c709b0 /CTestCustom.cmake.in | |
parent | e73d1ad003c50730a8141db757462574c0c2dddc (diff) | |
download | cmake-0fd172c8d077797e806060a5026ac4a33a209196.tar.gz |
CTestCustom: Suppress LNK4089 warning about SHELL32
Add a warning suppression regex to match:
LINK : warning LNK4089: all references to 'SHELL32.DLL' discarded by /OPT:REF
Diffstat (limited to 'CTestCustom.cmake.in')
-rw-r--r-- | CTestCustom.cmake.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index 495d156cc6..eb0b2f6951 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -32,6 +32,7 @@ set(CTEST_CUSTOM_WARNING_EXCEPTION "warning .980: wrong number of actual arguments to intrinsic function .std::basic_" "LINK : warning LNK4089: all references to.*ADVAPI32.dll.*discarded by /OPT:REF" "LINK : warning LNK4089: all references to.*PSAPI.DLL.*discarded by /OPT:REF" + "LINK : warning LNK4089: all references to.*SHELL32.dll.*discarded by /OPT:REF" "LINK : warning LNK4089: all references to.*USER32.dll.*discarded by /OPT:REF" "Warning: library was too large for page size.*" "Warning: public.*_archive_.*in module.*archive_*clashes with prior module.*archive_.*" |