summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2018-08-27 17:00:18 +0100
committer smf- <smf-@users.noreply.github.com>2018-08-29 10:21:36 +0100
commit94f0181e592f027a28d257bee368911433a4a1d5 (patch)
tree2bda7ebeb3100c369e46612ac67cf5148560b17f
parentc10977e7d5b29a481623d3da5695106bedfaec84 (diff)
enable edit and continue in visual studio debug builds (nw)
-rw-r--r--scripts/genie.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua
index 12214497f0c..b11b99203d4 100644
--- a/scripts/genie.lua
+++ b/scripts/genie.lua
@@ -468,7 +468,6 @@ configuration { "vs*" }
flags {
"NoPCH",
"ExtraWarnings",
- "NoEditAndContinue",
}
if not _OPTIONS["NOWERROR"] then
flags{
@@ -480,12 +479,14 @@ configuration { "vs*" }
configuration { "Debug", "vs*" }
flags {
"Symbols",
- "NoIncrementalLink",
+ "NoMultiProcessorCompilation",
}
configuration { "Release", "vs*" }
flags {
"Optimize",
+ "NoEditAndContinue",
+ "NoIncrementalLink",
}
-- Force VS2015/17 targets to use bundled SDL2