mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
cmake: Disable pointless structure padding warning
This commit is contained in:
parent
fddf21b8de
commit
825f93fb24
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# Copyright (C) 2017 Michael Fabian Dirks
|
||||
# Copyright (C) 2017-2022 Michael Fabian Dirks
|
||||
# Copyright (C) 2022 Romain Vigier
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
|
@ -1780,6 +1780,8 @@ if(D_PLATFORM_WINDOWS AND ((CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") OR (CMAKE_CXX
|
|||
"4710"
|
||||
# Ignore Spectre mitigation insertions
|
||||
"5045"
|
||||
# Ignore inserted padding.
|
||||
"4324"
|
||||
)
|
||||
foreach(WARN ${DISABLED_WARNINGS})
|
||||
target_compile_options(${PROJECT_NAME} PRIVATE "/wd${WARN}")
|
||||
|
|
Loading…
Reference in a new issue