This is an old revision of the document!


Qt

How to get up and running using Qt on Linux.

Environment

Kali Linux

Operating System

Windows 10 WSL1

Update

sudo -s
apt update
apt full-upgrade
apt autoremove

Install

Qt5

Creator

apt install qtcreator

Base

apt install qtbase5-dev

Serial

apt install qt5serialport-examples libqt5serialport5-dev

Strip

strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt5Core.so.5
Qt6

This section is incomplete at this time.

Base

apt install qt6-base-dev

Strip

strip --remove-section=.note.ABI-tag /usr/lib/x86_64-linux-gnu/libQt6Core.so.6

Demo

qtcreator
Create Project...
  Application (Qt)
    Qt Console Application
      Name: QApp
      Build system: qmake
      Language: <none>
      Kit Selection: Desktop

main.cpp

#include <QCoreApplication>
#include <iostream>

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);

    std::cout << "Hello World!\r\n";
}
qmake
make
./QApp
Hello World!
This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies