Qbs: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
m (remove cleanup notice)
m (Fixed up the formatting)
(12 intermediate revisions by 11 users not shown)
Line 1: Line 1:
{{LangSwitch}}
[[Category:Tools::qbs]]
[[Category:Tools::qbs]]


= Qt Build Suite =
{{WarningBox|text=The Qt Company announced that it will discontinue the further development of Qbs by the end of 2019 [https://blog.qt.io/blog/2018/10/29/deprecation-of-qbs/ deprecated]. The project is maintained by the community as part of the Qt Project.}}


* [http://blog.qt.io/blog/2012/02/15/introducing-qbs/ Initial Introduction]
* [http://blog.qt.io/blog/2012/02/15/introducing-qbs/ Initial Introduction]
Line 7: Line 8:
* [http://doc.qt.io/qbs Online Documentation]
* [http://doc.qt.io/qbs Online Documentation]
* [http://lists.qt-project.org/mailman/listinfo/qbs Mailing List]
* [http://lists.qt-project.org/mailman/listinfo/qbs Mailing List]
* IRC channel: #qt-qbs on freenode
* <s>IRC channel: #qbs on freenode</s>
* Discord server: https://discord.gg/ZXT6YKq
* [[Qbs-Example|Small Example]]
* [[Qbs-Example|Small Example]]


Line 16: Line 18:
== Getting the Source ==
== Getting the Source ==


The source code repository is hosted at [https://codereview.qt-project.org/#/admin/projects/qt-labs/qbs codereview.qt-project.org] and mirrored on [http://qt.gitorious.org/qt-labs/qbs/ gitorious].
The source code repository is hosted at [https://codereview.qt-project.org/#/admin/projects/qbs/qbs codereview.qt-project.org] and mirrored on [http://code.qt.io/cgit/qbs/qbs.git/ code.qt.io].


<code>
git clone git://code.qt.io/qbs/qbs.git
git clone git://gitorious.org/qt-labs/qbs.git
</code>


To build qbs simply do
To build qbs simply do


<code>
qmake -r qbs.pro
qmake -r qbs.pro
make
make
</code>


in the source directory.
in the source directory.
Line 33: Line 31:
== Binary Releases ==
== Binary Releases ==


Binary releases of Qbs are currently only available for Windows and can be downloaded from: http://download.qt.io/official_releases/qbs/.
Binary releases of Qbs are available as part of Qt Creator and the Qt SDK. See [http://doc.qt.io/qbs/installing.html the section about installation] in the Qbs manual.


== Contributions ==
== Contributions ==


You can contribute code according to the Qt Project's contribution guidelines.
You can contribute code according to the [[Qt_Contribution_Guidelines|Qt Project's contribution guidelines]].


<code>
git clone git://code.qt.io/qbs/qbs.git
git clone git://gitorious.org/qt-labs/qbs.git
git remote add gerrit ssh://<gerrit-username>@codereview.qt-project.org:29418/qbs/qbs
git remote add gerrit <gerrit-username>@codereview.qt.io:qt-labs/qbs
… hack hack hack …
… hack hack hack …
git push gerrit HEAD:refs/for/master
git push gerrit HEAD:refs/for/master
</code>

Revision as of 20:03, 21 September 2021

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

The Qt Company announced that it will discontinue the further development of Qbs by the end of 2019 deprecated. The project is maintained by the community as part of the Qt Project.

Reporting Bugs

Please report any bugs in our bug tracker at https://bugreports.qt.io/browse/QBS .

Getting the Source

The source code repository is hosted at codereview.qt-project.org and mirrored on code.qt.io.

git clone git://code.qt.io/qbs/qbs.git

To build qbs simply do

qmake -r qbs.pro
make

in the source directory.

Binary Releases

Binary releases of Qbs are available as part of Qt Creator and the Qt SDK. See the section about installation in the Qbs manual.

Contributions

You can contribute code according to the Qt Project's contribution guidelines.

git clone git://code.qt.io/qbs/qbs.git
git remote add gerrit ssh://<gerrit-username>@codereview.qt-project.org:29418/qbs/qbs
… hack hack hack …
git push gerrit HEAD:refs/for/master