Shared imports and modules for projects using the qbs build system.
You need qbs >= 1.11.0 to build this project.
Qbs is a new build system that is much easier to use compared to qmake or CMake.
If you want to learn more, please read the Qbs manual, especially the setup guide and how to install artifacts from the installation guide.
From the root of the repository, run:
qbs setup-toolchains --type gcc /usr/bin/g++ gcc
qbs setup-qt /usr/bin/qmake-qt5 qt5
qbs config profiles.qt5.baseProfile gccThen, from the root of the repository, run:
qbs -d build -j $(nproc) profile:qt5 # use sudo if necessaryTo the qbs call above you can append additional configuration parameters:
project.prefix:/path/to/prefixQbs installation prefix (default:/usr/local)project.qbsModulesDir:/path/to/qbswhere Qbs modules are installed (default:/usr/local/share/qbs/modules)project.qbsImportDir:/path/to/qbswhere Qbs modules are installed (default:/usr/local/share/qbs/imports)
Licensed under the terms of the BSD 3 Clause license.