Don't treat warnings as errors for 3rd party projs
This commit is contained in:
12
third_party/capstone.lua
vendored
12
third_party/capstone.lua
vendored
@@ -3,8 +3,6 @@ project("capstone")
|
||||
uuid("b3a89f7e-bb02-4945-ae75-219caed6afa2")
|
||||
kind("StaticLib")
|
||||
language("C")
|
||||
links({
|
||||
})
|
||||
defines({
|
||||
"CAPSTONE_X86_ATT_DISABLE",
|
||||
"CAPSTONE_DIET_NO",
|
||||
@@ -43,13 +41,3 @@ project("capstone")
|
||||
"capstone/**.c",
|
||||
"capstone/arch/X86/**.c",
|
||||
})
|
||||
|
||||
filter("platforms:Linux")
|
||||
-- Capstone code is... not fantastic.
|
||||
buildoptions({
|
||||
"-Wno-error=write-strings",
|
||||
"-Wno-write-string",
|
||||
"-Wno-deprecated",
|
||||
"-w",
|
||||
})
|
||||
filter({})
|
||||
|
||||
5
third_party/imgui.lua
vendored
5
third_party/imgui.lua
vendored
@@ -23,8 +23,3 @@ project("imgui")
|
||||
"imgui/imstb_textedit.h",
|
||||
"imgui/imstb_truetype.h",
|
||||
})
|
||||
|
||||
filter("platforms:Windows")
|
||||
buildoptions({
|
||||
"/wd4312", -- Ugh.
|
||||
})
|
||||
|
||||
5
third_party/spirv-tools.lua
vendored
5
third_party/spirv-tools.lua
vendored
@@ -69,8 +69,3 @@ project("spirv-tools")
|
||||
"spirv-tools/source/util/bitutils.h",
|
||||
"spirv-tools/source/util/hex_float.h",
|
||||
})
|
||||
filter("platforms:Windows")
|
||||
buildoptions({
|
||||
"/wd4800", -- Forcing value to bool 'true' or 'false'
|
||||
"/wd4996", -- Call to 'std::equal' with parameters that may be unsafe
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user