Changes between Version 18 and Version 19 of BuildingQtOnLinux
- Timestamp:
- Nov 21, 2007, 8:13:44 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingQtOnLinux
v18 v19 3 3 = Building the Qt port on Linux = 4 4 5 These instructions apply to Linux in general with source packages , Ubuntu Linux 6.10 (Edgy Eft) and Ark Linux.5 These instructions apply to Linux in general with source packages. 6 6 7 7 == Dependencies == … … 22 22 23 23 == Build WebKit == 24 You'll thenneed 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.24 You'll 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`). If your qmake binary has a different name, e.g. when using Debian, use the --qmake= option to specify the name.26 Finally, set the QTDIR environment variable to Qt 4.x's installation path 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 … … 32 32 }}} 33 33 34 or 34 == Testing the port == 35 36 A very simple test browser is built along with the port and can be executed with 35 37 36 38 {{{ 37 WebKit/WebKitTools/Scripts/ build-webkit --qt --qmake=qmake-qt439 WebKit/WebKitTools/Scripts/run-launcher --qt 38 40 }}} 39 40 41 == Testing the port ==42 43 A very simple test browser is built at WebKit/WebKitBuild/Release/WebKitQt/QtLauncher/QtLauncher.44 41 45 42 == Common Build Errors ==