4
1
mirror of https://github.com/QuasarApp/CQtDeployer.git synced 2025-05-01 20:19:36 +00:00

Merge branch 'v1.3' of github.com:QuasarApp/Console-QtDeployer into v1.3

This commit is contained in:
Andrei Yankovich 2019-09-15 11:54:24 +03:00
commit 5055d2518f
2 changed files with 2 additions and 8 deletions

@ -32,8 +32,6 @@ public:
friend class deploytest; friend class deploytest;
}; };
#endif // DEPLOY_H #endif // DEPLOY_H

@ -153,7 +153,7 @@ RunMode DeployCore::getMode() {
return RunMode::Info; return RunMode::Info;
} }
QString DeployCore::help() { void DeployCore::help() {
QStringList help = { QStringList help = {
{ "CQtDeployer version: " + getAppVersion()}, { "CQtDeployer version: " + getAppVersion()},
@ -161,16 +161,12 @@ QString DeployCore::help() {
{ "" }, { "" },
{ "Options:" }, { "Options:" },
{ " help / h : Shows help." }, { " help / h : Shows help." },
{ " noOverwrite : Prevents replacing existing files." }, { " always-overwrite : Copies files and replaces the existing ones." },
{ " -bin [list, params] : Deployable file or folder." }, { " -bin [list, params] : Deployable file or folder." },
{ " | For example -bin /my/project/bin/,/my/project/bin.exe" }, { " | For example -bin /my/project/bin/,/my/project/bin.exe" },
{ " -binDir [params] : A folder which includes deployable files (recursive search)." }, { " -binDir [params] : A folder which includes deployable files (recursive search)." },
{ " | WARNING: this flag supports 'so', 'dll' and 'exe' files only." }, { " | WARNING: this flag supports 'so', 'dll' and 'exe' files only." },
{ " | Use '-bin' flag if you want to deploy linux binary files" }, { " | Use '-bin' flag if you want to deploy linux binary files" },
{ " -confFile [params] : Path to json file with all deploy config" },
{ " | Using this file, you can add the necessary options, " },
{ " | thereby simplifying the command call in the console. "},
{ " | However, the parameters in Kansol have a higher priority than in the file. "},
{ " -qmlDir [params] : Qml data dir. For example -qmlDir ~/my/project/qml" }, { " -qmlDir [params] : Qml data dir. For example -qmlDir ~/my/project/qml" },
{ " deploySystem : Deploys all libs" }, { " deploySystem : Deploys all libs" },
{ " noLibc : Skip Deploys libc and ld-linux libs" }, { " noLibc : Skip Deploys libc and ld-linux libs" },