Permit false positive compile errors (gcc8)

This commit is contained in:
cypheron 2019-05-09 01:49:54 +02:00 committed by Jakob Botsch Nielsen
parent 54bb0943e5
commit c40188c796

View File

@ -73,6 +73,12 @@ project "Detour"
"../Detour/Include/*.h",
"../Detour/Source/*.cpp"
}
-- linux library cflags and libs
configuration { "linux", "gmake" }
buildoptions {
"-Wno-error=class-memaccess"
}
project "DetourCrowd"
language "C++"
@ -148,7 +154,10 @@ project "RecastDemo"
buildoptions {
"`pkg-config --cflags sdl2`",
"`pkg-config --cflags gl`",
"`pkg-config --cflags glu`"
"`pkg-config --cflags glu`",
"-Wno-ignored-qualifiers",
"-Wno-error=class-memaccess"
}
linkoptions {
"`pkg-config --libs sdl2`",