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:
parent
81a76efcd3
commit
6e44578a51
1 changed files with 2 additions and 3 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue