-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMidiSelect.jucer
117 lines (116 loc) · 11.5 KB
/
MidiSelect.jucer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="UTF-8"?>
<JUCERPROJECT id="BjlvYI" name="MidiSelect" projectType="audioplug" version="1.0.0"
bundleIdentifier="com.osakared.MidiSelect" includeBinaryInAppConfig="1"
buildVST="1" buildVST3="0" buildAU="0" buildRTAS="0" buildAAX="0"
pluginName="MidiSelect" pluginDesc="MidiSelect" pluginManufacturer="osakared"
pluginManufacturerCode="Manu" pluginCode="Bjlv" pluginChannelConfigs="{1, 1}, {2, 2}"
pluginIsSynth="0" pluginWantsMidiIn="1" pluginProducesMidiOut="1"
pluginSilenceInIsSilenceOut="1" pluginEditorRequiresKeys="0"
pluginAUExportPrefix="NewProjectAU" pluginRTASCategory="" aaxIdentifier="com.osakared.MidiSelect"
pluginAAXCategory="AAX_ePlugInCategory_Dynamics" jucerVersion="4.2.4"
companyName="Osaka Red LLC" companyWebsite="http://osakared.com"
buildAUv3="0" pluginIsMidiEffectPlugin="0">
<MAINGROUP id="PrxE8E" name="MidiSelect">
<GROUP id="{8C6C2FB5-88B4-509B-D4A5-4EBB02E1537C}" name="Source">
<FILE id="iUbyaf" name="PluginProcessor.cpp" compile="1" resource="0"
file="Source/PluginProcessor.cpp"/>
<FILE id="r7lGlG" name="PluginProcessor.h" compile="0" resource="0"
file="Source/PluginProcessor.h"/>
</GROUP>
</MAINGROUP>
<EXPORTFORMATS>
<XCODE_MAC targetFolder="Builds/MacOSX" vstFolder="vstsdk2.4" 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" # Fix info.plist for AUs built with Xcode 3 if [ -f "$DEVELOPER_DIR/Library/Developer/CoreAudio/AudioUnits/AUPublic/AUBase/AUPlugInDispatch.cpp" ]; then echo else echo "Removing AudioComponents entry from Info.plist because this is not a new-format AU" /usr/libexec/PlistBuddy -c "Delete AudioComponents" "$AU/Contents/Info.plist" fi 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 "
vst3Folder="">
<CONFIGURATIONS>
<CONFIGURATION name="Debug" osxSDK="default" osxCompatibility="default" osxArchitecture="default"
isDebug="1" optimisation="1" targetName="NewProject"/>
<CONFIGURATION name="Release" osxSDK="default" osxCompatibility="default" osxArchitecture="default"
isDebug="0" optimisation="3" targetName="NewProject"/>
</CONFIGURATIONS>
<MODULEPATHS>
<MODULEPATH id="juce_core" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_events" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_graphics" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_data_structures" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_gui_basics" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_gui_extra" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_cryptography" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_video" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_opengl" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_audio_basics" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_audio_devices" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_audio_formats" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_audio_processors" path="../../Downloads/JUCE-OSX/modules"/>
<MODULEPATH id="juce_audio_plugin_client" path="../../Downloads/JUCE-OSX/modules"/>
</MODULEPATHS>
</XCODE_MAC>
<LINUX_MAKE targetFolder="Builds/LinuxMakefile">
<CONFIGURATIONS>
<CONFIGURATION name="Debug" libraryPath="/usr/X11R6/lib/" isDebug="1" optimisation="1"
targetName="MidiSelect"/>
<CONFIGURATION name="Release" libraryPath="/usr/X11R6/lib/" isDebug="0" optimisation="3"
targetName="MidiSelect"/>
</CONFIGURATIONS>
<MODULEPATHS>
<MODULEPATH id="juce_video" path="../../juce"/>
<MODULEPATH id="juce_opengl" path="../../juce"/>
<MODULEPATH id="juce_gui_extra" path="../../juce"/>
<MODULEPATH id="juce_gui_basics" path="../../juce"/>
<MODULEPATH id="juce_graphics" path="../../juce"/>
<MODULEPATH id="juce_events" path="../../juce"/>
<MODULEPATH id="juce_data_structures" path="../../juce"/>
<MODULEPATH id="juce_cryptography" path="../../juce"/>
<MODULEPATH id="juce_core" path="../../juce"/>
<MODULEPATH id="juce_audio_processors" path="../../juce"/>
<MODULEPATH id="juce_audio_plugin_client" path="../../juce"/>
<MODULEPATH id="juce_audio_formats" path="../../juce"/>
<MODULEPATH id="juce_audio_devices" path="../../juce"/>
<MODULEPATH id="juce_audio_basics" path="../../juce"/>
</MODULEPATHS>
</LINUX_MAKE>
<VS2012 targetFolder="Builds/VisualStudio2012" vst3Folder="..\vstsdk2.4">
<CONFIGURATIONS>
<CONFIGURATION name="Debug" winWarningLevel="4" generateManifest="1" winArchitecture="x64"
isDebug="1" optimisation="1" targetName="MidiSelect"/>
<CONFIGURATION name="Release" winWarningLevel="4" generateManifest="1" winArchitecture="x64"
isDebug="0" optimisation="3" targetName="MidiSelect"/>
</CONFIGURATIONS>
<MODULEPATHS>
<MODULEPATH id="juce_video" path="..\JUCE\modules"/>
<MODULEPATH id="juce_opengl" path="..\JUCE\modules"/>
<MODULEPATH id="juce_gui_extra" path="..\JUCE\modules"/>
<MODULEPATH id="juce_gui_basics" path="..\JUCE\modules"/>
<MODULEPATH id="juce_graphics" path="..\JUCE\modules"/>
<MODULEPATH id="juce_events" path="..\JUCE\modules"/>
<MODULEPATH id="juce_data_structures" path="..\JUCE\modules"/>
<MODULEPATH id="juce_cryptography" path="..\JUCE\modules"/>
<MODULEPATH id="juce_core" path="..\JUCE\modules"/>
<MODULEPATH id="juce_audio_processors" path="..\JUCE\modules"/>
<MODULEPATH id="juce_audio_plugin_client" path="..\JUCE\modules"/>
<MODULEPATH id="juce_audio_formats" path="..\JUCE\modules"/>
<MODULEPATH id="juce_audio_devices" path="..\JUCE\modules"/>
<MODULEPATH id="juce_audio_basics" path="..\JUCE\modules"/>
</MODULEPATHS>
</VS2012>
</EXPORTFORMATS>
<MODULES>
<MODULES id="juce_audio_basics" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_audio_devices" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_audio_formats" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_audio_plugin_client" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_audio_processors" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_core" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_cryptography" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_data_structures" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_events" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_graphics" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_gui_basics" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_gui_extra" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_opengl" showAllCode="1" useLocalCopy="1"/>
<MODULES id="juce_video" showAllCode="1" useLocalCopy="1"/>
</MODULES>
<JUCEOPTIONS JUCE_QUICKTIME="disabled" JUCE_PLUGINHOST_VST="enabled" JUCE_PLUGINHOST_VST3="disabled"/>
<LIVE_SETTINGS>
<WINDOWS/>
</LIVE_SETTINGS>
</JUCERPROJECT>