From c0e2466eb24b23679305ce79d07c47640ea07c21 Mon Sep 17 00:00:00 2001 From: EndrII Date: Mon, 24 Oct 2022 23:21:49 +0300 Subject: [PATCH 1/2] added sources into documentation --- doxygen.conf.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doxygen.conf.in b/doxygen.conf.in index a48d573e..2c197e48 100644 --- a/doxygen.conf.in +++ b/doxygen.conf.in @@ -791,7 +791,8 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = ./md +INPUT = ./md \ + ./src # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses From b7b3dc44e480a83c3caa5c3024c326133cd12a3f Mon Sep 17 00:00:00 2001 From: EndrII Date: Mon, 24 Oct 2022 23:25:30 +0300 Subject: [PATCH 2/2] fix docs of exit codes --- src/Deploy/src/deploy.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Deploy/src/deploy.h b/src/Deploy/src/deploy.h index fa2d04b7..86d9c248 100644 --- a/src/Deploy/src/deploy.h +++ b/src/Deploy/src/deploy.h @@ -22,13 +22,13 @@ class Packing; * @brief The exitCodes enum contains all general erro codes of the CQtDeployer tool. */ enum exitCodes { - // CQtDeployer are deployed project successful. (no error) + /// CQtDeployer are deployed project successful. (no error) Good = 0x0, - // CQtDeployer failed in the reading arguments. (fail to parse of input arguments) + /// CQtDeployer failed in the reading arguments. (fail to parse of input arguments) PrepareError = 0x1, - // CQtDeployer failed in the deploy step. Fail to copy deployed files. + /// CQtDeployer failed in the deploy step. Fail to copy deployed files. DeployError = 0x2, - // CQtDeployer failed in the prepare package step. Fail to create a result pacakge. + /// CQtDeployer failed in the prepare package step. Fail to create a result pacakge. PackingError = 0x3,