Difference between revisions of "Compile QT in an ARM device"
Jump to navigation
Jump to search
(5 intermediate revisions by the same user not shown) | |||
Line 21: | Line 21: | ||
qmake | qmake | ||
make | make | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 16:22, 18 August 2019
Compile QT application in an ARM device[edit]
1. Install compiler
apt-get install g++
2. Install required packages
apt-get install qttools5-dev apt-get install qt5-default
3. Install required modules. Examples:
apt-get install libqt5sql5 apt-get install libqt5serialport5-dev apt-get install libqt5websockets5-dev
4. Compile
cd my_dir qmake make