From f93cd5703cf85f0d070159a9db3901d71f53d8ee Mon Sep 17 00:00:00 2001 From: dismine Date: Tue, 6 May 2014 15:07:52 +0300 Subject: [PATCH] Script for generation documentations. --HG-- branch : feature --- .hgignore | 1 + scripts/makedoc.sh | 11 ++++++++--- {doc => src/app/doc}/doxygen/Doxyfile | 2 +- {doc => src/app/doc}/doxygen/logo.png | Bin src/libs/qmuparser/doc/{ => doxygen}/Doxyfile | 0 5 files changed, 10 insertions(+), 4 deletions(-) rename {doc => src/app/doc}/doxygen/Doxyfile (99%) rename {doc => src/app/doc}/doxygen/logo.png (100%) rename src/libs/qmuparser/doc/{ => doxygen}/Doxyfile (100%) diff --git a/.hgignore b/.hgignore index bdc63555d..88129a4c3 100644 --- a/.hgignore +++ b/.hgignore @@ -24,6 +24,7 @@ moc/ obj/ uic/ rcc/ +man/ # Ignore file used QtCreator for user profile. *.pro.user diff --git a/scripts/makedoc.sh b/scripts/makedoc.sh index a81f00073..7ed988724 100755 --- a/scripts/makedoc.sh +++ b/scripts/makedoc.sh @@ -1,5 +1,10 @@ #!/bin/sh -# Script generate developer documentation for progect. -# Output directory doc/ -# Run from root directory of project +# Script generate developer documentation for whole progect. +# Output directories src/app/doc/, src/libs/qmuparser/doc/ +# Run from "scripts" directory +cd .. +cd src/app +doxygen doc/doxygen/Doxyfile +cd .. +cd libs/qmuparser doxygen doc/doxygen/Doxyfile diff --git a/doc/doxygen/Doxyfile b/src/app/doc/doxygen/Doxyfile similarity index 99% rename from doc/doxygen/Doxyfile rename to src/app/doc/doxygen/Doxyfile index 1bee6be26..c640e0748 100644 --- a/doc/doxygen/Doxyfile +++ b/src/app/doc/doxygen/Doxyfile @@ -1434,7 +1434,7 @@ RTF_EXTENSIONS_FILE = # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages -GENERATE_MAN = YES +GENERATE_MAN = NO # 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 diff --git a/doc/doxygen/logo.png b/src/app/doc/doxygen/logo.png similarity index 100% rename from doc/doxygen/logo.png rename to src/app/doc/doxygen/logo.png diff --git a/src/libs/qmuparser/doc/Doxyfile b/src/libs/qmuparser/doc/doxygen/Doxyfile similarity index 100% rename from src/libs/qmuparser/doc/Doxyfile rename to src/libs/qmuparser/doc/doxygen/Doxyfile