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.

46 lines
2.6KB

  1. {
  2. "id": "juce_audio_plugin_client",
  3. "name": "JUCE audio plugin wrapper classes",
  4. "version": "3.0.8",
  5. "description": "Classes for building VST, VST3, RTAS, AAX and AU plugins.",
  6. "website": "http://www.juce.com/juce",
  7. "license": "GPL/Commercial",
  8. "dependencies": [ { "id": "juce_gui_basics", "version": "matching" },
  9. { "id": "juce_audio_basics", "version": "matching" },
  10. { "id": "juce_audio_processors", "version": "matching" } ],
  11. "include": "juce_audio_plugin_client.h",
  12. "compile": [ { "file": "VST/juce_VST_Wrapper.cpp" },
  13. { "file": "VST/juce_VST_Wrapper.mm", "target": "xcode" },
  14. { "file": "VST3/juce_VST3_Wrapper.cpp" },
  15. { "file": "VST3/juce_VST3_Wrapper.mm", "target": "xcode" },
  16. { "file": "RTAS/juce_RTAS_DigiCode1.cpp", "warnings": "disabled", "stdcall": "1", "target": "xcode, msvc" },
  17. { "file": "RTAS/juce_RTAS_DigiCode2.cpp", "warnings": "disabled", "stdcall": "1", "target": "xcode, msvc" },
  18. { "file": "RTAS/juce_RTAS_DigiCode3.cpp", "warnings": "disabled", "stdcall": "1", "target": "xcode, msvc" },
  19. { "file": "RTAS/juce_RTAS_MacResources.r", "target": "xcode" },
  20. { "file": "RTAS/juce_RTAS_MacUtilities.mm", "target": "xcode" },
  21. { "file": "RTAS/juce_RTAS_WinResources.rsr", "target": "msvc" },
  22. { "file": "RTAS/juce_RTAS_WinUtilities.cpp", "target": "msvc", "warnings": "disabled", "stdcall": "1" },
  23. { "file": "RTAS/juce_RTAS_Wrapper.cpp", "warnings": "disabled", "stdcall": "1", "target": "xcode, msvc" },
  24. { "file": "AU/juce_AU_Resources.r", "target": "xcode" },
  25. { "file": "AU/juce_AU_Wrapper.mm", "target": "xcode" },
  26. { "file": "AAX/juce_AAX_Wrapper.cpp", "target": "xcode, msvc" },
  27. { "file": "AAX/juce_AAX_Wrapper.mm", "target": "xcode" },
  28. { "file": "utility/juce_PluginUtilities.cpp" }
  29. ],
  30. "browse": [ "AU/*.cpp",
  31. "AU/*.mm",
  32. "AU/*.h",
  33. "RTAS/*.cpp",
  34. "RTAS/*.mm",
  35. "RTAS/*.h",
  36. "VST/*",
  37. "VST3/*",
  38. "AAX/*",
  39. "utility/*"
  40. ]
  41. }