diff options
author | Brad King <brad.king@kitware.com> | 2009-01-06 20:05:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-01-06 20:05:01 (GMT) |
commit | 276fa3d5e0f5a67d660e02725f8b1cff01f42b41 (patch) | |
tree | c22b529e9a3235eb065a1dcc854cb50e4ad50a60 /CTestCustom.cmake.in | |
parent | f0e6000827e92191f6ec79a629bebe37befa5808 (diff) | |
download | CMake-276fa3d5e0f5a67d660e02725f8b1cff01f42b41.zip CMake-276fa3d5e0f5a67d660e02725f8b1cff01f42b41.tar.gz CMake-276fa3d5e0f5a67d660e02725f8b1cff01f42b41.tar.bz2 |
COMP: Ignore warning LNK4204 for CMake dashboard
This warning appears for libtar.obj, curltest.obj, and synch_client.obj
regularly on CMake dashboard submissions from VS builds. They seem to
occur due to some kind of race condition for objects in small targets.
There is nothing wrong with the code, so this just suppresses the
warnings.
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 68f0ded..1b18ece 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -2,6 +2,7 @@ SET(CTEST_CUSTOM_WARNING_EXCEPTION ${CTEST_CUSTOM_WARNING_EXCEPTION} "xtree.[0-9]+. : warning C4702: unreachable code" "warning LNK4221" + "warning LNK4204" # Occurs by race condition with objects in small libs "variable .var_args[2]*. is used before its value is set" "jobserver unavailable" "warning: \\(Long double usage is reported only once for each file" |