Merge pull request #727 from QuasarApp/task_497

Added sources into documentation
This commit is contained in:
Andrei Yankovich 2022-10-24 23:28:50 +03:00 committed by GitHub
commit 7981394759
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

@ -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

View File

@ -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,