Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added sources into documentation #727

Merged
merged 2 commits into from
Oct 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doxygen.conf.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions src/Deploy/src/deploy.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,


Expand Down