Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
Jom: Difference between revisions
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
= Introduction to jom = | = Introduction to jom = | ||
jom is a clone of nmake to support the execution of multiple independent commands in parallel.<br />It basically adds the -j command line switch similar to GNU make.<br />The original blog post can still be found | jom is a clone of nmake to support the execution of multiple independent commands in parallel.<br />It basically adds the -j command line switch similar to GNU make.<br />The original blog post can still be found "here":http://blog.qt.io/blog/2009/03/27/speeding-up-visual-c-qt-builds/. | ||
== Download the binary package == | == Download the binary package == | ||
A ZIP file, containing the latest stable build, can be downloaded from the Qt Project servers:<br />* the latest stable jom release: | A ZIP file, containing the latest stable build, can be downloaded from the Qt Project servers:<br />* the latest stable jom release: "http://download.qt.io/official_releases/jom/jom.zip":http://download.qt.io/official_releases/jom/jom.zip<br />* the changelog for the latest release: "http://download.qt.io/official_releases/jom/changelog.txt":http://download.qt.io/official_releases/jom/changelog.txt<br />* the latest experimental jom build: "http://download.qt.io/official_releases/jom/unstable-jom.zip":http://download.qt.io/official_releases/jom/unstable-jom.zip<br />* or browse the directory: "http://download.qt.io/official_releases/jom/":http://download.qt.io/official_releases/jom/ | ||
== Reporting Bugs == | == Reporting Bugs == | ||
Please report any bugs in | Please report any bugs in "our bug tracker":https://bugreports.qt.io/.<br />Report it against the Qt Creator project, component 'jom'. | ||
== Getting the Source == | == Getting the Source == | ||
The source code repository is hosted at | The source code repository is hosted at "qt.io":http://qt.io/ and mirrored on "gitorious":http://qt.gitorious.org/qt-labs/jom/. | ||
<code>git clone git://gitorious.org/qt-labs/jom.git<br /></code> | <code>git clone git://gitorious.org/qt-labs/jom.git<br /></code> | ||
Line 25: | Line 25: | ||
in the source directory. | in the source directory. | ||
Further build instructions can be found in the file | Further build instructions can be found in the file "README":http://qt.gitorious.org/qt-labs/jom/blobs/master/README. | ||
== Contributions == | == Contributions == | ||
Line 31: | Line 31: | ||
If you want to contribute code, you can do so by using your [[Setting_up_Gerrit|Qt Project gerrit account]]. | If you want to contribute code, you can do so by using your [[Setting_up_Gerrit|Qt Project gerrit account]]. | ||
<code>git clone git://gitorious.org/qt-labs/jom.git<br />git remote add gerrit | <code>git clone git://gitorious.org/qt-labs/jom.git<br />git remote add gerrit <gerrit-username></code>codereview.qt.io:qt-labs/jom<br />… hack hack hack …<br />git push gerrit HEAD:refs/for/master<br /><code> |
Revision as of 14:10, 24 February 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 "here":http://blog.qt.io/blog/2009/03/27/speeding-up-visual-c-qt-builds/.
Download the binary package
A ZIP file, containing the latest stable build, can be downloaded from the Qt Project servers:
* the latest stable jom release: "http://download.qt.io/official_releases/jom/jom.zip":http://download.qt.io/official_releases/jom/jom.zip
* the changelog for the latest release: "http://download.qt.io/official_releases/jom/changelog.txt":http://download.qt.io/official_releases/jom/changelog.txt
* the latest experimental jom build: "http://download.qt.io/official_releases/jom/unstable-jom.zip":http://download.qt.io/official_releases/jom/unstable-jom.zip
* or browse the directory: "http://download.qt.io/official_releases/jom/":http://download.qt.io/official_releases/jom/
Reporting Bugs
Please report any bugs in "our bug tracker":https://bugreports.qt.io/.
Report it against the Qt Creator project, component 'jom'.
Getting the Source
The source code repository is hosted at "qt.io":http://qt.io/ and mirrored on "gitorious":http://qt.gitorious.org/qt-labs/jom/.
git clone git://gitorious.org/qt-labs/jom.git<br />
Building is usually done by simply invoking
qmake -r<br />nmake<br />
in the source directory.
Further build instructions can be found in the file "README":http://qt.gitorious.org/qt-labs/jom/blobs/master/README.
Contributions
If you want to contribute code, you can do so by using your Qt Project gerrit account.
git clone git://gitorious.org/qt-labs/jom.git<br />git remote add gerrit <gerrit-username>
codereview.qt.io:qt-labs/jom
… hack hack hack …
git push gerrit HEAD:refs/for/master