summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Frank Palazzolo <frank@avoidspikes.com>2020-05-20 13:24:22 -0400
committer Vas Crabb <cuavas@users.noreply.github.com>2020-05-27 20:40:47 +1000
commitba62cea8b476f3b61a5d18dd819294d4ce053d5f (patch)
tree417ad2d49385d0a31ae037e6d3cf83bd489ffcb6
parent4d25718380e5ce02b5f94d837fb7b92ee6828269 (diff)
Enable option to generate symbols in Release as well as Debug under Visual Studio. (This is important because debugging Debug builds is too slow)
-rw-r--r--scripts/genie.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua
index 1a7ac03f4aa..33715a6b3e4 100644
--- a/scripts/genie.lua
+++ b/scripts/genie.lua
@@ -505,6 +505,11 @@ configuration { "Release", "vs20*" }
"NoEditAndContinue",
"NoIncrementalLink",
}
+ if _OPTIONS["SYMBOLS"] then
+ flags {
+ "Symbols",
+ }
+ end
configuration { "vsllvm" }
buildoptions {