CREATEPROJECT: Enable language extensions for Myst 3. Fixes #465.

This commit is contained in:
Bastien Bouclet 2012-01-10 20:04:05 +01:00
parent 7f28d71fdd
commit fb429defb2
2 changed files with 3 additions and 2 deletions

View file

@ -113,6 +113,7 @@ void VisualStudioProvider::createProjectFile(const std::string &name, const std:
toolConfig += (name == "tinsel" ? "DebugInformationFormat=\"3\" " : "");
toolConfig += (name == "sword25" ? "DisableLanguageExtensions=\"false\" " : "");
toolConfig += (name == "grim" ? "DisableLanguageExtensions=\"false\" " : "");
toolConfig += (name == "myst3" ? "DisableLanguageExtensions=\"false\" " : "");
// Win32
outputConfiguration(setup, project, toolConfig, "Debug", "Win32", "");