-
Notifications
You must be signed in to change notification settings - Fork 11
/
Argotlunar.jucer
147 lines (146 loc) · 15.7 KB
/
Argotlunar.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?xml version="1.0" encoding="UTF-8"?>
<JUCERPROJECT id="UlIIGd" name="Argotlunar" projectType="audioplug" version="2.0.6"
juceLinkage="amalg_multi" buildVST="1" buildRTAS="0" buildAU="1"
pluginName="Argotlunar" pluginDesc="Argotlunar" pluginManufacturer="Michael Ourednik"
pluginManufacturerCode="ARG1" pluginCode="ARG1" pluginChannelConfigs="{2, 2}"
pluginIsSynth="0" pluginWantsMidiIn="0" pluginProducesMidiOut="0"
pluginSilenceInIsSilenceOut="0" pluginTailLength="0" pluginEditorRequiresKeys="1"
pluginAUExportPrefix="ArgotlunarAU" pluginAUViewClass="ArgotlunarAU"
pluginRTASCategory="" bundleIdentifier="com.MichaelOurednik.Argotlunar"
jucerVersion="3.1.0" aaxIdentifier="com.yourcompany.Argotlunar"
pluginAAXCategory="AAX_ePlugInCategory_Dynamics">
<EXPORTFORMATS>
<XCODE_MAC targetFolder="Builds/MacOSX" vstFolder="..\vstsdk2.4" rtasFolder="~/SDKs/PT_80_SDK"
objCExtraSuffix="n9bOCG" juceFolder="..\juce" 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 ">
<CONFIGURATIONS>
<CONFIGURATION name="Release" isDebug="0" optimisation="3" targetName="argotlunar"
osxSDK="10.5 SDK" osxCompatibility="10.5 SDK" osxArchitecture="64BitIntel"
cppLibType="libc++"/>
</CONFIGURATIONS>
</XCODE_MAC>
<XCODE_IPHONE targetFolder="Builds/iOS" vstFolder="..\vstsdk2.4" rtasFolder="~/SDKs/PT_80_SDK"
objCExtraSuffix="HEJ0lj" juceFolder="..\juce" 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 ">
<CONFIGURATIONS>
<CONFIGURATION name="Release" isDebug="0" optimisation="2" targetName="argotlunar"
osxSDK="default" osxCompatibility="default" osxArchitecture="default"
iosCompatibility="default"/>
</CONFIGURATIONS>
</XCODE_IPHONE>
<VS2005 targetFolder="Builds/VisualStudio2005" vstFolder="..\vstsdk2.4"
rtasFolder="c:\SDKs\PT_80_SDK" libraryType="1" juceFolder="..\juce"
extraCompilerFlags="">
<CONFIGURATIONS>
<CONFIGURATION name="Release" isDebug="0" optimisation="2" targetName="argotlunar"
winWarningLevel="4" generateManifest="1"/>
</CONFIGURATIONS>
</VS2005>
<VS2008 targetFolder="Builds/VisualStudio2008" vstFolder="..\vstsdk2.4"
rtasFolder="c:\SDKs\PT_80_SDK" libraryType="1" juceFolder="..\juce"
extraCompilerFlags="">
<CONFIGURATIONS>
<CONFIGURATION name="Release" isDebug="0" optimisation="2" targetName="argotlunar"
winWarningLevel="4" generateManifest="1"/>
</CONFIGURATIONS>
</VS2008>
<VS2010 targetFolder="Builds/VisualStudio2010" vstFolder="..\vstsdk2.4"
rtasFolder="c:\SDKs\PT_80_SDK" libraryType="1" juceFolder="..\juce"
extraCompilerFlags="">
<CONFIGURATIONS>
<CONFIGURATION name="Release64" isDebug="0" optimisation="3" targetName="argotlunar"
winWarningLevel="4" generateManifest="1" winArchitecture="x64"
useRuntimeLibDLL="1"/>
<CONFIGURATION name="Release32" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
optimisation="3" targetName="argotlunar" useRuntimeLibDLL="1"/>
</CONFIGURATIONS>
</VS2010>
<LINUX_MAKE targetFolder="Builds/Linux" vstFolder="..\vstsdk2.4" juceFolder="..\juce"
extraCompilerFlags="-fpermissive" extraLinkerFlags="-s">
<CONFIGURATIONS>
<CONFIGURATION name="Release" isDebug="0" optimisation="3" targetName="argotlunar"
libraryPath="/usr/X11R6/lib/"/>
</CONFIGURATIONS>
</LINUX_MAKE>
<ANDROID targetFolder="Builds/Android" androidSDKPath="${user.home}/SDKs/android-sdk-mac_x86"
androidNDKPath="${user.home}/SDKs/android-ndk-r5" androidInternetNeeded="1"
juceFolder="..\juce" vstFolder="..\vstsdk2.4" androidActivityClass="com.michaelourednik.argotlunar.Argotlunar"
androidMinimumSDK="8" androidKeyStore="${user.home}/.android/debug.keystore"
androidKeyStorePass="android" androidKeyAlias="androiddebugkey"
androidKeyAliasPass="android">
<CONFIGURATIONS>
<CONFIGURATION name="Release" isDebug="0" optimisation="3" targetName="argotlunar"
androidArchitectures="armeabi armeabi-v7a"/>
</CONFIGURATIONS>
</ANDROID>
</EXPORTFORMATS>
<MAINGROUP id="iwaX04" name="Argotlunar">
<GROUP id="hUHcg" name="Headers">
<FILE id="SMFH91" name="Debug.h" compile="0" resource="0" file="Source\Debug.h"/>
<FILE id="socHCm" name="Envelope.h" compile="0" resource="0" file="Source\Envelope.h"/>
<FILE id="FHNr95" name="Filter.h" compile="0" resource="0" file="Source\Filter.h"/>
<FILE id="TbFZiZ" name="Grain.h" compile="0" resource="0" file="Source\Grain.h"/>
<FILE id="pKkiY2" name="GrainParameters.h" compile="0" resource="0"
file="Source\GrainParameters.h"/>
<FILE id="SjCUGG" name="GrainParametersGenerator.h" compile="0" resource="0"
file="Source\GrainParametersGenerator.h"/>
<FILE id="ws7Cuk" name="Granulator.h" compile="0" resource="0" file="Source\Granulator.h"/>
<FILE id="m7ZphJ" name="Misc.h" compile="0" resource="0" file="Source\Misc.h"/>
<FILE id="hJtcWV" name="Parameters.h" compile="0" resource="0" file="Source\Parameters.h"/>
<FILE id="WIO825" name="ParametersEnum.h" compile="0" resource="0"
file="Source\ParametersEnum.h"/>
<FILE id="wh7eoz" name="PitchQuantizer.h" compile="0" resource="0"
file="Source\PitchQuantizer.h"/>
<FILE id="AH95iN" name="Plugin.h" compile="0" resource="0" file="Source\Plugin.h"/>
<FILE id="rZPlbx" name="PluginEditor.h" compile="0" resource="0" file="Source\PluginEditor.h"/>
<FILE id="a5zkq1" name="Program.h" compile="0" resource="0" file="Source\Program.h"/>
<FILE id="PWz2Mv" name="ProgramBank.h" compile="0" resource="0" file="Source\ProgramBank.h"/>
<FILE id="fOQcoO" name="TimeQuantizer.h" compile="0" resource="0" file="Source\TimeQuantizer.h"/>
<FILE id="dKt1vU" name="CombFilter.h" compile="0" resource="0" file="Source\CombFilter.h"/>
<FILE id="hBMvG" name="DelayLine.h" compile="0" resource="0" file="Source\DelayLine.h"/>
</GROUP>
<GROUP id="bRs9CA" name="Source">
<FILE id="SfZbUG" name="CombFilter.cpp" compile="1" resource="0" file="Source\CombFilter.cpp"/>
<FILE id="pYvI65" name="DelayLine.cpp" compile="1" resource="0" file="Source\DelayLine.cpp"/>
<FILE id="uMDjYH" name="Envelope.cpp" compile="1" resource="0" file="Source\Envelope.cpp"/>
<FILE id="euKWZm" name="Filter.cpp" compile="1" resource="0" file="Source\Filter.cpp"/>
<FILE id="mXK4nE" name="Grain.cpp" compile="1" resource="0" file="Source\Grain.cpp"/>
<FILE id="JPjtVv" name="GrainParametersGenerator.cpp" compile="1" resource="0"
file="Source\GrainParametersGenerator.cpp"/>
<FILE id="AdjX4E" name="Granulator.cpp" compile="1" resource="0" file="Source\Granulator.cpp"/>
<FILE id="RM2HYt" name="Parameters.cpp" compile="1" resource="0" file="Source\Parameters.cpp"/>
<FILE id="sdK2QN" name="PitchQuantizer.cpp" compile="1" resource="0"
file="Source\PitchQuantizer.cpp"/>
<FILE id="QxRJNV" name="Plugin.cpp" compile="1" resource="0" file="Source\Plugin.cpp"/>
<FILE id="DKM7kl" name="PluginEditor.cpp" compile="1" resource="0"
file="Source\PluginEditor.cpp"/>
<FILE id="ru2MsF" name="Program.cpp" compile="1" resource="0" file="Source\Program.cpp"/>
<FILE id="AkNnTW" name="ProgramBank.cpp" compile="1" resource="0" file="Source\ProgramBank.cpp"/>
<FILE id="FSalO0" name="TimeQuantizer.cpp" compile="1" resource="0"
file="Source\TimeQuantizer.cpp"/>
</GROUP>
</MAINGROUP>
<JUCEOPTIONS JUCE_QUICKTIME="disabled" JUCE_FORCE_DEBUG="disabled" JUCE_LOG_ASSERTIONS="disabled"
JUCE_ASIO="disabled" JUCE_WASAPI="disabled" JUCE_DIRECTSOUND="disabled"
JUCE_DIRECTSHOW="disabled" JUCE_MEDIAFOUNDATION="disabled" JUCE_ALSA="disabled"
JUCE_OPENGL="disabled" JUCE_DIRECT2D="disabled" JUCE_USE_FLAC="disabled"
JUCE_USE_OGGVORBIS="disabled" JUCE_USE_CDBURNER="disabled" JUCE_USE_CDREADER="disabled"
JUCE_USE_CAMERA="disabled" JUCE_ENABLE_REPAINT_DEBUGGING="disabled"
JUCE_USE_XINERAMA="enabled" JUCE_USE_XSHM="disabled" JUCE_USE_XRENDER="enabled"
JUCE_USE_XCURSOR="enabled" JUCE_PLUGINHOST_VST="disabled" JUCE_PLUGINHOST_AU="disabled"
JUCE_ONLY_BUILD_CORE_LIBRARY="disabled" JUCE_WEB_BROWSER="disabled"
JUCE_SUPPORT_CARBON="disabled" JUCE_CHECK_MEMORY_LEAKS="disabled"
JUCE_CATCH_UNHANDLED_EXCEPTIONS="disabled"/>
<MODULES>
<MODULE id="juce_gui_audio" showAllCode="1"/>
<MODULE id="juce_audio_basics" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_audio_devices" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_audio_plugin_client" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_core" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_data_structures" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_events" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_gui_extra" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_audio_processors" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_gui_basics" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_graphics" showAllCode="1" useLocalCopy="1"/>
<MODULE id="juce_audio_formats" showAllCode="1" useLocalCopy="1"/>
</MODULES>
</JUCERPROJECT>