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.

92 lines
9.7KB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <JUCERPROJECT id="CbHSoe" name="MultiOutSynth" projectType="audioplug" version="1.0.0"
  3. bundleIdentifier="com.ROLI.MultiOutSynth" includeBinaryInAppConfig="1"
  4. buildVST="1" buildVST3="1" buildAU="1" buildRTAS="0" buildAAX="1"
  5. pluginName="MultiOutSynth" pluginDesc="MultiOutSynth" pluginManufacturer="ROLI Ltd."
  6. pluginManufacturerCode="ROLI" pluginCode="MoSy" pluginChannelConfigs=""
  7. pluginIsSynth="1" pluginWantsMidiIn="1" pluginProducesMidiOut="0"
  8. pluginSilenceInIsSilenceOut="0" pluginEditorRequiresKeys="0"
  9. pluginAUExportPrefix="MultiOutSynthAU" pluginRTASCategory=""
  10. aaxIdentifier="com.ROLI.MultiOutSynth" pluginAAXCategory="AAX_ePlugInCategory_SWGenerators"
  11. jucerVersion="4.1.0" companyName="ROLI Ltd." companyWebsite="www.roli.com"
  12. companyEmail="info@juce.com" pluginIsMidiEffectPlugin="0">
  13. <MAINGROUP id="uGSDhi" name="MultiOutSynth">
  14. <GROUP id="{78464AFF-72EB-5BDD-4FD3-6C8C6CF5DFA3}" name="Source">
  15. <GROUP id="{A6DFE970-77F1-27E9-9B49-A42BC96FECDB}" name="BinaryData">
  16. <FILE id="NUiTXm" name="singing.ogg" compile="0" resource="1" file="Source/BinaryData/singing.ogg"/>
  17. </GROUP>
  18. <FILE id="PCZaNQ" name="MultiOutSynth.cpp" compile="1" resource="0"
  19. file="Source/MultiOutSynth.cpp"/>
  20. </GROUP>
  21. </MAINGROUP>
  22. <EXPORTFORMATS>
  23. <XCODE_MAC targetFolder="Builds/MacOSX" 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;"
  24. vst3Folder="" extraCompilerFlags="-Wall -Wshadow -Wno-missing-field-initializers -Wshadow -Wshorten-64-to-32 -Wstrict-aliasing -Wuninitialized -Wunused-parameter -Wconversion -Wsign-compare -Wint-conversion -Woverloaded-virtual -Wreorder -Wconstant-conversion -Wsign-conversion">
  25. <CONFIGURATIONS>
  26. <CONFIGURATION name="Debug" osxSDK="default" osxCompatibility="default" osxArchitecture="default"
  27. isDebug="1" optimisation="1" targetName="MultiOutSynth"/>
  28. <CONFIGURATION name="Release" osxSDK="default" osxCompatibility="default" osxArchitecture="default"
  29. isDebug="0" optimisation="3" targetName="MultiOutSynth"/>
  30. </CONFIGURATIONS>
  31. <MODULEPATHS>
  32. <MODULEPATH id="juce_core" path="../../../modules"/>
  33. <MODULEPATH id="juce_events" path="../../../modules"/>
  34. <MODULEPATH id="juce_graphics" path="../../../modules"/>
  35. <MODULEPATH id="juce_data_structures" path="../../../modules"/>
  36. <MODULEPATH id="juce_gui_basics" path="../../../modules"/>
  37. <MODULEPATH id="juce_gui_extra" path="../../../modules"/>
  38. <MODULEPATH id="juce_cryptography" path="../../../modules"/>
  39. <MODULEPATH id="juce_video" path="../../../modules"/>
  40. <MODULEPATH id="juce_opengl" path="../../../modules"/>
  41. <MODULEPATH id="juce_audio_basics" path="../../../modules"/>
  42. <MODULEPATH id="juce_audio_devices" path="../../../modules"/>
  43. <MODULEPATH id="juce_audio_formats" path="../../../modules"/>
  44. <MODULEPATH id="juce_audio_processors" path="../../../modules"/>
  45. <MODULEPATH id="juce_audio_plugin_client" path="../../../modules"/>
  46. </MODULEPATHS>
  47. </XCODE_MAC>
  48. <VS2015 targetFolder="Builds/VisualStudio2015">
  49. <CONFIGURATIONS>
  50. <CONFIGURATION name="Debug" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
  51. isDebug="1" optimisation="1" targetName="MultiOutSynth"/>
  52. <CONFIGURATION name="Release" winWarningLevel="4" generateManifest="1" winArchitecture="32-bit"
  53. isDebug="0" optimisation="3" targetName="MultiOutSynth"/>
  54. </CONFIGURATIONS>
  55. <MODULEPATHS>
  56. <MODULEPATH id="juce_video" path="../../../modules"/>
  57. <MODULEPATH id="juce_opengl" path="../../../modules"/>
  58. <MODULEPATH id="juce_gui_extra" path="../../../modules"/>
  59. <MODULEPATH id="juce_gui_basics" path="../../../modules"/>
  60. <MODULEPATH id="juce_graphics" path="../../../modules"/>
  61. <MODULEPATH id="juce_events" path="../../../modules"/>
  62. <MODULEPATH id="juce_data_structures" path="../../../modules"/>
  63. <MODULEPATH id="juce_cryptography" path="../../../modules"/>
  64. <MODULEPATH id="juce_core" path="../../../modules"/>
  65. <MODULEPATH id="juce_audio_processors" path="../../../modules"/>
  66. <MODULEPATH id="juce_audio_plugin_client" path="../../../modules"/>
  67. <MODULEPATH id="juce_audio_formats" path="../../../modules"/>
  68. <MODULEPATH id="juce_audio_devices" path="../../../modules"/>
  69. <MODULEPATH id="juce_audio_basics" path="../../../modules"/>
  70. </MODULEPATHS>
  71. </VS2015>
  72. </EXPORTFORMATS>
  73. <MODULES>
  74. <MODULE id="juce_audio_basics" showAllCode="1" useLocalCopy="0"/>
  75. <MODULE id="juce_audio_devices" showAllCode="1" useLocalCopy="0"/>
  76. <MODULE id="juce_audio_formats" showAllCode="1" useLocalCopy="0"/>
  77. <MODULE id="juce_audio_plugin_client" showAllCode="1" useLocalCopy="0"/>
  78. <MODULE id="juce_audio_processors" showAllCode="1" useLocalCopy="0"/>
  79. <MODULE id="juce_core" showAllCode="1" useLocalCopy="0"/>
  80. <MODULE id="juce_cryptography" showAllCode="1" useLocalCopy="0"/>
  81. <MODULE id="juce_data_structures" showAllCode="1" useLocalCopy="0"/>
  82. <MODULE id="juce_events" showAllCode="1" useLocalCopy="0"/>
  83. <MODULE id="juce_graphics" showAllCode="1" useLocalCopy="0"/>
  84. <MODULE id="juce_gui_basics" showAllCode="1" useLocalCopy="0"/>
  85. <MODULE id="juce_gui_extra" showAllCode="1" useLocalCopy="0"/>
  86. <MODULE id="juce_opengl" showAllCode="1" useLocalCopy="0"/>
  87. <MODULE id="juce_video" showAllCode="1" useLocalCopy="0"/>
  88. </MODULES>
  89. <JUCEOPTIONS JUCE_QUICKTIME="disabled"/>
  90. </JUCERPROJECT>