Release builds also need symbols.
This commit is contained in:
parent
76efd13301
commit
45816d801b
|
@ -34,7 +34,6 @@ filter("configurations:Checked")
|
||||||
defines({
|
defines({
|
||||||
"DEBUG",
|
"DEBUG",
|
||||||
})
|
})
|
||||||
flags({"Symbols"})
|
|
||||||
runtime("Debug")
|
runtime("Debug")
|
||||||
filter({"configurations:Checked", "platforms:Windows"})
|
filter({"configurations:Checked", "platforms:Windows"})
|
||||||
buildoptions({
|
buildoptions({
|
||||||
|
@ -47,7 +46,6 @@ filter("configurations:Debug")
|
||||||
"DEBUG",
|
"DEBUG",
|
||||||
"_NO_DEBUG_HEAP=1",
|
"_NO_DEBUG_HEAP=1",
|
||||||
})
|
})
|
||||||
flags({"Symbols"})
|
|
||||||
runtime("Release")
|
runtime("Release")
|
||||||
linkoptions({"/NODEFAULTLIB:MSVCRTD"})
|
linkoptions({"/NODEFAULTLIB:MSVCRTD"})
|
||||||
|
|
||||||
|
@ -86,6 +84,7 @@ filter("platforms:Windows")
|
||||||
})
|
})
|
||||||
flags({
|
flags({
|
||||||
"NoMinimalRebuild", -- Required for /MP above.
|
"NoMinimalRebuild", -- Required for /MP above.
|
||||||
|
"Symbols",
|
||||||
})
|
})
|
||||||
defines({
|
defines({
|
||||||
"_CRT_NONSTDC_NO_DEPRECATE",
|
"_CRT_NONSTDC_NO_DEPRECATE",
|
||||||
|
|
Loading…
Reference in New Issue