CREATE_PROJECT: Disable edit and continue in the scummvm project
Edit and continue is not compatible with the coroutine code. Previously, it was disabled in the tinsel project only, but now that the coroutine code has been moved into common, we need to disable edit and continue in the scummvm project instead
This commit is contained in:
parent
6fb9511c93
commit
9feac7215e
2 changed files with 3 additions and 3 deletions
|
@ -110,7 +110,7 @@ void VisualStudioProvider::createProjectFile(const std::string &name, const std:
|
|||
|
||||
std::string toolConfig;
|
||||
toolConfig = (!warnings.empty() ? "DisableSpecificWarnings=\"" + warnings + "\"" : "");
|
||||
toolConfig += (name == "tinsel" ? "DebugInformationFormat=\"3\" " : "");
|
||||
toolConfig += (name == "scummvm" ? "DebugInformationFormat=\"3\" " : "");
|
||||
toolConfig += (name == "sword25" ? "DisableLanguageExtensions=\"false\" " : "");
|
||||
toolConfig += (name == "grim" ? "DisableLanguageExtensions=\"false\" " : "");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue