The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

160 lines
14KB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <JUCERPROJECT id="0nRd9LLGO" name="JuceDemoPlugin" projectType="audioplug"
  3. version="1.0.0" juceLinkage="amalg_multi" buildVST="1" buildRTAS="0"
  4. buildAU="1" pluginName="Juce Demo Plugin" pluginDesc="Juce Demo Plugin"
  5. pluginManufacturer="Raw Material Software" pluginManufacturerCode="RawM"
  6. pluginCode="Jcdm" pluginChannelConfigs="{1, 1}, {2, 2}" pluginIsSynth="0"
  7. pluginWantsMidiIn="1" pluginProducesMidiOut="1" pluginSilenceInIsSilenceOut="0"
  8. pluginTailLength="0" pluginEditorRequiresKeys="1" pluginAUExportPrefix="JuceDemoProjectAU"
  9. pluginAUViewClass="JuceDemoProjectAU_V1" pluginRTASCategory=""
  10. bundleIdentifier="com.juce.JuceDemoPlugin" jucerVersion="3.1.0"
  11. companyName="Raw Material Software Ltd." aaxIdentifier="com.yourcompany.JuceDemoPlugin"
  12. buildAAX="0" pluginAAXCategory="AAX_ePlugInCategory_Dynamics"
  13. includeBinaryInAppConfig="1" buildVST3="1" pluginManufacturerEmail="support@yourcompany.com"
  14. companyWebsite="www.juce.com" companyEmail="info@juce.com">
  15. <EXPORTFORMATS>
  16. <XCODE_MAC targetFolder="Builds/MacOSX" vstFolder="~/SDKs/vstsdk2.4" rtasFolder="~/SDKs/PT_80_SDK"
  17. objCExtraSuffix="JuceDemo" aaxFolder="~/SDKs/AAX" postbuildCommand="&#13;&#10;# This script takes the build product and copies it to the AU, VST, VST3, RTAS and AAX folders, depending on &#13;&#10;# which plugin types you've built&#13;&#10;&#13;&#10;original=$CONFIGURATION_BUILD_DIR/$FULL_PRODUCT_NAME&#13;&#10;&#13;&#10;# this looks inside the binary to detect which platforms are needed.. &#13;&#10;copyAU=&#96;nm -g &quot;$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH&quot; | grep -i 'AudioUnit' | wc -l&#96;&#13;&#10;copyVST=&#96;nm -g &quot;$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH&quot; | grep -i 'VSTPlugin' | wc -l&#96;&#13;&#10;copyVST3=&#96;nm -g &quot;$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH&quot; | grep -i 'GetPluginFactory' | wc -l&#96;&#13;&#10;copyRTAS=&#96;nm -g &quot;$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH&quot; | grep -i 'CProcess' | wc -l&#96;&#13;&#10;copyAAX=&#96;nm -g &quot;$CONFIGURATION_BUILD_DIR/$EXECUTABLE_PATH&quot; | grep -i 'ACFStartup' | wc -l&#96;&#13;&#10;&#13;&#10;if [ $copyAU -gt 0 ]; then&#13;&#10; echo &quot;Copying to AudioUnit folder...&quot;&#13;&#10; AU=~/Library/Audio/Plug-Ins/Components/$PRODUCT_NAME.component&#13;&#10; if [ -d &quot;$AU&quot; ]; then &#13;&#10; rm -r &quot;$AU&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$AU&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMwPTul/BNDLPTul/g' &quot;$AU/Contents/PkgInfo&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMw/BNDL/g' &quot;$AU/Contents/$INFOPLIST_FILE&quot;&#13;&#10;&#13;&#10; # Fix info.plist for AUs built with Xcode 3&#13;&#10; if [ -f &quot;$DEVELOPER_DIR/Library/Developer/CoreAudio/AudioUnits/AUPublic/AUBase/AUPlugInDispatch.cpp&quot; ]; then&#13;&#10; echo&#13;&#10; else&#13;&#10; echo &quot;Removing AudioComponents entry from Info.plist because this is not a new-format AU&quot;&#13;&#10; /usr/libexec/PlistBuddy -c &quot;Delete AudioComponents&quot; &quot;$AU/Contents/Info.plist&quot;&#13;&#10; fi&#13;&#10;fi&#13;&#10;&#13;&#10;if [ $copyVST -gt 0 ]; then&#13;&#10; echo &quot;Copying to VST folder...&quot;&#13;&#10; VST=~/Library/Audio/Plug-Ins/VST/$PRODUCT_NAME.vst&#13;&#10; if [ -d &quot;$VST&quot; ]; then &#13;&#10; rm -r &quot;$VST&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$VST&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMwPTul/BNDLPTul/g' &quot;$VST/Contents/PkgInfo&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMw/BNDL/g' &quot;$VST/Contents/$INFOPLIST_FILE&quot;&#13;&#10;fi&#13;&#10;&#13;&#10;if [ $copyVST3 -gt 0 ]; then&#13;&#10; echo &quot;Copying to VST3 folder...&quot;&#13;&#10; VST3=~/Library/Audio/Plug-Ins/VST3/$PRODUCT_NAME.vst3&#13;&#10; if [ -d &quot;$VST3&quot; ]; then &#13;&#10; rm -r &quot;$VST3&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$VST3&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMwPTul/BNDLPTul/g' &quot;$VST3/Contents/PkgInfo&quot;&#13;&#10; sed -i &quot;&quot; -e 's/TDMw/BNDL/g' &quot;$VST3/Contents/$INFOPLIST_FILE&quot;&#13;&#10;fi&#13;&#10;&#13;&#10;if [ $copyRTAS -gt 0 ]; then&#13;&#10; echo &quot;Copying to RTAS folder...&quot;&#13;&#10; RTAS=/Library/Application\ Support/Digidesign/Plug-Ins/$PRODUCT_NAME.dpm&#13;&#10; if [ -d &quot;$RTAS&quot; ]; then&#13;&#10; rm -r &quot;$RTAS&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$RTAS&quot;&#13;&#10;fi&#13;&#10;&#13;&#10;if [ $copyAAX -gt 0 ]; then&#13;&#10; echo &quot;Copying to AAX folder...&quot;&#13;&#10;&#13;&#10; if [ -d &quot;/Applications/ProTools_3PDev/Plug-Ins&quot; ]; then&#13;&#10; AAX1=&quot;/Applications/ProTools_3PDev/Plug-Ins/$PRODUCT_NAME.aaxplugin&quot;&#13;&#10;&#13;&#10; if [ -d &quot;$AAX1&quot; ]; then&#13;&#10; rm -r &quot;$AAX1&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$AAX1&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; if [ -d &quot;/Library/Application Support/Avid/Audio/Plug-Ins&quot; ]; then&#13;&#10; AAX2=&quot;/Library/Application Support/Avid/Audio/Plug-Ins/$PRODUCT_NAME.aaxplugin&quot;&#13;&#10;&#13;&#10; if [ -d &quot;$AAX2&quot; ]; then&#13;&#10; rm -r &quot;$AAX2&quot;&#13;&#10; fi&#13;&#10;&#13;&#10; cp -r &quot;$original&quot; &quot;$AAX2&quot;&#13;&#10; fi&#13;&#10;fi&#13;&#10;"
  18. vst3Folder="~/SDKs/VST3 SDK">
  19. <CONFIGURATIONS>
  20. <CONFIGURATION name="Debug" isDebug="1" optimisation="1" targetName="JuceDemoPlugin"
  21. osxSDK="default" osxCompatibility="default" osxArchitecture="64BitUniversal"/>
  22. <CONFIGURATION name="Release" isDebug="0" optimisation="2" targetName="JuceDemoPlugin"
  23. osxSDK="default" osxCompatibility="default" osxArchitecture="64BitUniversal"/>
  24. </CONFIGURATIONS>
  25. <MODULEPATHS>
  26. <MODULEPATH id="juce_gui_extra" path="../../modules"/>
  27. <MODULEPATH id="juce_gui_basics" path="../../modules"/>
  28. <MODULEPATH id="juce_graphics" path="../../modules"/>
  29. <MODULEPATH id="juce_events" path="../../modules"/>
  30. <MODULEPATH id="juce_data_structures" path="../../modules"/>
  31. <MODULEPATH id="juce_core" path="../../modules"/>
  32. <MODULEPATH id="juce_audio_utils" path="../../modules"/>
  33. <MODULEPATH id="juce_audio_processors" path="../../modules"/>
  34. <MODULEPATH id="juce_audio_plugin_client" path="../../modules"/>
  35. <MODULEPATH id="juce_audio_formats" path="../../modules"/>
  36. <MODULEPATH id="juce_audio_devices" path="../../modules"/>
  37. <MODULEPATH id="juce_audio_basics" path="../../modules"/>
  38. </MODULEPATHS>
  39. </XCODE_MAC>
  40. <VS2005 targetFolder="Builds/VisualStudio2005" vstFolder="c:\SDKs\vstsdk2.4"
  41. rtasFolder="c:\SDKs\PT_80_SDK" libraryType="1" aaxFolder="c:\SDKs\AAX">
  42. <CONFIGURATIONS>
  43. <CONFIGURATION name="Debug" isDebug="1" optimisation="1" targetName="JuceDemoPlugin"
  44. winWarningLevel="4" generateManifest="1"/>
  45. <CONFIGURATION name="Release" isDebug="0" optimisation="2" targetName="JuceDemoPlugin"
  46. winWarningLevel="4" generateManifest="1"/>
  47. </CONFIGURATIONS>
  48. <MODULEPATHS>
  49. <MODULEPATH id="juce_gui_extra" path="../../modules"/>
  50. <MODULEPATH id="juce_gui_basics" path="../../modules"/>
  51. <MODULEPATH id="juce_graphics" path="../../modules"/>
  52. <MODULEPATH id="juce_events" path="../../modules"/>
  53. <MODULEPATH id="juce_data_structures" path="../../modules"/>
  54. <MODULEPATH id="juce_core" path="../../modules"/>
  55. <MODULEPATH id="juce_audio_utils" path="../../modules"/>
  56. <MODULEPATH id="juce_audio_processors" path="../../modules"/>
  57. <MODULEPATH id="juce_audio_plugin_client" path="../../modules"/>
  58. <MODULEPATH id="juce_audio_formats" path="../../modules"/>
  59. <MODULEPATH id="juce_audio_devices" path="../../modules"/>
  60. <MODULEPATH id="juce_audio_basics" path="../../modules"/>
  61. </MODULEPATHS>
  62. </VS2005>
  63. <VS2008 targetFolder="Builds/VisualStudio2008" vstFolder="c:\SDKs\vstsdk2.4"
  64. rtasFolder="c:\SDKs\PT_80_SDK" libraryType="1" aaxFolder="c:\SDKs\AAX"
  65. vst3Folder="c:\SDKs\VST3 SDK">
  66. <CONFIGURATIONS>
  67. <CONFIGURATION name="Debug" isDebug="1" optimisation="1" targetName="JuceDemoPlugin"
  68. winWarningLevel="4" generateManifest="1"/>
  69. <CONFIGURATION name="Release" isDebug="0" optimisation="2" targetName="JuceDemoPlugin"
  70. winWarningLevel="4" generateManifest="1"/>
  71. </CONFIGURATIONS>
  72. <MODULEPATHS>
  73. <MODULEPATH id="juce_gui_extra" path="../../modules"/>
  74. <MODULEPATH id="juce_gui_basics" path="../../modules"/>
  75. <MODULEPATH id="juce_graphics" path="../../modules"/>
  76. <MODULEPATH id="juce_events" path="../../modules"/>
  77. <MODULEPATH id="juce_data_structures" path="../../modules"/>
  78. <MODULEPATH id="juce_core" path="../../modules"/>
  79. <MODULEPATH id="juce_audio_utils" path="../../modules"/>
  80. <MODULEPATH id="juce_audio_processors" path="../../modules"/>
  81. <MODULEPATH id="juce_audio_plugin_client" path="../../modules"/>
  82. <MODULEPATH id="juce_audio_formats" path="../../modules"/>
  83. <MODULEPATH id="juce_audio_devices" path="../../modules"/>
  84. <MODULEPATH id="juce_audio_basics" path="../../modules"/>
  85. </MODULEPATHS>
  86. </VS2008>
  87. <VS2010 targetFolder="Builds/VisualStudio2010" vstFolder="c:\SDKs\vstsdk2.4"
  88. vst3Folder="c:\SDKs\VST3 SDK">
  89. <CONFIGURATIONS>
  90. <CONFIGURATION name="Debug" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
  91. isDebug="1" optimisation="1" targetName="JuceDemoPlugin"/>
  92. <CONFIGURATION name="Release" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
  93. isDebug="0" optimisation="2" targetName="JuceDemoPlugin"/>
  94. </CONFIGURATIONS>
  95. <MODULEPATHS>
  96. <MODULEPATH id="juce_gui_extra" path="../../modules"/>
  97. <MODULEPATH id="juce_gui_basics" path="../../modules"/>
  98. <MODULEPATH id="juce_graphics" path="../../modules"/>
  99. <MODULEPATH id="juce_events" path="../../modules"/>
  100. <MODULEPATH id="juce_data_structures" path="../../modules"/>
  101. <MODULEPATH id="juce_core" path="../../modules"/>
  102. <MODULEPATH id="juce_audio_utils" path="../../modules"/>
  103. <MODULEPATH id="juce_audio_processors" path="../../modules"/>
  104. <MODULEPATH id="juce_audio_plugin_client" path="../../modules"/>
  105. <MODULEPATH id="juce_audio_formats" path="../../modules"/>
  106. <MODULEPATH id="juce_audio_devices" path="../../modules"/>
  107. <MODULEPATH id="juce_audio_basics" path="../../modules"/>
  108. </MODULEPATHS>
  109. </VS2010>
  110. <LINUX_MAKE targetFolder="Builds/Linux" vstFolder="~/SDKs/vstsdk2.4" rtasFolder="~/SDKs/PT_80_SDK">
  111. <CONFIGURATIONS>
  112. <CONFIGURATION name="Debug" isDebug="1" optimisation="1" targetName="JuceDemoPlugin"
  113. libraryPath="/usr/X11R6/lib/"/>
  114. <CONFIGURATION name="Release" isDebug="0" optimisation="2" targetName="JuceDemoPlugin"
  115. libraryPath="/usr/X11R6/lib/"/>
  116. </CONFIGURATIONS>
  117. <MODULEPATHS>
  118. <MODULEPATH id="juce_gui_extra" path="../../modules"/>
  119. <MODULEPATH id="juce_gui_basics" path="../../modules"/>
  120. <MODULEPATH id="juce_graphics" path="../../modules"/>
  121. <MODULEPATH id="juce_events" path="../../modules"/>
  122. <MODULEPATH id="juce_data_structures" path="../../modules"/>
  123. <MODULEPATH id="juce_core" path="../../modules"/>
  124. <MODULEPATH id="juce_audio_utils" path="../../modules"/>
  125. <MODULEPATH id="juce_audio_processors" path="../../modules"/>
  126. <MODULEPATH id="juce_audio_plugin_client" path="../../modules"/>
  127. <MODULEPATH id="juce_audio_formats" path="../../modules"/>
  128. <MODULEPATH id="juce_audio_devices" path="../../modules"/>
  129. <MODULEPATH id="juce_audio_basics" path="../../modules"/>
  130. </MODULEPATHS>
  131. </LINUX_MAKE>
  132. </EXPORTFORMATS>
  133. <MAINGROUP id="dYAMo6Ykd" name="JuceDemoPlugin">
  134. <FILE id="gFFr0hbSp" name="PluginProcessor.cpp" compile="1" resource="0"
  135. file="Source/PluginProcessor.cpp"/>
  136. <FILE id="PkpMNdnIr" name="PluginProcessor.h" compile="0" resource="0"
  137. file="Source/PluginProcessor.h"/>
  138. <FILE id="RCFlkTAef" name="PluginEditor.cpp" compile="1" resource="0"
  139. file="Source/PluginEditor.cpp"/>
  140. <FILE id="Iif5nfHL" name="PluginEditor.h" compile="0" resource="0"
  141. file="Source/PluginEditor.h"/>
  142. </MAINGROUP>
  143. <JUCEOPTIONS JUCE_QUICKTIME="disabled" JUCE_PLUGINHOST_VST="disabled" JUCE_PLUGINHOST_AU="disabled"/>
  144. <MODULES>
  145. <MODULE id="juce_audio_basics" showAllCode="1"/>
  146. <MODULE id="juce_audio_devices" showAllCode="1"/>
  147. <MODULE id="juce_audio_formats" showAllCode="1"/>
  148. <MODULE id="juce_audio_plugin_client" showAllCode="1"/>
  149. <MODULE id="juce_audio_processors" showAllCode="1"/>
  150. <MODULE id="juce_audio_utils" showAllCode="1"/>
  151. <MODULE id="juce_core" showAllCode="1"/>
  152. <MODULE id="juce_data_structures" showAllCode="1"/>
  153. <MODULE id="juce_events" showAllCode="1"/>
  154. <MODULE id="juce_graphics" showAllCode="1"/>
  155. <MODULE id="juce_gui_basics" showAllCode="1"/>
  156. <MODULE id="juce_gui_extra" showAllCode="1" useLocalCopy="0"/>
  157. </MODULES>
  158. </JUCERPROJECT>