Skip to content

Releasing Guide (platform agnostic)

Piyush Aggarwal edited this page Oct 6, 2020 · 2 revisions

Software used: CQtDeployer

  1. install Qt creator from online/ offline installer

  2. load the project

  3. make a release build from Qt Creator

  4. install CQtDeployer

  5. 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` 
  6. that's it. You're done.

Clone this wiki locally