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