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:
parent
e77902b5d7
commit
f35fc2e22a
4 changed files with 2465 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -43,3 +43,4 @@ profile
|
|||
**/CodeBlocks/obj
|
||||
**/CodeBlocks/*.depend
|
||||
**/CodeBlocks/*.layout
|
||||
doxygen/doc
|
||||
|
|
|
|||
2440
doxygen/Doxyfile
Normal file
2440
doxygen/Doxyfile
Normal file
File diff suppressed because it is too large
Load diff
10
doxygen/README.txt
Normal file
10
doxygen/README.txt
Normal 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
14
doxygen/footer.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<hr class="footer"/>
|
||||
<address class="footer"><small>All content © 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue