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.

136 lines
12KB

  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="ROLI Ltd." pluginManufacturerCode="Roli"
  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="4.0.2"
  11. companyName="ROLI 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" pluginIsMidiEffectPlugin="0">
  15. <EXPORTFORMATS>
  16. <XCODE_MAC targetFolder="Builds/MacOSX" vstFolder="" 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; AUDir=~/Library/Audio/Plug-Ins/Components&#13;&#10; mkdir -p &quot;$AUDir&quot;&#13;&#10; AU=$AUDir/$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;fi&#13;&#10;&#13;&#10;if [ $copyVST -gt 0 ]; then&#13;&#10; echo &quot;Copying to VST folder...&quot;&#13;&#10; VSTDir=~/Library/Audio/Plug-Ins/VST&#13;&#10; mkdir -p &quot;$VSTDir&quot;&#13;&#10; VST=$VSTDir/$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; VST3Dir=~/Library/Audio/Plug-Ins/VST3&#13;&#10; mkdir -p &quot;$VST3Dir&quot;&#13;&#10; VST3=$VST3Dir/$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; RTASDir=/Library/Application\ Support/Digidesign/Plug-Ins&#13;&#10; if [ -d &quot;$RTASDir&quot; ]; then&#13;&#10; RTAS=$RTASDir/$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;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 -H &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 -H &quot;$original&quot; &quot;$AAX2&quot;&#13;&#10; fi&#13;&#10;fi&#13;&#10;"
  18. vst3Folder="">
  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="3" 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. <VS2010 targetFolder="Builds/VisualStudio2010" vstFolder="" vst3Folder="">
  41. <CONFIGURATIONS>
  42. <CONFIGURATION name="Debug" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
  43. isDebug="1" optimisation="1" targetName="JuceDemoPlugin"/>
  44. <CONFIGURATION name="Release" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
  45. isDebug="0" optimisation="3" targetName="JuceDemoPlugin"/>
  46. </CONFIGURATIONS>
  47. <MODULEPATHS>
  48. <MODULEPATH id="juce_gui_extra" path="../../modules"/>
  49. <MODULEPATH id="juce_gui_basics" path="../../modules"/>
  50. <MODULEPATH id="juce_graphics" path="../../modules"/>
  51. <MODULEPATH id="juce_events" path="../../modules"/>
  52. <MODULEPATH id="juce_data_structures" path="../../modules"/>
  53. <MODULEPATH id="juce_core" path="../../modules"/>
  54. <MODULEPATH id="juce_audio_utils" path="../../modules"/>
  55. <MODULEPATH id="juce_audio_processors" path="../../modules"/>
  56. <MODULEPATH id="juce_audio_plugin_client" path="../../modules"/>
  57. <MODULEPATH id="juce_audio_formats" path="../../modules"/>
  58. <MODULEPATH id="juce_audio_devices" path="../../modules"/>
  59. <MODULEPATH id="juce_audio_basics" path="../../modules"/>
  60. </MODULEPATHS>
  61. </VS2010>
  62. <VS2013 targetFolder="Builds/VisualStudio2013" vstFolder="" vst3Folder="">
  63. <CONFIGURATIONS>
  64. <CONFIGURATION name="Debug" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
  65. isDebug="1" optimisation="1" targetName="JuceDemoPlugin"/>
  66. <CONFIGURATION name="Release" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
  67. isDebug="0" optimisation="3" targetName="JuceDemoPlugin"/>
  68. </CONFIGURATIONS>
  69. <MODULEPATHS>
  70. <MODULEPATH id="juce_gui_extra" path="../../modules"/>
  71. <MODULEPATH id="juce_gui_basics" path="../../modules"/>
  72. <MODULEPATH id="juce_graphics" path="../../modules"/>
  73. <MODULEPATH id="juce_events" path="../../modules"/>
  74. <MODULEPATH id="juce_data_structures" path="../../modules"/>
  75. <MODULEPATH id="juce_core" path="../../modules"/>
  76. <MODULEPATH id="juce_audio_utils" path="../../modules"/>
  77. <MODULEPATH id="juce_audio_processors" path="../../modules"/>
  78. <MODULEPATH id="juce_audio_plugin_client" path="../../modules"/>
  79. <MODULEPATH id="juce_audio_formats" path="../../modules"/>
  80. <MODULEPATH id="juce_audio_devices" path="../../modules"/>
  81. <MODULEPATH id="juce_audio_basics" path="../../modules"/>
  82. </MODULEPATHS>
  83. </VS2013>
  84. <LINUX_MAKE targetFolder="Builds/Linux" vstFolder="" rtasFolder="~/SDKs/PT_80_SDK"
  85. vst3Folder="">
  86. <CONFIGURATIONS>
  87. <CONFIGURATION name="Debug" isDebug="1" optimisation="1" targetName="JuceDemoPlugin"
  88. libraryPath="/usr/X11R6/lib/"/>
  89. <CONFIGURATION name="Release" isDebug="0" optimisation="3" targetName="JuceDemoPlugin"
  90. libraryPath="/usr/X11R6/lib/"/>
  91. </CONFIGURATIONS>
  92. <MODULEPATHS>
  93. <MODULEPATH id="juce_gui_extra" path="../../modules"/>
  94. <MODULEPATH id="juce_gui_basics" path="../../modules"/>
  95. <MODULEPATH id="juce_graphics" path="../../modules"/>
  96. <MODULEPATH id="juce_events" path="../../modules"/>
  97. <MODULEPATH id="juce_data_structures" path="../../modules"/>
  98. <MODULEPATH id="juce_core" path="../../modules"/>
  99. <MODULEPATH id="juce_audio_utils" path="../../modules"/>
  100. <MODULEPATH id="juce_audio_processors" path="../../modules"/>
  101. <MODULEPATH id="juce_audio_plugin_client" path="../../modules"/>
  102. <MODULEPATH id="juce_audio_formats" path="../../modules"/>
  103. <MODULEPATH id="juce_audio_devices" path="../../modules"/>
  104. <MODULEPATH id="juce_audio_basics" path="../../modules"/>
  105. </MODULEPATHS>
  106. </LINUX_MAKE>
  107. </EXPORTFORMATS>
  108. <MAINGROUP id="dYAMo6Ykd" name="JuceDemoPlugin">
  109. <FILE id="RCFlkTAef" name="PluginEditor.cpp" compile="1" resource="0"
  110. file="Source/PluginEditor.cpp"/>
  111. <FILE id="Iif5nfHL" name="PluginEditor.h" compile="0" resource="0"
  112. file="Source/PluginEditor.h"/>
  113. <FILE id="gFFr0hbSp" name="PluginProcessor.cpp" compile="1" resource="0"
  114. file="Source/PluginProcessor.cpp"/>
  115. <FILE id="PkpMNdnIr" name="PluginProcessor.h" compile="0" resource="0"
  116. file="Source/PluginProcessor.h"/>
  117. <FILE id="obk9kG" name="SinewaveSynth.h" compile="0" resource="0" file="Source/SinewaveSynth.h"/>
  118. </MAINGROUP>
  119. <JUCEOPTIONS JUCE_QUICKTIME="disabled" JUCE_PLUGINHOST_VST="disabled" JUCE_PLUGINHOST_AU="disabled"/>
  120. <MODULES>
  121. <MODULE id="juce_audio_basics" showAllCode="1"/>
  122. <MODULE id="juce_audio_devices" showAllCode="1"/>
  123. <MODULE id="juce_audio_formats" showAllCode="1"/>
  124. <MODULE id="juce_audio_plugin_client" showAllCode="1"/>
  125. <MODULE id="juce_audio_processors" showAllCode="1"/>
  126. <MODULE id="juce_audio_utils" showAllCode="1"/>
  127. <MODULE id="juce_core" showAllCode="1"/>
  128. <MODULE id="juce_data_structures" showAllCode="1"/>
  129. <MODULE id="juce_events" showAllCode="1"/>
  130. <MODULE id="juce_graphics" showAllCode="1"/>
  131. <MODULE id="juce_gui_basics" showAllCode="1"/>
  132. <MODULE id="juce_gui_extra" showAllCode="1" useLocalCopy="0"/>
  133. </MODULES>
  134. </JUCERPROJECT>