This repository has been archived by the owner on Mar 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathConvolver.jucer
75 lines (74 loc) · 7.9 KB
/
Convolver.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
<?xml version="1.0" encoding="UTF-8"?>
<JUCERPROJECT id="zCriMk" name="Convolver" projectType="audioplug" version="3.0.0"
bundleIdentifier="com.teragonaudio.Convolver" buildVST="1" buildAU="1"
pluginName="Convolver" pluginDesc="Convolver" pluginManufacturer="Teragon Audio"
pluginManufacturerCode="Tera" pluginCode="Cnvl" pluginChannelConfigs="{1, 1}, {2, 2}"
pluginIsSynth="0" pluginWantsMidiIn="0" pluginProducesMidiOut="0"
pluginSilenceInIsSilenceOut="0" pluginEditorRequiresKeys="0"
pluginAUExportPrefix="ConvolverAU" pluginAUViewClass="ConvolverAU_V1"
pluginRTASCategory="" aaxIdentifier="com.yourcompany.Convolver"
pluginAAXCategory="AAX_ePlugInCategory_Dynamics" jucerVersion="3.0.0"
companyName="Teragon Audio">
<MAINGROUP id="rzeo0p" name="Convolver">
<GROUP id="{DB23BCB7-856A-AD37-6AEF-03AB4240EB84}" name="Source">
<FILE id="KpaO0C" name="FFTWrapper.cpp" compile="1" resource="0" file="Source/FFTWrapper.cpp"/>
<FILE id="isBjxi" name="FFTWrapper.h" compile="0" resource="0" file="Source/FFTWrapper.h"/>
<FILE id="XrWj03" name="ImpulseResponseLoader.cpp" compile="1" resource="0"
file="Source/ImpulseResponseLoader.cpp"/>
<FILE id="bBSTbg" name="ImpulseResponseLoader.h" compile="0" resource="0"
file="Source/ImpulseResponseLoader.h"/>
<FILE id="EK5INn" name="PluginEditor.cpp" compile="1" resource="0"
file="Source/PluginEditor.cpp"/>
<FILE id="ytSxmJ" name="PluginEditor.h" compile="0" resource="0" file="Source/PluginEditor.h"/>
<FILE id="UUrAVC" name="PluginProcessor.cpp" compile="1" resource="0"
file="Source/PluginProcessor.cpp"/>
<FILE id="kHg85v" name="PluginProcessor.h" compile="0" resource="0"
file="Source/PluginProcessor.h"/>
</GROUP>
</MAINGROUP>
<MODULES>
<MODULE id="juce_core" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_events" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_graphics" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_data_structures" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_gui_basics" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_gui_extra" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_gui_audio" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_audio_basics" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_audio_devices" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_audio_formats" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_audio_processors" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_audio_plugin_client" showAllCode="1" useLocalCopy="1"/>
</MODULES>
<JUCEOPTIONS JUCE_QUICKTIME="disabled"/>
<EXPORTFORMATS>
<LINUX_MAKE targetFolder="Builds/Linux" juceFolder="../../sdk/juce/modules"
vstFolder="Third-Party/vstsdk2.4" extraCompilerFlags="-I../../Third-Party/PluginParameters/include -I../../Third-Party/FFTReal-2.11 -I../../Third-Party/FFTReal-2.11/ffft">
<CONFIGURATIONS>
<CONFIGURATION name="Debug" libraryPath="/usr/X11R6/lib/" isDebug="1" optimisation="1"
targetName="Convolver"/>
<CONFIGURATION name="Release" libraryPath="/usr/X11R6/lib/" isDebug="0" optimisation="2"
targetName="Convolver"/>
</CONFIGURATIONS>
</LINUX_MAKE>
<XCODE_MAC targetFolder="Builds/MacOSX" juceFolder="../../sdk/juce/modules"
vstFolder="Third-Party/vstsdk2.4" postbuildCommand=" # This script takes the build product and copies it to the AU, VST, and RTAS 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` 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..." AU=~/Library/Audio/Plug-Ins/Components/$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..." VST=~/Library/Audio/Plug-Ins/VST/$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 [ $copyRTAS -gt 0 ]; then echo "Copying to RTAS folder..." RTAS=/Library/Application\ Support/Digidesign/Plug-Ins/$PRODUCT_NAME.dpm if [ -d "$RTAS" ]; then rm -r "$RTAS" fi cp -r "$original" "$RTAS" 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 "$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 "$original" "$AAX2" fi fi "
extraCompilerFlags="-I../../Third-Party/PluginParameters/include -I../../Third-Party/FFTReal-2.11 -I../../Third-Party/FFTReal-2.11/ffft">
<CONFIGURATIONS>
<CONFIGURATION name="Debug" osxSDK="default" osxCompatibility="default" osxArchitecture="default"
isDebug="1" optimisation="1" targetName="Convolver"/>
<CONFIGURATION name="Release" osxSDK="default" osxCompatibility="default" osxArchitecture="default"
isDebug="0" optimisation="2" targetName="Convolver"/>
</CONFIGURATIONS>
</XCODE_MAC>
<VS2012 targetFolder="Builds/VisualStudio2012" libraryType="1" juceFolder="../../sdk/juce/modules"
vstFolder="Third-Party\vstsdk2.4" extraCompilerFlags="/I..\..\Third-Party\PluginParameters\include /I..\..\Third-Party\FFTReal-2.11 -I..\..\Third-Party\FFTReal-2.11\ffft">
<CONFIGURATIONS>
<CONFIGURATION name="Debug" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
isDebug="1" optimisation="1" targetName="Convolver"/>
<CONFIGURATION name="Release" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
isDebug="0" optimisation="2" targetName="Convolver"/>
</CONFIGURATIONS>
</VS2012>
</EXPORTFORMATS>
</JUCERPROJECT>