Changes between Version 69 and Version 70 of BuildingQtOnLinux
- Timestamp:
- Jul 13, 2012, 4:31:15 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingQtOnLinux
v69 v70 56 56 (Currently only tested on Linux.) 57 57 58 == Building QtWebkit on QtCreator==58 == Using QtCreator to build QtWebKit == 59 59 60 60 * To better debug QtWebkit, we can use QtCreator. 61 * Open webkit/webkit.pro in QtCreator.61 * Open $WEBKITDIR/WebKit.pro in QtCreator. 62 62 * Click Projects->Build Settings, In "GENERAL" un-check shadow build as it is not needed. 63 * In Build Steps, remove qmake and make, add a custom process step 63 * In Build Steps, remove unnecessary build steps, especially qmake and make. 64 * Add a custom process step. 64 65 * Check the "Enable custom process set up" checkbox. 65 * fill the "command" box with Tools/Scripts/build-webkit path66 * fill the "working directory" with webkit/WebKitBuild/Debug/bin path67 * command arguments as "-qt".68 * In build environment you need to update PATH variable by appending QtSDK/Desktop/Qt/4.8.1/gcc/bin path to existing value.69 * Then add a new variable QMAKEPATH to /home/ssandela/QtWebKit/webkit/Tools/qmake.66 * Fill the "command" box with Tools/Scripts/build-webkit path 67 * Fill the "working directory" with webkit/WebKitBuild/Debug/bin path 68 * Add "--qt" to command arguments. 69 * In build environment you need to update PATH variable by appending $QTDIR/gcc/bin path to existing value. 70 * Add a new variable QMAKEPATH to $WEBKITDIR/Tools/qmake. 70 71 71 72 == Testing the port ==