To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / udpReceive.jucer
History | View | Annotate | Download (9.74 KB)
| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|---|
| 2 |
|
| 3 |
<JUCERPROJECT id="ol0uiN" name="UdpIo" projectType="audioplug" version="1.0.0" |
| 4 |
bundleIdentifier="com.yourcompany.udpReceive" includeBinaryInAppConfig="1" |
| 5 |
buildVST="1" buildVST3="0" buildAU="0" buildRTAS="0" buildAAX="0" |
| 6 |
pluginName="udpReceive" pluginDesc="udpReceive" pluginManufacturer="Bela" |
| 7 |
pluginManufacturerCode="Bela" pluginCode="UDPi" pluginChannelConfigs="{1, 1}, {2, 2}"
|
| 8 |
pluginIsSynth="0" pluginWantsMidiIn="0" pluginProducesMidiOut="0" |
| 9 |
pluginSilenceInIsSilenceOut="0" pluginEditorRequiresKeys="0" |
| 10 |
pluginAUExportPrefix="udpReceiveAU" pluginRTASCategory="" aaxIdentifier="com.yourcompany.udpReceive" |
| 11 |
pluginAAXCategory="AAX_ePlugInCategory_Dynamics" jucerVersion="4.1.0" |
| 12 |
pluginIsMidiEffectPlugin="0"> |
| 13 |
<MAINGROUP id="uxqTRv" name="UdpIo"> |
| 14 |
<GROUP id="{161FE71E-7626-0EAD-6CDE-F95B233D2180}" name="Source">
|
| 15 |
<FILE id="CiTjEk" name="NetworkSend.cpp" compile="1" resource="0" file="Source/NetworkSend.cpp"/> |
| 16 |
<FILE id="ZotobW" name="NetworkSend.h" compile="0" resource="0" file="Source/NetworkSend.h"/> |
| 17 |
<FILE id="NwDErK" name="ReceiveAudioThread.cpp" compile="1" resource="0" |
| 18 |
file="Source/ReceiveAudioThread.cpp"/> |
| 19 |
<FILE id="MqDymM" name="ReceiveAudioThread.h" compile="0" resource="0" |
| 20 |
file="Source/ReceiveAudioThread.h"/> |
| 21 |
<FILE id="KxNSKQ" name="PluginProcessor.cpp" compile="1" resource="0" |
| 22 |
file="Source/PluginProcessor.cpp"/> |
| 23 |
<FILE id="y2mcZL" name="PluginProcessor.h" compile="0" resource="0" |
| 24 |
file="Source/PluginProcessor.h"/> |
| 25 |
<FILE id="TWNAAQ" name="PluginEditor.cpp" compile="1" resource="0" |
| 26 |
file="Source/PluginEditor.cpp"/> |
| 27 |
<FILE id="TfqY8o" name="PluginEditor.h" compile="0" resource="0" file="Source/PluginEditor.h"/> |
| 28 |
</GROUP> |
| 29 |
</MAINGROUP> |
| 30 |
<EXPORTFORMATS> |
| 31 |
<LINUX_MAKE targetFolder="Builds/Linux" vstFolder="~/SDKs/vstsdk2.4" extraDefs="USE_JUCE"> |
| 32 |
<CONFIGURATIONS> |
| 33 |
<CONFIGURATION name="Debug" libraryPath="/usr/X11R6/lib/" isDebug="1" optimisation="1" |
| 34 |
targetName="UdpIo" binaryPath="~/vst/"/> |
| 35 |
<CONFIGURATION name="Release" libraryPath="/usr/X11R6/lib/" isDebug="0" optimisation="3" |
| 36 |
targetName="UdpIo" binaryPath="~/vst/"/> |
| 37 |
</CONFIGURATIONS> |
| 38 |
<MODULEPATHS> |
| 39 |
<MODULEPATH id="juce_video" path="/home/giulio/juce/modules"/> |
| 40 |
<MODULEPATH id="juce_opengl" path="/home/giulio/juce/modules"/> |
| 41 |
<MODULEPATH id="juce_gui_extra" path="/home/giulio/juce/modules"/> |
| 42 |
<MODULEPATH id="juce_gui_basics" path="/home/giulio/juce/modules"/> |
| 43 |
<MODULEPATH id="juce_graphics" path="/home/giulio/juce/modules"/> |
| 44 |
<MODULEPATH id="juce_events" path="/home/giulio/juce/modules"/> |
| 45 |
<MODULEPATH id="juce_data_structures" path="/home/giulio/juce/modules"/> |
| 46 |
<MODULEPATH id="juce_cryptography" path="/home/giulio/juce/modules"/> |
| 47 |
<MODULEPATH id="juce_core" path="/home/giulio/juce/modules"/> |
| 48 |
<MODULEPATH id="juce_audio_processors" path="/home/giulio/juce/modules"/> |
| 49 |
<MODULEPATH id="juce_audio_plugin_client" path="/home/giulio/juce/modules"/> |
| 50 |
<MODULEPATH id="juce_audio_basics" path="/home/giulio/juce/modules"/> |
| 51 |
</MODULEPATHS> |
| 52 |
</LINUX_MAKE> |
| 53 |
<XCODE_MAC targetFolder="Builds/MacOSX" 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 " |
| 54 |
vstFolder="~/SDKs/vstsdk2.4" extraCompilerFlags="-DUSE_JUCE"> |
| 55 |
<CONFIGURATIONS> |
| 56 |
<CONFIGURATION name="Debug" osxSDK="default" osxCompatibility="default" osxArchitecture="default" |
| 57 |
isDebug="1" optimisation="1" targetName="UdpIo"/> |
| 58 |
<CONFIGURATION name="Release" osxSDK="default" osxCompatibility="default" osxArchitecture="default" |
| 59 |
isDebug="0" optimisation="3" targetName="UdpIo"/> |
| 60 |
</CONFIGURATIONS> |
| 61 |
<MODULEPATHS> |
| 62 |
<MODULEPATH id="juce_video" path="../../../../juce/modules"/> |
| 63 |
<MODULEPATH id="juce_opengl" path="../../../../juce/modules"/> |
| 64 |
<MODULEPATH id="juce_gui_extra" path="../../../../juce/modules"/> |
| 65 |
<MODULEPATH id="juce_gui_basics" path="../../../../juce/modules"/> |
| 66 |
<MODULEPATH id="juce_graphics" path="../../../../juce/modules"/> |
| 67 |
<MODULEPATH id="juce_events" path="../../../../juce/modules"/> |
| 68 |
<MODULEPATH id="juce_data_structures" path="../../../../juce/modules"/> |
| 69 |
<MODULEPATH id="juce_cryptography" path="../../../../juce/modules"/> |
| 70 |
<MODULEPATH id="juce_core" path="../../../../juce/modules"/> |
| 71 |
<MODULEPATH id="juce_audio_processors" path="../../../../juce/modules"/> |
| 72 |
<MODULEPATH id="juce_audio_plugin_client" path="../../../../juce/modules"/> |
| 73 |
<MODULEPATH id="juce_audio_basics" path="../../../../juce/modules"/> |
| 74 |
</MODULEPATHS> |
| 75 |
</XCODE_MAC> |
| 76 |
</EXPORTFORMATS> |
| 77 |
<MODULES> |
| 78 |
<MODULES id="juce_audio_basics" showAllCode="1" useLocalCopy="0"/> |
| 79 |
<MODULES id="juce_audio_plugin_client" showAllCode="1" useLocalCopy="0"/> |
| 80 |
<MODULES id="juce_audio_processors" showAllCode="1" useLocalCopy="0"/> |
| 81 |
<MODULES id="juce_core" showAllCode="1" useLocalCopy="0"/> |
| 82 |
<MODULES id="juce_cryptography" showAllCode="1" useLocalCopy="0"/> |
| 83 |
<MODULES id="juce_data_structures" showAllCode="1" useLocalCopy="0"/> |
| 84 |
<MODULES id="juce_events" showAllCode="1" useLocalCopy="0"/> |
| 85 |
<MODULES id="juce_graphics" showAllCode="1" useLocalCopy="0"/> |
| 86 |
<MODULES id="juce_gui_basics" showAllCode="1" useLocalCopy="0"/> |
| 87 |
<MODULES id="juce_gui_extra" showAllCode="1" useLocalCopy="0"/> |
| 88 |
<MODULES id="juce_opengl" showAllCode="1" useLocalCopy="0"/> |
| 89 |
<MODULES id="juce_video" showAllCode="1" useLocalCopy="0"/> |
| 90 |
</MODULES> |
| 91 |
<JUCEOPTIONS JUCE_QUICKTIME="disabled"/> |
| 92 |
</JUCERPROJECT> |