create_test_sourcelist: Suppress MSVC warnings in test driver (#15066)
Suggested-by: Ken Moreland <kmorel@sandia.gov>
This commit is contained in:
parent
ebd8fa2256
commit
63fc8dcdb8
|
@ -3,6 +3,10 @@
|
|||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
# pragma warning(disable:4996) /* deprecation */
|
||||
#endif
|
||||
|
||||
@CMAKE_TESTDRIVER_EXTRA_INCLUDES@
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue