CMakeLists: Disable C4100 and C4324

Disabling C4100 is similar to -Wno-unused-parameter
This commit is contained in:
Morph 2022-10-21 02:34:07 -04:00
parent cae108404a
commit 3822e31323
5 changed files with 5 additions and 19 deletions

View file

@ -76,6 +76,9 @@ if (MSVC)
/we4826 # Conversion from 'type1' to 'type2' is sign-extended. This may cause unexpected runtime behavior.
/we5038 # data member 'member1' will be initialized after data member 'member2'
/we5245 # 'function': unreferenced function with internal linkage has been removed
/wd4100 # 'identifier': unreferenced formal parameter
/wd4324 # 'struct_name': structure was padded due to __declspec(align())
)
if (USE_CCACHE)