annotate effects/compressor/Compressor.jucer @ 1:04e171d2a747 tip

JUCE 4 compatible. Standardised paths on Mac: modules '../../juce/modules'; VST folder '~/SDKs/vstsdk2.4' (JUCE default). Replaced deprecated 'getSampleData(channel)'; getToggleState(...); setToggleState(...); setSelectedId(...). Removed unused variables. Ignore JUCE code and build files.
author Brecht De Man <b.deman@qmul.ac.uk>
date Sun, 22 Nov 2015 15:23:40 +0000
parents e32fe563e124
children
rev   line source
andrewm@0 1 <?xml version="1.0" encoding="UTF-8"?>
andrewm@0 2
andrewm@0 3 <JUCERPROJECT id="MBaMzn" name="compressor" projectType="audioplug" version="1.0.0"
andrewm@0 4 bundleIdentifier="uk.ac.qmul.eecs.compressor" buildVST="1" buildRTAS="0"
andrewm@0 5 buildAU="1" pluginName="Compressor" pluginDesc="Compressor" pluginManufacturer="Reiss and McPherson"
andrewm@0 6 pluginManufacturerCode="JRAM" pluginCode="comp" pluginChannelConfigs="{2, 2}, {1, 1}"
andrewm@0 7 pluginIsSynth="0" pluginWantsMidiIn="0" pluginProducesMidiOut="0"
andrewm@0 8 pluginSilenceInIsSilenceOut="1" pluginTailLength="0" pluginEditorRequiresKeys="0"
andrewm@0 9 pluginAUExportPrefix="CompressorAU" pluginAUViewClass="CompressorAU_V1"
b@1 10 pluginRTASCategory="" jucerVersion="4.0.2" aaxIdentifier="uk.ac.qmul.eecs.compressor"
andrewm@0 11 buildVST3="0" buildAAX="0" pluginAAXCategory="AAX_ePlugInCategory_Dynamics"
andrewm@0 12 includeBinaryInAppConfig="1" companyName="Reiss and McPherson">
andrewm@0 13 <EXPORTFORMATS>
andrewm@0 14 <VS2010 targetFolder="Builds/VisualStudio2010" libraryType="1" vstFolder="..\..\vstsdk2.4">
andrewm@0 15 <CONFIGURATIONS>
andrewm@0 16 <CONFIGURATION name="Release" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
andrewm@0 17 isDebug="0" optimisation="2" targetName="Compressor"/>
andrewm@0 18 </CONFIGURATIONS>
andrewm@0 19 <MODULEPATHS>
andrewm@0 20 <MODULEPATH id="juce_video" path="../../juce/modules"/>
andrewm@0 21 <MODULEPATH id="juce_opengl" path="../../juce/modules"/>
andrewm@0 22 <MODULEPATH id="juce_gui_extra" path="../../juce/modules"/>
andrewm@0 23 <MODULEPATH id="juce_gui_basics" path="../../juce/modules"/>
andrewm@0 24 <MODULEPATH id="juce_graphics" path="../../juce/modules"/>
andrewm@0 25 <MODULEPATH id="juce_events" path="../../juce/modules"/>
andrewm@0 26 <MODULEPATH id="juce_data_structures" path="../../juce/modules"/>
andrewm@0 27 <MODULEPATH id="juce_cryptography" path="../../juce/modules"/>
andrewm@0 28 <MODULEPATH id="juce_core" path="../../juce/modules"/>
andrewm@0 29 <MODULEPATH id="juce_audio_processors" path="../../juce/modules"/>
andrewm@0 30 <MODULEPATH id="juce_audio_plugin_client" path="../../juce/modules"/>
andrewm@0 31 <MODULEPATH id="juce_audio_formats" path="../../juce/modules"/>
andrewm@0 32 <MODULEPATH id="juce_audio_devices" path="../../juce/modules"/>
andrewm@0 33 <MODULEPATH id="juce_audio_basics" path="../../juce/modules"/>
andrewm@0 34 </MODULEPATHS>
andrewm@0 35 </VS2010>
b@1 36 <XCODE_MAC targetFolder="Builds/MacOSX" vstFolder="~/SDKs/vstsdk2.4" postbuildCommand="&#13;&#10;# This script takes the build product and copies it to the AU, VST, VST3, RTAS and AAX folders, depending on &#13;&#10;# which plugin types you've built&#13;&#10;&#13;&#10;original=$CONFIGURATION_BUILD_DIR/$FULL_PRODUCT_NAME&#13;&#10;&#13;&#10;# this looks inside the binary to detect which platforms are needed.. &#13;&#10;copyAU=&#96;nm -g &quot;$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH&quot; | grep -i 'AudioUnit' | wc -l&#96;&#13;&#10;copyVST=&#96;nm -g &quot;$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH&quot; | grep -i 'VSTPlugin' | wc -l&#96;&#13;&#10;copyVST3=&#96;nm -g &quot;$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH&quot; | grep -i 'GetPluginFactory' | wc -l&#96;&#13;&#10;copyRTAS=&#96;nm -g &quot;$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH&quot; | grep -i 'CProcess' | wc -l&#96;&#13;&#10;copyAAX=&#96;nm -g &quot;$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH&quot; | grep -i 'ACFStartup' | wc -l&#96;&#13;&#10;&#13;&#10;if [ $copyAU -gt 0 ]; then&#13;&#10; echo &quot;Copying to AudioUnit folder...&quot;&#13;&#10; AU=~/Library/Audio/Plug-Ins/Components/$PRODUCT_NAME.component&#13;&#10; if [ -d &quot;$AU&quot; ]; then &#13;&#10; rm -r &quot;$AU&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$AU&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMwPTul/BNDLPTul/g' &quot;$AU/Contents/PkgInfo&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMw/BNDL/g' &quot;$AU/Contents/$INFOPLIST_FILE&quot;&#13;&#10;&#13;&#10; # Fix info.plist for AUs built with Xcode 3&#13;&#10; if [ -f &quot;$DEVELOPER_DIR/Library/Developer/CoreAudio/AudioUnits/AUPublic/AUBase/AUPlugInDispatch.cpp&quot; ]; then&#13;&#10; echo&#13;&#10; else&#13;&#10; echo &quot;Removing AudioComponents entry from Info.plist because this is not a new-format AU&quot;&#13;&#10; /usr/libexec/PlistBuddy -c &quot;Delete AudioComponents&quot; &quot;$AU/Contents/Info.plist&quot;&#13;&#10; fi&#13;&#10;fi&#13;&#10;&#13;&#10;if [ $copyVST -gt 0 ]; then&#13;&#10; echo &quot;Copying to VST folder...&quot;&#13;&#10; VST=~/Library/Audio/Plug-Ins/VST/$PRODUCT_NAME.vst&#13;&#10; if [ -d &quot;$VST&quot; ]; then &#13;&#10; rm -r &quot;$VST&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$VST&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMwPTul/BNDLPTul/g' &quot;$VST/Contents/PkgInfo&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMw/BNDL/g' &quot;$VST/Contents/$INFOPLIST_FILE&quot;&#13;&#10;fi&#13;&#10;&#13;&#10;if [ $copyVST3 -gt 0 ]; then&#13;&#10; echo &quot;Copying to VST3 folder...&quot;&#13;&#10; VST3=~/Library/Audio/Plug-Ins/VST3/$PRODUCT_NAME.vst3&#13;&#10; if [ -d &quot;$VST3&quot; ]; then &#13;&#10; rm -r &quot;$VST3&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$VST3&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMwPTul/BNDLPTul/g' &quot;$VST3/Contents/PkgInfo&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMw/BNDL/g' &quot;$VST3/Contents/$INFOPLIST_FILE&quot;&#13;&#10;fi&#13;&#10;&#13;&#10;if [ $copyRTAS -gt 0 ]; then&#13;&#10; echo &quot;Copying to RTAS folder...&quot;&#13;&#10; RTAS=/Library/Application\ Support/Digidesign/Plug-Ins/$PRODUCT_NAME.dpm&#13;&#10; if [ -d &quot;$RTAS&quot; ]; then&#13;&#10; rm -r &quot;$RTAS&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$RTAS&quot;&#13;&#10;fi&#13;&#10;&#13;&#10;if [ $copyAAX -gt 0 ]; then&#13;&#10; echo &quot;Copying to AAX folder...&quot;&#13;&#10;&#13;&#10; if [ -d &quot;/Applications/ProTools_3PDev/Plug-Ins&quot; ]; then&#13;&#10; AAX1=&quot;/Applications/ProTools_3PDev/Plug-Ins/$PRODUCT_NAME.aaxplugin&quot;&#13;&#10;&#13;&#10; if [ -d &quot;$AAX1&quot; ]; then&#13;&#10; rm -r &quot;$AAX1&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$AAX1&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; if [ -d &quot;/Library/Application Support/Avid/Audio/Plug-Ins&quot; ]; then&#13;&#10; AAX2=&quot;/Library/Application Support/Avid/Audio/Plug-Ins/$PRODUCT_NAME.aaxplugin&quot;&#13;&#10;&#13;&#10; if [ -d &quot;$AAX2&quot; ]; then&#13;&#10; rm -r &quot;$AAX2&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$AAX2&quot;&#13;&#10; fi&#13;&#10;fi&#13;&#10;">
andrewm@0 37 <CONFIGURATIONS>
andrewm@0 38 <CONFIGURATION name="Debug" osxSDK="default" osxCompatibility="default" osxArchitecture="64BitUniversal"
andrewm@0 39 isDebug="1" optimisation="1" targetName="compressor"/>
andrewm@0 40 <CONFIGURATION name="Release" osxSDK="default" osxCompatibility="default" osxArchitecture="64BitUniversal"
andrewm@0 41 isDebug="0" optimisation="2" targetName="compressor"/>
andrewm@0 42 </CONFIGURATIONS>
andrewm@0 43 <MODULEPATHS>
andrewm@0 44 <MODULEPATH id="juce_video" path="../../juce/modules"/>
andrewm@0 45 <MODULEPATH id="juce_opengl" path="../../juce/modules"/>
andrewm@0 46 <MODULEPATH id="juce_gui_extra" path="../../juce/modules"/>
andrewm@0 47 <MODULEPATH id="juce_gui_basics" path="../../juce/modules"/>
andrewm@0 48 <MODULEPATH id="juce_graphics" path="../../juce/modules"/>
andrewm@0 49 <MODULEPATH id="juce_events" path="../../juce/modules"/>
andrewm@0 50 <MODULEPATH id="juce_data_structures" path="../../juce/modules"/>
andrewm@0 51 <MODULEPATH id="juce_cryptography" path="../../juce/modules"/>
andrewm@0 52 <MODULEPATH id="juce_core" path="../../juce/modules"/>
andrewm@0 53 <MODULEPATH id="juce_audio_processors" path="../../juce/modules"/>
andrewm@0 54 <MODULEPATH id="juce_audio_plugin_client" path="../../juce/modules"/>
andrewm@0 55 <MODULEPATH id="juce_audio_formats" path="../../juce/modules"/>
andrewm@0 56 <MODULEPATH id="juce_audio_devices" path="../../juce/modules"/>
andrewm@0 57 <MODULEPATH id="juce_audio_basics" path="../../juce/modules"/>
andrewm@0 58 </MODULEPATHS>
andrewm@0 59 </XCODE_MAC>
andrewm@0 60 </EXPORTFORMATS>
andrewm@0 61 <MAINGROUP id="R56iUz" name="compressor">
andrewm@0 62 <GROUP id="{839367BB-53A9-7137-E15E-D2DD800BA26D}" name="Source">
andrewm@0 63 <FILE id="RUKlAk" name="PluginProcessor.cpp" compile="1" resource="0"
andrewm@0 64 file="Source/PluginProcessor.cpp"/>
andrewm@0 65 <FILE id="uEbtTW" name="PluginProcessor.h" compile="0" resource="0"
andrewm@0 66 file="Source/PluginProcessor.h"/>
andrewm@0 67 <FILE id="vo9R27" name="PluginEditor.cpp" compile="1" resource="0"
andrewm@0 68 file="Source/PluginEditor.cpp"/>
andrewm@0 69 <FILE id="IiR9iQ" name="PluginEditor.h" compile="0" resource="0" file="Source/PluginEditor.h"/>
andrewm@0 70 </GROUP>
andrewm@0 71 </MAINGROUP>
andrewm@0 72 <MODULES>
andrewm@0 73 <MODULE id="juce_audio_basics" showAllCode="1" useLocalCopy="0"/>
andrewm@0 74 <MODULE id="juce_audio_devices" showAllCode="1" useLocalCopy="0"/>
andrewm@0 75 <MODULE id="juce_audio_formats" showAllCode="1" useLocalCopy="0"/>
andrewm@0 76 <MODULE id="juce_audio_plugin_client" showAllCode="1" useLocalCopy="0"/>
andrewm@0 77 <MODULE id="juce_audio_processors" showAllCode="1" useLocalCopy="0"/>
andrewm@0 78 <MODULE id="juce_core" showAllCode="1" useLocalCopy="0"/>
andrewm@0 79 <MODULE id="juce_cryptography" showAllCode="1" useLocalCopy="0"/>
andrewm@0 80 <MODULE id="juce_data_structures" showAllCode="1" useLocalCopy="0"/>
andrewm@0 81 <MODULE id="juce_events" showAllCode="1" useLocalCopy="0"/>
andrewm@0 82 <MODULE id="juce_graphics" showAllCode="1" useLocalCopy="0"/>
andrewm@0 83 <MODULE id="juce_gui_basics" showAllCode="1" useLocalCopy="0"/>
andrewm@0 84 <MODULE id="juce_gui_extra" showAllCode="1" useLocalCopy="0"/>
andrewm@0 85 <MODULE id="juce_opengl" showAllCode="1" useLocalCopy="0"/>
andrewm@0 86 <MODULE id="juce_video" showAllCode="1" useLocalCopy="0"/>
andrewm@0 87 </MODULES>
andrewm@0 88 <JUCEOPTIONS JUCE_QUICKTIME="disabled"/>
b@1 89 <LIVE_SETTINGS>
b@1 90 <OSX enableCxx11="1"/>
b@1 91 </LIVE_SETTINGS>
andrewm@0 92 </JUCERPROJECT>