[Cmake-commits] CMake branch, next, updated. v3.0.1-4887-g3f66f2f
Brad King
brad.king at kitware.com
Tue Aug 12 15:51:09 EDT 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via 3f66f2fbe8f6c27d4bf541fa32c91582f7078174 (commit)
via 63fc8dcdb82e91b7218aab959d75f924f6a01bc1 (commit)
from e0d54b040c808bc7337e01ade615f01f6497a73b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3f66f2fbe8f6c27d4bf541fa32c91582f7078174
commit 3f66f2fbe8f6c27d4bf541fa32c91582f7078174
Merge: e0d54b0 63fc8dc
Author: Brad King <brad.king at kitware.com>
AuthorDate: Tue Aug 12 15:51:08 2014 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Aug 12 15:51:08 2014 -0400
Merge topic 'create_test_sourcelist-msvc-warnings' into next
63fc8dcd create_test_sourcelist: Suppress MSVC warnings in test driver (#15066)
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=63fc8dcdb82e91b7218aab959d75f924f6a01bc1
commit 63fc8dcdb82e91b7218aab959d75f924f6a01bc1
Author: Brad King <brad.king at kitware.com>
AuthorDate: Thu Aug 7 09:15:17 2014 -0400
Commit: Brad King <brad.king at kitware.com>
CommitDate: Thu Aug 7 09:17:44 2014 -0400
create_test_sourcelist: Suppress MSVC warnings in test driver (#15066)
Suggested-by: Ken Moreland <kmorel at sandia.gov>
diff --git a/Templates/TestDriver.cxx.in b/Templates/TestDriver.cxx.in
index 0e0a872..ffa6999 100644
--- a/Templates/TestDriver.cxx.in
+++ b/Templates/TestDriver.cxx.in
@@ -3,6 +3,10 @@
#include <string.h>
#include <stdlib.h>
+#if defined(_MSC_VER)
+# pragma warning(disable:4996) /* deprecation */
+#endif
+
@CMAKE_TESTDRIVER_EXTRA_INCLUDES@
-----------------------------------------------------------------------
Summary of changes:
Templates/TestDriver.cxx.in | 4 ++++
1 file changed, 4 insertions(+)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list