I got two issues since i tried migrating from 2008 to 2010
Introjucer is crashing when pressing the “Save and launch in VS” button (i deleted the VS2008 exporter and the VS2010 is the only one in the project)
case CommandIDs::saveAndOpenInIDE:
if (project != nullptr && project->save (true, true) == FileBasedDocument::savedOk)
{
ScopedPointer <ProjectExporter> exporter (ProjectExporter::createPlatformDefaultExporter (*project));
exporter->launchProject(); <--- CRASH here
}
break;
Second it seems that the compiler parameters don’t get passed “Extra compiler flags”, i tried a include statement
/I"BlahBlah"
and a /MP8 statement to do parallel builds and nothing gets to Visual Studio.