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.

42 lines
2.3KB

  1. {
  2. "id": "juce_audio_plugin_client",
  3. "name": "JUCE audio plugin wrapper classes",
  4. "version": "2.0.21",
  5. "description": "Classes for building VST, RTAS 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": "RTAS/juce_RTAS_DigiCode1.cpp", "warnings": "disabled", "stdcall": "1", "target": "xcode, msvc" },
  15. { "file": "RTAS/juce_RTAS_DigiCode2.cpp", "warnings": "disabled", "stdcall": "1", "target": "xcode, msvc" },
  16. { "file": "RTAS/juce_RTAS_DigiCode3.cpp", "warnings": "disabled", "stdcall": "1", "target": "xcode, msvc" },
  17. { "file": "RTAS/juce_RTAS_MacResources.r", "target": "xcode" },
  18. { "file": "RTAS/juce_RTAS_MacUtilities.mm", "target": "xcode" },
  19. { "file": "RTAS/juce_RTAS_WinResources.rsr", "target": "msvc" },
  20. { "file": "RTAS/juce_RTAS_WinUtilities.cpp", "target": "msvc", "warnings": "disabled", "stdcall": "1" },
  21. { "file": "RTAS/juce_RTAS_Wrapper.cpp", "warnings": "disabled", "stdcall": "1", "target": "xcode, msvc" },
  22. { "file": "AU/juce_AU_Resources.r", "target": "xcode" },
  23. { "file": "AU/juce_AU_Wrapper.mm", "target": "xcode" },
  24. { "file": "AAX/juce_AAX_Wrapper.cpp", "target": "xcode, msvc" },
  25. { "file": "AAX/juce_AAX_Wrapper.mm", "target": "xcode" }
  26. ],
  27. "browse": [ "AU/*.cpp",
  28. "AU/*.mm",
  29. "AU/*.h",
  30. "RTAS/*.cpp",
  31. "RTAS/*.mm",
  32. "RTAS/*.h",
  33. "VST/*",
  34. "AAX/*",
  35. "utility/*"
  36. ]
  37. }