Changes between Version 4 and Version 5 of BuildingQtOnLinux
- Timestamp:
- Jun 4, 2007, 3:43:09 AM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingQtOnLinux
v4 v5 9 9 The code should be easily built on any Linux distribution which has development packages for Qt installed. 10 10 11 The Qt port requires Qt version 4, and 4.2 is recommended. To install required dependencies on Ubuntu edgy, do 11 The Qt port requires Qt version 4, and 4.2 is recommended. 12 13 === Installing dependencies on Ubuntu Edgy === 14 To install required dependencies on Ubuntu edgy, do 12 15 13 16 {{{ … … 22 25 }}} 23 26 27 === Installing dependencies on Ark Linux === 28 On Ark Linux, install the required dependencies using 29 {{{ 30 apt-get install devel-core qt4-devel gperf libxslt-devel bison sqlite-devel 31 }}} 32 33 Alternatively, install the needed packages (see list above) through Mission Control -> Install Software. 34 35 == Build WebKit == 24 36 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 37 26 Finally, build WebKit and the Qt test browser with38 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 build WebKit and the Qt test browser with 27 39 28 40 {{{ 29 QTDIR=/usr/share/qt4/WebKit/WebKitTools/Scripts/build-webkit41 WebKit/WebKitTools/Scripts/build-webkit 30 42 }}} 31 43