16 lines
501 B
Markdown
Raw Normal View History

2018-12-26 20:13:14 +03:00
# This example for packing apps to snap
You nead build your project with own qt version
2018-12-26 20:10:58 +03:00
```
git clone https://github.com/QuasarApp/Console-QtDeployer.git
Console-QtDeployer
cd examples/TestQMLWidgets
/path/to/your/qmake/bin/qmake TestQMLWidgets.pro
make
cqtdeployer -bin ./build/TestQMLWidgets -qmake /path/to/your/qmake/bin/qmake -qmlDir ./ -targetDir ./distro
snapcraft
snap install cqtdeployerexample_0.1_amd64.snap --dangerous
cqtdeployerexample
```
2018-12-26 20:13:14 +03:00
Done!