From e689d4597bfd62f3d1343ab707094e9cf17a9378 Mon Sep 17 00:00:00 2001 From: EndrII Date: Mon, 24 Oct 2022 22:48:45 +0300 Subject: [PATCH] addee article for building cqtdeployer on arm platform --- md/en/Home.md | 1 + md/en/arm.md | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 md/en/arm.md diff --git a/md/en/Home.md b/md/en/Home.md index 3953aa3..c3301da 100644 --- a/md/en/Home.md +++ b/md/en/Home.md @@ -20,6 +20,7 @@ * [Default Environment Variables](EnvironmentVariables.md) * [Disable standard shortcuts ](DisableShortcats.md) * [Custom scripts](CustomScripts.md) +* [CQtDeployer for arm](arm.md) ## Support the project diff --git a/md/en/arm.md b/md/en/arm.md new file mode 100644 index 0000000..70100d3 --- /dev/null +++ b/md/en/arm.md @@ -0,0 +1,56 @@ +# CQtDeployer for arm machines + + +At this time, cqtdeployer does not have precompiled distributions for arm platform. But it supports deploy arm applications, so the best solution for install cqtdeployer tool to arm host is building from source. + +## Build + +You can read a main article of building cqtdeployer from source [here](Build-and-install.md) + +## Qt installer framework. + +The QIFW not available for arm platforms. So if you want to create classic installers you need to build Qt installer framework from [source](https://github.com/qtproject/installer-framework). + +## build from source + +- clone project + + ``` bash + git clone https://github.com/QuasarApp/CQtDeployer.git + git submodule update --init --recursive + cd CQtDeployer + ``` + +- create temp build directory + + ``` bash + mkdir build + cd build + ``` + +- Install qt from package manager (for example apt on ubuntu) + + ``` bash + sudo apt install qt6-base-dev + ``` + +- run cmake + + ``` bash + cmake .. -DBUILD_SHARED_LIBS=0 -DCQT_DEPLOYER_TESTS=0 + ``` + +- build cqtdeployer + + ``` bash + make -j8 + ``` + +- create cqtdeployer executable. + + ``` bash + make install + ``` + + +Done. Now you can add cqtdeployer into your PATH variable and use it.