Qbs (build tool)

Qbs
Developer(s) Qt Project, The Qt Company
Initial release February 15, 2012 [1]
Stable release
1.6.1 [2] / November 9, 2016
Repository https://code.qt.io/cgit/qt-labs/qbs.git
Development status Active
Written in C++, Java, JavaScript, QML, TypeScript
Operating system Cross-platform
Type Build Automation, Software development tools
License LGPL[3]
Website https://wiki.qt.io/qbs

Qbs is a cross-platform free and open-source software for managing the build process of software. It is designed to support large, complex projects, written in any number of programming languages, primarily C/C++.

Qbs is an all-in-one tool that generates a build graph from a high-level project description (like its predecessor qmake), and additionally undertakes the task of executing the commands in the low-level build graph (like make). Because Qbs does not generate or rely on Makefiles, this results in incredibly fast incremental builds.

Qbs was originally created by Nokia, and is now primarily developed by The Qt Company, who distributes it along with their Qt toolkit. It integrates with the Qt framework, and automates the creation of moc (meta object compiler) and rcc (resource compiler) sources, which are used in Qt's meta-object system and in the integration of binary resources (e.g. pictures). The developers hope to eventually push for Qbs to replace qmake as Qt's own build system.

Features

Qbs is unique in that it has no mechanism for in-source builds, guaranteeing the ability to create several builds from a single source tree, including building them from a single command invocation and in parallel. This is a key feature, ensuring that source files remain unaffected if a build directory is removed and that no output artifacts are written into the source directory.

Qbs has no built-in support for any particular programming language, toolkit, or library. This is again in contrast to qmake, which hardcodes support for many Qt-related tools and workflows. Instead, Qbs is provided with a set of modules written in a QML dialect and JavaScript that enable support for a variety of programming languages and tools. Qbs currently provides modules supporting the Android SDK and NDK, C, C++, Java, NSIS, TypeScript, WiX, Xcode, and a variety of other tools.

Qbs can build projects for many platforms including Android, FreeBSD, iOS, Linux, macOS, tvOS, watchOS, and Windows, with support for QNX, WinRT and other platforms under development.

Qt Creator provides built-in Qbs support, and IDE integration for Visual Studio and Xcode is currently under development.

Build process

The build process in Qbs takes place in two stages. First, the build graph is resolved by reading the project's configuration files and computing the set of input and output nodes and the dependencies between them in a directed acyclic graph. Then the executor executes all of the commands necessary to create the output files, in parallel according to the dependency rules.

Each build project contains a single build graph (*.bg) file in the directory where Qbs stores the serialized representation of its internal build graph format. Deserializing this file and utilizing the cached information allows Qbs to very quickly resolve the project, leading to near-instant incremental builds. Deleting the build graph file causes a complete (clean) rebuild of the entire project. In contrast to make, Qbs does not rely on timestamps of files in the build directory, and tampering with its contents will not lead to targets being rebuilt unless the—check-outputs option is used. This is done for performance reasons because on some platforms (e.g. Windows), reading timestamps from the filesystem is very slow compared to reading them from the build graph file.

Example Qbs file

import qbs 1.0

Application {
    name: "helloworld"
    files: ["main.cpp"]
    Depends { name: "cpp" }
}

History

Qbs development began at Nokia in the year 2010 in response to the need for a replacement for qmake. Qbs' design aims to provide a much lower learning curve, better integration with IDEs, and a stable and powerful language with predictable behavior. Qbs 1.0 was released in 2013[4] and further developed by the Qt Project beginning around that time. Work is ongoing to port Qt to use Qbs as its build system.

Notable applications that use Qbs

References

  1. "Introducing Qbs". The Qt Company. Retrieved 2016-06-02.
  2. "[QBS] qbs 1.6.1 released". Retrieved 2016-11-15.
  3. "Qt Licensing - Qt Developer Network". qt-project.org.
  4. "qbs 1.0.0 released". The Qt Company. Retrieved 2016-06-02.
This article is issued from Wikipedia - version of the 11/23/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.