unused var in premake script

This commit is contained in:
otavepto 2024-05-24 05:22:17 +03:00
parent 452b781fc0
commit 4606f5e39e

View File

@ -49,10 +49,8 @@ end)
local os_iden = '' -- identifier
if os.target() == "windows" then
os_iden = 'win'
deps_folder = "build/deps/win"
elseif os.target() == "linux" then
os_iden = 'linux'
deps_folder = "build/deps/linux"
else
error('Unsupported os target: "' .. os.target() .. '"')
end
@ -376,7 +374,6 @@ filter { "configurations:*debug" }
defines {
"DEBUG",
}
-- Windows defines
filter { "system:windows", }
defines {