瀏覽代碼

Disable `Microsoft does not like standard C library functions` warning for all tests

bel 9 年之前
父節點
當前提交
acdec461ab
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      test/civetweb_check.h

+ 7 - 0
test/civetweb_check.h

@@ -40,6 +40,13 @@
 #pragma clang diagnostic pop
 #endif
 
+#if !defined(_CRT_SECURE_NO_WARNINGS)
+#define _CRT_SECURE_NO_WARNINGS
+#endif
+#if !defined(_CRT_SECURE_NO_DEPRECATE)
+#define _CRT_SECURE_NO_DEPRECATE
+#endif
+
 /* A minimal timeout used for all tests with the "check" framework. */
 #define civetweb_min_test_timeout (30)