1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00

Projucer: Remove old code that disabled "JUCE_QUICKTIME" flag

This commit is contained in:
ed 2018-01-08 15:05:33 +00:00
parent 81a76efcd3
commit 6e44578a51

View file

@ -61,9 +61,6 @@ struct AudioPluginAppWizard : public NewProjectWizard
project.setProjectType (ProjectType_AudioPlugin::getTypeName());
project.getProjectValue (Ids::buildStandalone) = true;
Project::Item sourceGroup (createSourceGroup (project));
project.getConfigFlag ("JUCE_QUICKTIME") = false; // disabled because it interferes with RTAS build on PC
setExecutableNameForAllTargets (project, File::createLegalFileName (appTitle));
String appHeaders (CodeHelpers::createIncludeStatement (project.getAppIncludeFile(), filterCppFile));
@ -103,6 +100,8 @@ struct AudioPluginAppWizard : public NewProjectWizard
if (! FileHelpers::overwriteFileWithNewDataIfDifferent (editorHFile, editorH))
failedFiles.add (editorHFile.getFullPathName());
Project::Item sourceGroup (createSourceGroup (project));
sourceGroup.addFileAtIndex (filterCppFile, -1, true);
sourceGroup.addFileAtIndex (filterHFile, -1, false);
sourceGroup.addFileAtIndex (editorCppFile, -1, true);