1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-08 23:24:19 +00:00
JUCE/docs
2025-11-26 10:32:20 +00:00
..
doxygen Docs: Show the paths to the files used to generate the Doxygen output 2025-09-29 10:20:36 +01:00
Accessibility.md Docs: Update the supported accessibility clients 2022-10-27 13:06:13 +01:00
ARA.md ARA: Update expected ARA SDK version to 2.2.0 2022-11-14 16:34:12 +00:00
CMake API.md Docs: Correct VST3_CATEGORIES defaults in CMake API 2025-11-26 10:32:20 +00:00
JUCE Module Format.md MinGW: Remove support 2024-06-27 18:10:21 +01:00
Linux Dependencies.md Docs: Remove duplicate apt dependency 2024-08-27 14:51:45 +01:00
README.md Updated main README with CMake support info and changed docs extension from .txt to .md 2020-06-29 08:30:00 +01:00

JUCE Documentation

This directory contains files documenting the JUCE Module Format, and the JUCE CMake API.

The JUCE modules themselves can be found in the modules subdirectory of the JUCE repository.

CMake example projects are located in the examples/CMake directory.

The JUCE API itself is documented inline, but HTML docs can be generated from the source code using the doxygen tool. These HTML docs can be found online, or you can generate a local copy which can be used without an internet connection. For instructions on generating offline docs, see below.

Generating Offline HTML Documentation

Dependencies

  • doxygen
  • python
  • make
  • graphviz (to generate inheritance diagrams)

Make sure that all the dependencies can be found on your PATH.

Building

  • cd into the doxygen directory on the command line
  • run make

Doxygen will create a new subdirectory "doc". Open doc/index.html in your browser to access the generated HTML documentation.