Changes between Version 16 and Version 17 of BuildingQtOnLinux
- Timestamp:
- Oct 14, 2007, 6:27:48 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingQtOnLinux
v16 v17 24 24 You'll then need to [http://webkit.org/building/checkout.html check out the source code from Subversion]. The Qt port is part of the WebKit source tree, so you don't need anything extra. 25 25 26 Finally, set the QTDIR environment variable to Qt 4.x's installation path (`/usr/lib/qt4` on Ark Linux, `/usr/share/qt4` on *Ubuntu), and make sure Qt 4.x's qmake is the first qmake in your PATH (typically by running `export PATH=$QTDIR/bin:$PATH`). 26 Finally, set the QTDIR environment variable to Qt 4.x's installation path (`/usr/lib/qt4` on Ark Linux, `/usr/share/qt4` on *Ubuntu), and make sure Qt 4.x's qmake is the first qmake in your PATH (typically by running `export PATH=$QTDIR/bin:$PATH`). If your qmake binary has a different name, e.g. when using Debian, use the --qmake= option to specify the name. 27 27 28 28 Build WebKit and the Qt test browser with 29 29 30 30 {{{ 31 WebKit/WebKitTools/Scripts/build-webkit 31 WebKit/WebKitTools/Scripts/build-webkit --qt 32 }}} 33 34 or 35 36 {{{ 37 WebKit/WebKitTools/Scripts/build-webkit --qt --qmake=qmake-qt4 32 38 }}} 33 39