Changes between Version 69 and Version 70 of BuildingQtOnLinux


Ignore:
Timestamp:
Jul 13, 2012 4:31:15 AM (12 years ago)
Author:
zoltan@webkit.org
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BuildingQtOnLinux

    v69 v70  
    5656     (Currently only tested on Linux.)
    5757
    58 == Building QtWebkit on QtCreator ==
     58== Using QtCreator to build QtWebKit ==
    5959
    6060   * To better debug QtWebkit, we can use QtCreator.
    61    * Open webkit/webkit.pro in QtCreator.
     61   * Open $WEBKITDIR/WebKit.pro in QtCreator.
    6262   * 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.
    6465   * Check the "Enable custom process set up" checkbox.
    65    * fill the "command" box with Tools/Scripts/build-webkit path
    66    * fill the "working directory" with webkit/WebKitBuild/Debug/bin path
    67    * 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.
    7071
    7172== Testing the port ==