Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 640 Bytes

native_compile_qt.md

File metadata and controls

35 lines (22 loc) · 640 Bytes

Native Compiled Qt Setup Guide

  • Download the prebuild release. Extract the file to /opt
sudo tar xvf qt-5.12.12-aarch64.tar.gz -C /opt
  • Setup enviroment
echo "export PATH=/opt/qt-5.12.12/bin:$PATH" >> ~/.bashrc
source ~/.bashrc
  • Try qmake.
qmake --version

Intergrated with qtcreator

  1. Setup kits, select Qt Version qt_version

  2. Select compiler.

qt_compiler

  1. Apply settings in kits

apply

With the right qmake and compiler, you may now build and run your app locally.