-
Notifications
You must be signed in to change notification settings - Fork 3
Releasing Guide (platform agnostic)
Piyush Aggarwal edited this page Oct 6, 2020
·
2 revisions
Software used: CQtDeployer
-
install Qt creator from online/ offline installer
-
load the project
-
make a release build from Qt Creator
-
install CQtDeployer
-
run this command:-
cqtdeployer -bin ~/build-stegano-Desktop-Release/stegano -qmlDir ~/stegano -targetDir ~/release -recursiveDepth 3
> - pass the binary(relative address) to CQtDeployer : `-bin ~/build-stegano-Desktop-Release` > - pass qmldir location so it can pick up all the QMLs used : `-qmlDir ~/stegano` > - pass targetDir where all the release files should assemble : `-targetDir ~/release/` > - recursively add dependencies for 3 levels of build deps : `-recursiveDepth 3`
-
that's it. You're done.