1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Added facility to generate the API reference of JUCE as offline HTML using Doxygen.

This commit is contained in:
Timur Doumler 2015-08-10 15:32:28 +01:00
parent e77902b5d7
commit f35fc2e22a
4 changed files with 2465 additions and 0 deletions

1
.gitignore vendored
View file

@ -43,3 +43,4 @@ profile
**/CodeBlocks/obj
**/CodeBlocks/*.depend
**/CodeBlocks/*.layout
doxygen/doc

2440
doxygen/Doxyfile Normal file

File diff suppressed because it is too large Load diff

10
doxygen/README.txt Normal file
View file

@ -0,0 +1,10 @@
# The JUCE API Reference
From here, you can generate an offline HTML version of the JUCE API Reference.
How to:
1. install doxygen
2. cd into this directory on the command line
3. run doxygen (no additional arguments needed)
4. doxygen will create a new subfolder "doc". Open doc/index.html in your browser to access the generated HTML documentation.

14
doxygen/footer.html Normal file
View file

@ -0,0 +1,14 @@
<hr class="footer"/>
<address class="footer"><small>All content &copy ROLI Ltd.</small></address><br/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19759318-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>