diff options
author | 2020-05-20 13:24:22 -0400 | |
---|---|---|
committer | 2020-05-27 20:40:47 +1000 | |
commit | ba62cea8b476f3b61a5d18dd819294d4ce053d5f (patch) | |
tree | 417ad2d49385d0a31ae037e6d3cf83bd489ffcb6 /scripts/genie.lua | |
parent | 4d25718380e5ce02b5f94d837fb7b92ee6828269 (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)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 5 |
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 { |