Mercurial > trustbridge
comparison doc/Doxyfile.in @ 536:82770fa41af9
Improve documentation config
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Tue, 29 Apr 2014 16:57:04 +0000 |
parents | de67047ca229 |
children |
comparison
equal
deleted
inserted
replaced
535:a2998ae79436 | 536:82770fa41af9 |
---|---|
24 | 24 |
25 # The PROJECT_NAME tag is a single word (or sequence of words) that should | 25 # The PROJECT_NAME tag is a single word (or sequence of words) that should |
26 # identify the project. Note that if you do not use Doxywizard you need | 26 # identify the project. Note that if you do not use Doxywizard you need |
27 # to put quotes around the project name if it contains spaces. | 27 # to put quotes around the project name if it contains spaces. |
28 | 28 |
29 PROJECT_NAME = "M13" | 29 PROJECT_NAME = "TrustBridge" |
30 | 30 |
31 # The PROJECT_NUMBER tag can be used to enter a project or revision number. | 31 # The PROJECT_NUMBER tag can be used to enter a project or revision number. |
32 # This could be handy for archiving the generated documentation or | 32 # This could be handy for archiving the generated documentation or |
33 # if some version control system is used. | 33 # if some version control system is used. |
34 | 34 |
35 PROJECT_NUMBER = | 35 PROJECT_NUMBER = @PROJECT_VERSION@ |
36 | 36 |
37 # Using the PROJECT_BRIEF tag one can provide an optional one line description | 37 # Using the PROJECT_BRIEF tag one can provide an optional one line description |
38 # for a project that appears at the top of each page and should give viewer | 38 # for a project that appears at the top of each page and should give viewer |
39 # a quick idea about the purpose of the project. Keep the description short. | 39 # a quick idea about the purpose of the project. Keep the description short. |
40 | 40 |
41 PROJECT_BRIEF = | 41 PROJECT_BRIEF = Installs and updates Root Certificates |
42 | 42 |
43 # With the PROJECT_LOGO tag one can specify an logo or icon that is | 43 # With the PROJECT_LOGO tag one can specify an logo or icon that is |
44 # included in the documentation. The maximum height of the logo should not | 44 # included in the documentation. The maximum height of the logo should not |
45 # exceed 55 pixels and the maximum width should not exceed 200 pixels. | 45 # exceed 55 pixels and the maximum width should not exceed 200 pixels. |
46 # Doxygen will copy the logo to the output directory. | 46 # Doxygen will copy the logo to the output directory. |
47 | 47 |
48 PROJECT_LOGO = | 48 PROJECT_LOGO = @CMAKE_SOURCE_DIR@/ui/img/logo.png |
49 | 49 |
50 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) | 50 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) |
51 # base path where the generated documentation will be put. | 51 # base path where the generated documentation will be put. |
52 # If a relative path is entered, it will be relative to the location | 52 # If a relative path is entered, it will be relative to the location |
53 # where doxygen was started. If left blank the current directory will be used. | 53 # where doxygen was started. If left blank the current directory will be used. |
353 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in | 353 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in |
354 # documentation are documented, even if no documentation was available. | 354 # documentation are documented, even if no documentation was available. |
355 # Private class members and static file members will be hidden unless | 355 # Private class members and static file members will be hidden unless |
356 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES | 356 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES |
357 | 357 |
358 EXTRACT_ALL = NO | 358 EXTRACT_ALL = YES |
359 | 359 |
360 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class | 360 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class |
361 # will be included in the documentation. | 361 # will be included in the documentation. |
362 | 362 |
363 EXTRACT_PRIVATE = NO | 363 EXTRACT_PRIVATE = YES |
364 | 364 |
365 # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal scope will be included in the documentation. | 365 # If the EXTRACT_PACKAGE tag is set to YES all members with package or internal scope will be included in the documentation. |
366 | 366 |
367 EXTRACT_PACKAGE = NO | 367 EXTRACT_PACKAGE = NO |
368 | 368 |
369 # If the EXTRACT_STATIC tag is set to YES all static members of a file | 369 # If the EXTRACT_STATIC tag is set to YES all static members of a file |
370 # will be included in the documentation. | 370 # will be included in the documentation. |
371 | 371 |
372 EXTRACT_STATIC = NO | 372 EXTRACT_STATIC = YES |
373 | 373 |
374 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) | 374 # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) |
375 # defined locally in source files will be included in the documentation. | 375 # defined locally in source files will be included in the documentation. |
376 # If set to NO only classes defined in header files are included. | 376 # If set to NO only classes defined in header files are included. |
377 | 377 |