andrewm@0
|
1 <?xml version="1.0" encoding="UTF-8"?>
|
andrewm@0
|
2
|
andrewm@0
|
3 <JUCERPROJECT id="oWPLeR" name="ringmod" projectType="audioplug" version="1.0.0"
|
andrewm@0
|
4 bundleIdentifier="uk.ac.qmul.eecs.ringmodeffect" buildVST="1"
|
andrewm@0
|
5 buildRTAS="0" buildAU="1" pluginName="Ring Modulator" pluginDesc="Ring Modulator effect"
|
andrewm@0
|
6 pluginManufacturer="Reiss and McPherson" pluginManufacturerCode="JRAM"
|
andrewm@0
|
7 pluginCode="ring" pluginChannelConfigs="{1, 1}, {2, 2}" pluginIsSynth="0"
|
andrewm@0
|
8 pluginWantsMidiIn="0" pluginProducesMidiOut="0" pluginSilenceInIsSilenceOut="1"
|
andrewm@0
|
9 pluginTailLength="0" pluginEditorRequiresKeys="0" pluginAUExportPrefix="ringmodAU"
|
b@1
|
10 pluginAUViewClass="ringmodAU_V1" pluginRTASCategory="" jucerVersion="4.0.2"
|
andrewm@0
|
11 companyName="Reiss and McPherson" buildVST3="0" buildAAX="0"
|
andrewm@0
|
12 aaxIdentifier="com.yourcompany.ringmod" pluginAAXCategory="AAX_ePlugInCategory_Dynamics"
|
andrewm@0
|
13 includeBinaryInAppConfig="1">
|
andrewm@0
|
14 <EXPORTFORMATS>
|
b@1
|
15 <XCODE_MAC targetFolder="Builds/MacOSX" objCExtraSuffix="UMBlvU" vstFolder="~/SDKs/vstsdk2.4"
|
b@1
|
16 postbuildCommand=" # This script takes the build product and copies it to the AU, VST, VST3, RTAS and AAX folders, depending on # which plugin types you've built original=$CONFIGURATION_BUILD_DIR/$FULL_PRODUCT_NAME # this looks inside the binary to detect which platforms are needed.. copyAU=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'AudioUnit' | wc -l` copyVST=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'VSTPlugin' | wc -l` copyVST3=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'GetPluginFactory' | wc -l` copyRTAS=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'CProcess' | wc -l` copyAAX=`nm -g "$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH" | grep -i 'ACFStartup' | wc -l` if [ $copyAU -gt 0 ]; then echo "Copying to AudioUnit folder..." AUDir=~/Library/Audio/Plug-Ins/Components mkdir -p "$AUDir" AU=$AUDir/$PRODUCT_NAME.component if [ -d "$AU" ]; then rm -r "$AU" fi cp -r "$original" "$AU" sed -i "" -e 's/TDMwPTul/BNDLPTul/g' "$AU/Contents/PkgInfo" sed -i "" -e 's/TDMw/BNDL/g' "$AU/Contents/$INFOPLIST_FILE" fi if [ $copyVST -gt 0 ]; then echo "Copying to VST folder..." VSTDir=~/Library/Audio/Plug-Ins/VST mkdir -p "$VSTDir" VST=$VSTDir/$PRODUCT_NAME.vst if [ -d "$VST" ]; then rm -r "$VST" fi cp -r "$original" "$VST" sed -i "" -e 's/TDMwPTul/BNDLPTul/g' "$VST/Contents/PkgInfo" sed -i "" -e 's/TDMw/BNDL/g' "$VST/Contents/$INFOPLIST_FILE" fi if [ $copyVST3 -gt 0 ]; then echo "Copying to VST3 folder..." VST3Dir=~/Library/Audio/Plug-Ins/VST3 mkdir -p "$VST3Dir" VST3=$VST3Dir/$PRODUCT_NAME.vst3 if [ -d "$VST3" ]; then rm -r "$VST3" fi cp -r "$original" "$VST3" sed -i "" -e 's/TDMwPTul/BNDLPTul/g' "$VST3/Contents/PkgInfo" sed -i "" -e 's/TDMw/BNDL/g' "$VST3/Contents/$INFOPLIST_FILE" fi if [ $copyRTAS -gt 0 ]; then echo "Copying to RTAS folder..." RTASDir=/Library/Application\ Support/Digidesign/Plug-Ins if [ -d "$RTASDir" ]; then RTAS=$RTASDir/$PRODUCT_NAME.dpm if [ -d "$RTAS" ]; then rm -r "$RTAS" fi cp -r "$original" "$RTAS" fi fi if [ $copyAAX -gt 0 ]; then echo "Copying to AAX folder..." if [ -d "/Applications/ProTools_3PDev/Plug-Ins" ]; then AAX1="/Applications/ProTools_3PDev/Plug-Ins/$PRODUCT_NAME.aaxplugin" if [ -d "$AAX1" ]; then rm -r "$AAX1" fi cp -R -H "$original" "$AAX1" fi if [ -d "/Library/Application Support/Avid/Audio/Plug-Ins" ]; then AAX2="/Library/Application Support/Avid/Audio/Plug-Ins/$PRODUCT_NAME.aaxplugin" if [ -d "$AAX2" ]; then rm -r "$AAX2" fi cp -R -H "$original" "$AAX2" fi fi ">
|
andrewm@0
|
17 <CONFIGURATIONS>
|
andrewm@0
|
18 <CONFIGURATION name="Debug" isDebug="1" optimisation="1" targetName="ringmod"
|
andrewm@0
|
19 osxSDK="default" osxCompatibility="default" osxArchitecture="64BitUniversal"/>
|
andrewm@0
|
20 <CONFIGURATION name="Release" isDebug="0" optimisation="2" targetName="ringmod"
|
andrewm@0
|
21 osxSDK="default" osxCompatibility="default" osxArchitecture="64BitUniversal"/>
|
andrewm@0
|
22 </CONFIGURATIONS>
|
andrewm@0
|
23 <MODULEPATHS>
|
andrewm@0
|
24 <MODULEPATH id="juce_opengl" path="../../juce/modules"/>
|
andrewm@0
|
25 <MODULEPATH id="juce_gui_extra" path="../../juce/modules"/>
|
andrewm@0
|
26 <MODULEPATH id="juce_gui_basics" path="../../juce/modules"/>
|
andrewm@0
|
27 <MODULEPATH id="juce_graphics" path="../../juce/modules"/>
|
andrewm@0
|
28 <MODULEPATH id="juce_events" path="../../juce/modules"/>
|
andrewm@0
|
29 <MODULEPATH id="juce_data_structures" path="../../juce/modules"/>
|
andrewm@0
|
30 <MODULEPATH id="juce_core" path="../../juce/modules"/>
|
andrewm@0
|
31 <MODULEPATH id="juce_audio_utils" path="../../juce/modules"/>
|
andrewm@0
|
32 <MODULEPATH id="juce_audio_processors" path="../../juce/modules"/>
|
andrewm@0
|
33 <MODULEPATH id="juce_audio_plugin_client" path="../../juce/modules"/>
|
andrewm@0
|
34 <MODULEPATH id="juce_audio_formats" path="../../juce/modules"/>
|
andrewm@0
|
35 <MODULEPATH id="juce_audio_devices" path="../../juce/modules"/>
|
andrewm@0
|
36 <MODULEPATH id="juce_audio_basics" path="../../juce/modules"/>
|
andrewm@0
|
37 </MODULEPATHS>
|
andrewm@0
|
38 </XCODE_MAC>
|
andrewm@0
|
39 </EXPORTFORMATS>
|
andrewm@0
|
40 <MAINGROUP id="NkQfRK" name="ringmod">
|
andrewm@0
|
41 <GROUP id="{4A4D713A-8716-DB71-ED0A-080389925811}" name="Source">
|
andrewm@0
|
42 <FILE id="jlkrmn" name="PluginProcessor.cpp" compile="1" resource="0"
|
andrewm@0
|
43 file="Source/PluginProcessor.cpp"/>
|
andrewm@0
|
44 <FILE id="OZu8fz" name="PluginProcessor.h" compile="0" resource="0"
|
andrewm@0
|
45 file="Source/PluginProcessor.h"/>
|
andrewm@0
|
46 <FILE id="h3QZHS" name="PluginEditor.cpp" compile="1" resource="0"
|
andrewm@0
|
47 file="Source/PluginEditor.cpp"/>
|
andrewm@0
|
48 <FILE id="als4N2" name="PluginEditor.h" compile="0" resource="0" file="Source/PluginEditor.h"/>
|
andrewm@0
|
49 </GROUP>
|
andrewm@0
|
50 </MAINGROUP>
|
andrewm@0
|
51 <MODULES>
|
andrewm@0
|
52 <MODULE id="juce_audio_basics" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
53 <MODULE id="juce_audio_devices" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
54 <MODULE id="juce_audio_formats" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
55 <MODULE id="juce_audio_plugin_client" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
56 <MODULE id="juce_audio_processors" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
57 <MODULE id="juce_audio_utils" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
58 <MODULE id="juce_core" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
59 <MODULE id="juce_data_structures" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
60 <MODULE id="juce_events" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
61 <MODULE id="juce_graphics" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
62 <MODULE id="juce_gui_basics" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
63 <MODULE id="juce_gui_extra" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
64 <MODULE id="juce_opengl" showAllCode="1" useLocalCopy="0"/>
|
andrewm@0
|
65 </MODULES>
|
andrewm@0
|
66 <JUCEOPTIONS JUCE_QUICKTIME="disabled"/>
|
b@1
|
67 <LIVE_SETTINGS>
|
b@1
|
68 <OSX enableCxx11="1"/>
|
b@1
|
69 </LIVE_SETTINGS>
|
andrewm@0
|
70 </JUCERPROJECT>
|