diff options
author | Brad King <brad.king@kitware.com> | 2013-12-23 15:23:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-01-02 19:08:05 (GMT) |
commit | 0fd172c8d077797e806060a5026ac4a33a209196 (patch) | |
tree | 0bfb9d0ba3ff9b973251d2cede4fcd1fb5c709b0 /CTestCustom.cmake.in | |
parent | e73d1ad003c50730a8141db757462574c0c2dddc (diff) | |
download | CMake-0fd172c8d077797e806060a5026ac4a33a209196.zip CMake-0fd172c8d077797e806060a5026ac4a33a209196.tar.gz CMake-0fd172c8d077797e806060a5026ac4a33a209196.tar.bz2 |
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 495d156..eb0b2f6 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_.*" |