Qt
Qt is a cute framework for creating graphical user interfaces (GUIs).
Using the provided project template, getting started with Qt development is easy.
Contents
- Prerequisites
- Building a Conan package of Qt
- Building the example / project template
- Executing the binary
- Using Qt Creator for development
- Creating a portable zip of the executable
Prerequisites
C++ build tools
Debian
Install build tools using apt:
apt install build-essential
Windows
Download and install Visual Studio Build Tools.
The whole Visual Studio (IDE) is not needed. The build tools are sufficient.
https://visualstudio.microsoft.com/downloads/
Python & Conan
Debian
Install Python using apt:
apt install python3
Install Conan using pip:
pip3 install conan
Windows
Download and install Python:
https://www.python.org/downloads/
Install Conan using pip:
pip install conan
Qt Creator (IDE)
Debian
Install Qt Creator using apt:
apt install qtcreator
Windows
Download and install Qt Creator:
https://download.qt.io/official_releases/qtcreator/
You do not need to register during installation if you enter a proxy that does not work.
Building a Conan package of Qt
Download the package recipe for Qt to a folder named "qt":
mkdir qt
cd qt
curl https://gernot-walzl.at/C++/Qt/conanfile.py -o conanfile.py
Create the package by specifying the directory with the recipe:
cd ..
conan create qt
Building Qt may take an hour.
Building the example / project template
Download the project template and extract it:
curl https://gernot-walzl.at/C++/Qt/HelloQt-0.1.0.tar.gz -o HelloQt-0.1.0.tar.gz
tar xvf HelloQt-0.1.0.tar.gz
cd HelloQt
Build the project:
mkdir build
cd build
conan install -g virtualrunenv ..
conan build ..
Executing the binary
The built executable is linked against shared libraries. Launching the executable,
requires these shared libraries to be found. By activating the virtual environment,
environment variables (e.g. PATH) are set so that the correct libraries are found.
Activate the environment:
cd build
source activate_run.sh
or activate_run.bat
If the environment has been activated, (conanrunenv)
is shown at the command prompt.
Execute the binary:
./bin/HelloQt
or bin\Release\HelloQt.exe
Using Qt Creator for development
Activate the environment:
cd build
source activate_run.sh
or activate_run.bat
Launch Qt Creator:
qtcreator
The environment (conanrunenv)
enables Qt Creator to automatically detect
settings used for building and running the project.
Creating a portable zip of the executable
Export the package:
cd build
conan export-pkg ..
Because of the scm attribute in the package recipe conanfile.py
,
the package can only be exported if the source code is part of a git repository.
Install the binary package in a folder called "dist":
mkdir dist
cd dist
conan install HelloQt/0.1.0@_/_
By calling conan install
, the deploy method of the package recipe conanfile.py
copies the executable and all required shared libraries.
Create a zip of the folder containing the binaries:
zip -r HelloQt-0.1.0.zip HelloQt
CONTENT.html | 2020-12-15 | 5.5 KB |
HelloQt-0.1.0.tar.gz | 2020-12-17 | 2.2 KB |
conanfile.py | 2020-12-17 | 4.1 KB |
from conans import ConanFile, tools import shutil class QtConan(ConanFile): name = "qt" version = "5.12.10" |