3rdparty: Suppress unused variabe warnings for SQLite3 - clang 15.0.5 for Windows considers sqlite3_os_type unused.

This commit is contained in:
Vas Crabb 2023-01-13 04:04:57 +11:00
parent d3b9bbba6f
commit b97bda1282

View File

@ -980,6 +980,7 @@ project "sqlite3"
"-Wno-discarded-qualifiers",
"-Wno-undef",
"-Wno-unused-but-set-variable",
"-Wno-unused-variable",
}
if _OPTIONS["gcc"]~=nil then
if string.find(_OPTIONS["gcc"], "clang") or string.find(_OPTIONS["gcc"], "asmjs") or string.find(_OPTIONS["gcc"], "android") then