]>
Commit | Line | Data |
---|---|---|
85e43f4e FM |
1 | ############################################################################# |
2 | ## Name: Doxyfile.chm | |
3 | ## Purpose: Doxygen configuration file for generating CHM only | |
4 | ## Author: Francesco Montorsi | |
189dea29 | 5 | ## RCS-ID: $Id$ |
85e43f4e FM |
6 | ## Licence: wxWindows license |
7 | ############################################################################# | |
8 | ||
be151c9a | 9 | @INCLUDE = Doxyfile_inc |
85e43f4e FM |
10 | |
11 | #--------------------------------------------------------------------------- | |
12 | # Generation switches | |
13 | #--------------------------------------------------------------------------- | |
14 | ||
15 | GENERATE_HTMLHELP = YES | |
16 | GENERATE_HTML = NO | |
17 | GENERATE_XML = NO | |
18 | ||
19 | GENERATE_LATEX = NO | |
20 | GENERATE_RTF = NO | |
21 | GENERATE_MAN = NO | |
22 | GENERATE_PERLMOD = NO | |
23 | GENERATE_AUTOGEN_DEF = NO | |
b76b3427 | 24 | GENERATE_TAGFILE = |
85e43f4e | 25 | |
3a776fb3 FM |
26 | # Notes about the HTML HELP COMPILER (hhc): |
27 | # hhc is the compiler used to produce CHM files from the HTML sources. | |
28 | # | |
29 | # => for Windows: | |
30 | # you can download it for free from MS website: | |
31 | # http://www.microsoft.com/downloads/details.aspx?FamilyID=00535334-c8a6-452f-9aa0-d597d16580cc&displaylang=en | |
32 | # then set the HHC_PATH environment variable to the folder where you | |
33 | # installed HHC; see e.g. http://www.computerhope.com/issues/ch000549.htm | |
34 | # for more info about how to set env variables in WinXP or newer. | |
35 | # | |
36 | # => for Unix: | |
37 | # you can install the Windows version of the compiler under WINE | |
38 | # (http://www.winehq.org/) following the instructions placed here: | |
39 | # http://appdb.winehq.org/objectManager.php?sClass=application&iId=2140 | |
40 | # then you can place hhc.exe executable in your PATH; e.g. you can add to | |
41 | # your ~/.bashrc (if you use bash): | |
42 | # PATH=$PATH:~/.wine/drive_c/Programmi/HTMLHelpWorkshop/hhc | |
43 | # export PATH | |
44 | # | |
45 | HHC_LOCATION = hhc.exe |