comparison effects/empty/empty.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
comparison
equal deleted inserted replaced
0:e32fe563e124 1:04e171d2a747
5 buildAU="1" pluginName="Empty" pluginDesc="Blank pass-through effect" 5 buildAU="1" pluginName="Empty" pluginDesc="Blank pass-through effect"
6 pluginManufacturer="Reiss and McPherson" pluginManufacturerCode="JRAM" 6 pluginManufacturer="Reiss and McPherson" pluginManufacturerCode="JRAM"
7 pluginCode="empt" pluginChannelConfigs="{1, 1}, {2, 2}" pluginIsSynth="0" 7 pluginCode="empt" pluginChannelConfigs="{1, 1}, {2, 2}" pluginIsSynth="0"
8 pluginWantsMidiIn="0" pluginProducesMidiOut="0" pluginSilenceInIsSilenceOut="1" 8 pluginWantsMidiIn="0" pluginProducesMidiOut="0" pluginSilenceInIsSilenceOut="1"
9 pluginTailLength="0" pluginEditorRequiresKeys="0" pluginAUExportPrefix="emptyAU" 9 pluginTailLength="0" pluginEditorRequiresKeys="0" pluginAUExportPrefix="emptyAU"
10 pluginAUViewClass="emptyAU_V1" pluginRTASCategory="" jucerVersion="3.1.0" 10 pluginAUViewClass="emptyAU_V1" pluginRTASCategory="" jucerVersion="4.0.2"
11 companyName="Reiss and McPherson" buildVST3="0" buildAAX="0" 11 companyName="Reiss and McPherson" buildVST3="0" buildAAX="0"
12 aaxIdentifier="com.yourcompany.empty" pluginAAXCategory="AAX_ePlugInCategory_Dynamics" 12 aaxIdentifier="com.yourcompany.empty" pluginAAXCategory="AAX_ePlugInCategory_Dynamics"
13 includeBinaryInAppConfig="1"> 13 includeBinaryInAppConfig="1">
14 <EXPORTFORMATS> 14 <EXPORTFORMATS>
15 <XCODE_MAC targetFolder="Builds/MacOSX" objCExtraSuffix="RZnSpY" vstFolder="../../vstsdk2.4"> 15 <XCODE_MAC targetFolder="Builds/MacOSX" objCExtraSuffix="RZnSpY" vstFolder="~/SDKs/vstsdk2.4"
16 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; AUDir=~/Library/Audio/Plug-Ins/Components&#13;&#10; mkdir -p &quot;$AUDir&quot;&#13;&#10; AU=$AUDir/$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;fi&#13;&#10;&#13;&#10;if [ $copyVST -gt 0 ]; then&#13;&#10; echo &quot;Copying to VST folder...&quot;&#13;&#10; VSTDir=~/Library/Audio/Plug-Ins/VST&#13;&#10; mkdir -p &quot;$VSTDir&quot;&#13;&#10; VST=$VSTDir/$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; VST3Dir=~/Library/Audio/Plug-Ins/VST3&#13;&#10; mkdir -p &quot;$VST3Dir&quot;&#13;&#10; VST3=$VST3Dir/$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; RTASDir=/Library/Application\ Support/Digidesign/Plug-Ins&#13;&#10; if [ -d &quot;$RTASDir&quot; ]; then&#13;&#10; RTAS=$RTASDir/$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;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 -H &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 -H &quot;$original&quot; &quot;$AAX2&quot;&#13;&#10; fi&#13;&#10;fi&#13;&#10;">
16 <CONFIGURATIONS> 17 <CONFIGURATIONS>
17 <CONFIGURATION name="Debug" isDebug="1" optimisation="1" targetName="empty" 18 <CONFIGURATION name="Debug" isDebug="1" optimisation="1" targetName="empty"
18 osxSDK="default" osxCompatibility="default" osxArchitecture="64BitUniversal"/> 19 osxSDK="default" osxCompatibility="default" osxArchitecture="64BitUniversal"/>
19 <CONFIGURATION name="Release" isDebug="0" optimisation="2" targetName="empty" 20 <CONFIGURATION name="Release" isDebug="0" optimisation="2" targetName="empty"
20 osxSDK="default" osxCompatibility="default" osxArchitecture="64BitUniversal"/> 21 osxSDK="default" osxCompatibility="default" osxArchitecture="64BitUniversal"/>
61 <MODULE id="juce_gui_basics" showAllCode="1" useLocalCopy="0"/> 62 <MODULE id="juce_gui_basics" showAllCode="1" useLocalCopy="0"/>
62 <MODULE id="juce_gui_extra" showAllCode="1" useLocalCopy="0"/> 63 <MODULE id="juce_gui_extra" showAllCode="1" useLocalCopy="0"/>
63 <MODULE id="juce_opengl" showAllCode="1" useLocalCopy="0"/> 64 <MODULE id="juce_opengl" showAllCode="1" useLocalCopy="0"/>
64 </MODULES> 65 </MODULES>
65 <JUCEOPTIONS JUCE_QUICKTIME="disabled"/> 66 <JUCEOPTIONS JUCE_QUICKTIME="disabled"/>
67 <LIVE_SETTINGS>
68 <OSX enableCxx11="1"/>
69 </LIVE_SETTINGS>
66 </JUCERPROJECT> 70 </JUCERPROJECT>