diff options
author | Brad King <brad.king@kitware.com> | 2012-11-03 19:25:01 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-11-05 11:42:27 -0500 |
commit | 35171061f924f06824c333736ab4788115ac7139 (patch) | |
tree | 3851ea9b46b1d84438de5e41805f12fbdbaa3642 /CTestCustom.cmake.in | |
parent | 5c63fa3d25d5dcc62ae51e3b583a15105c0cd306 (diff) | |
download | cmake-35171061f924f06824c333736ab4788115ac7139.tar.gz |
CTestCustom: Suppress LNK4089 warning about PSAPI
Add a warning suppression regex to match:
LINK : warning LNK4089: all references to 'PSAPI.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 982919198b..34377ac0d6 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -31,6 +31,7 @@ SET(CTEST_CUSTOM_WARNING_EXCEPTION "remark: .*LOOP WAS VECTORIZED" "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.*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_.*" |