Script for generation documentations.

--HG--
branch : feature
This commit is contained in:
dismine 2014-05-06 15:07:52 +03:00
parent 707598691d
commit f93cd5703c
5 changed files with 10 additions and 4 deletions

View File

@ -24,6 +24,7 @@ moc/
obj/ obj/
uic/ uic/
rcc/ rcc/
man/
# Ignore file used QtCreator for user profile. # Ignore file used QtCreator for user profile.
*.pro.user *.pro.user

View File

@ -1,5 +1,10 @@
#!/bin/sh #!/bin/sh
# Script generate developer documentation for progect. # Script generate developer documentation for whole progect.
# Output directory doc/ # Output directories src/app/doc/, src/libs/qmuparser/doc/
# Run from root directory of project # Run from "scripts" directory
cd ..
cd src/app
doxygen doc/doxygen/Doxyfile
cd ..
cd libs/qmuparser
doxygen doc/doxygen/Doxyfile doxygen doc/doxygen/Doxyfile

View File

@ -1434,7 +1434,7 @@ RTF_EXTENSIONS_FILE =
# If the GENERATE_MAN tag is set to YES (the default) Doxygen will # If the GENERATE_MAN tag is set to YES (the default) Doxygen will
# generate man pages # generate man pages
GENERATE_MAN = YES GENERATE_MAN = NO
# The MAN_OUTPUT tag is used to specify where the man pages will be put. # The MAN_OUTPUT tag is used to specify where the man pages will be put.
# If a relative path is entered the value of OUTPUT_DIRECTORY will be # If a relative path is entered the value of OUTPUT_DIRECTORY will be

View File

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB