feat(premake): commented debug build (#298)

This commit is contained in:
Yimura 2022-06-29 23:29:01 +02:00 committed by GitHub
parent 4d19585b20
commit 39056979fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,9 +4,8 @@ workspace "BigBaseV2"
configurations
{
"Debug",
"Release",
"Dist"
-- "Debug", -- Debug isn't buildable and causes confusion for new people
"Release"
}
outputdir = "%{cfg.buildcfg}"
@ -239,10 +238,6 @@ workspace "BigBaseV2"
defines { "DEBUG" }
filter "configurations:Release"
flags { "NoManifest" }
flags { "FatalWarnings", "NoManifest" }
defines { "RELEASE" }
optimize "speed"
filter "configurations:Dist"
flags { "FatalWarnings", "NoManifest" }
defines { "DIST" }
optimize "speed"