diff options
author | Brad King <brad.king@kitware.com> | 2012-11-03 23:25:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-11-05 16:42:27 (GMT) |
commit | 35171061f924f06824c333736ab4788115ac7139 (patch) | |
tree | 3851ea9b46b1d84438de5e41805f12fbdbaa3642 /CTestCustom.cmake.in | |
parent | 5c63fa3d25d5dcc62ae51e3b583a15105c0cd306 (diff) | |
download | CMake-35171061f924f06824c333736ab4788115ac7139.zip CMake-35171061f924f06824c333736ab4788115ac7139.tar.gz CMake-35171061f924f06824c333736ab4788115ac7139.tar.bz2 |
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 9829191..34377ac 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_.*" |