juce_module_info 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "id": "juce_gui_basics",
  3. "name": "JUCE GUI core classes",
  4. "version": "3.1.1",
  5. "description": "Basic user-interface components and related classes.",
  6. "website": "http://www.juce.com/juce",
  7. "license": "GPL/Commercial",
  8. "dependencies": [ { "id": "juce_core", "version": "matching" },
  9. { "id": "juce_events", "version": "matching" },
  10. { "id": "juce_graphics", "version": "matching" },
  11. { "id": "juce_data_structures", "version": "matching" } ],
  12. "include": "juce_gui_basics.h",
  13. "compile": [ { "file": "juce_gui_basics.cpp", "target": "! xcode" },
  14. { "file": "juce_gui_basics.mm", "target": "xcode" } ],
  15. "browse": [ "components/*",
  16. "mouse/*",
  17. "keyboard/*",
  18. "widgets/*",
  19. "windows/*",
  20. "menus/*",
  21. "layout/*",
  22. "buttons/*",
  23. "positioning/*",
  24. "drawables/*",
  25. "properties/*",
  26. "lookandfeel/*",
  27. "filebrowser/*",
  28. "commands/*",
  29. "misc/*",
  30. "application/*",
  31. "native/*" ],
  32. "OSXFrameworks": "Cocoa Carbon QuartzCore",
  33. "iOSFrameworks": "UIKit",
  34. "LinuxLibs": "X11 Xinerama Xext"
  35. }