Jom: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(purged gitorious)
Line 22: Line 22:
== Getting the Source ==
== Getting the Source ==


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


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


Line 37: Line 37:
in the source directory.
in the source directory.


Further build instructions can be found in [http://qt.gitorious.org/qt-labs/jom/blobs/master/README README].
Further build instructions can be found in [http://code.qt.io/cgit/qt-labs/jom.git/tree/README README].


== Contributions ==
== Contributions ==
Line 44: Line 44:


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

Revision as of 13:13, 10 April 2015


Introduction to jom

jom is a clone of nmake to support the execution of multiple independent commands in parallel. It basically adds the -j command line switch similar to GNU make. The original blog post can still be found on the Qt blog.

Download the binary package

A ZIP file, containing the latest stable build, can be downloaded from the Qt Project servers:

Reporting Bugs

Please report any bugs in our bug tracker. Report it against the Qt Creator project, component 'jom'.

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/qt-labs/jom.git

Building is usually done by simply invoking

qmake -r
nmake

in the source directory.

Further build instructions can be found in README.

Contributions

If you want to contribute code, you can do so by using your Qt Project gerrit account.

git clone git://code.qt.io/qt-labs/jom.git
git remote add gerrit <gerrit-username>@codereview.qt.io:qt-labs/jom
 hack hack hack 
git push gerrit HEAD:refs/for/master