File tree 1 file changed +2
-0
lines changed
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ function(aws_cryptosdk_set_common_properties target)
52
52
list (APPEND AWS_C_FLAGS /wd4267 /wd4242 /wd4244) # Narrowing implicit conversions of int types
53
53
list (APPEND AWS_C_FLAGS /wd4245) # Implicit sign extension, unsigned to signed conversion
54
54
list (APPEND AWS_C_FLAGS /wd4221) # obj = { .foo = nonconstant() }
55
+ list (APPEND AWS_C_FLAGS /wd4996) # Use of deprecated APIs, necessary for OpenSSL3
55
56
56
57
# MSVC warnings about C99 standard stuff
57
58
list (APPEND AWS_C_FLAGS /wd4204) # arr = { 0, 1, 2 } initializers
@@ -74,6 +75,7 @@ function(aws_cryptosdk_set_common_properties target)
74
75
list (APPEND AWS_C_FLAGS -Wno-long-long)
75
76
list (APPEND AWS_C_FLAGS -Wno-missing-field-initializers)
76
77
list (APPEND AWS_C_FLAGS -Wno-shorten-64-to-32)
78
+ list (APPEND AWS_C_FLAGS -Wno-deprecated-declarations)
77
79
endif (MSVC )
78
80
79
81
if (NOT SET_PROPERTIES_NO_WGNU)
You can’t perform that action at this time.
0 commit comments