CQtDeployer/md/en/arm.md
2022-10-24 22:56:13 +03:00

1.4 KiB

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.

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.

Build from source

  • clone project

    git clone https://github.com/QuasarApp/CQtDeployer.git
    git submodule update --init --recursive
    cd CQtDeployer
    
  • create temp build directory

    mkdir build 
    cd build
    
  • Install qt from package manager (for example apt on ubuntu)

    sudo apt install qt6-base-dev
    
  • run cmake

    cmake .. -DBUILD_SHARED_LIBS=0 -DCQT_DEPLOYER_TESTS=0
    
  • build cqtdeployer

    make -j8
    
  • create cqtdeployer executable.

    make install 
    

Done. Now you can add cqtdeployer into your PATH variable and use it or create symbol link to cqtdeployer executable in /bin folder.

ln -s ./bin/CQtDeployer /bin/cqtdeployer