Changes between Version 12 and Version 13 of BuildingGtk
- Timestamp:
- Nov 29, 2007, 6:48:09 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingGtk
v12 v13 29 29 If you forgot to install one of the build dependencies, your build tree might be in a bad state and might fail to compile even after you've installed the missing dependency. In this case, you should ensure your SVN checkout is entirely clean with eg. make -C WebKitBuild/Release/WebCore clean 30 30 31 === On Debian === 32 33 To satify WebKit build dependencies simply: 34 35 {{{ 36 apt-get builddep webkit 37 }}} 38 39 31 40 == Using Qmake4 == 32 41 … … 55 64 Et voila the bin/ directory holds a qmake binary you can use for the Gtk+ port. You might want to set the QMAKESPEC to $PWD/mkspecs/ANY-SPEC-YOU-WANT but the default should just work. 56 65 57 == Installation ==58 66 To install the library and the header files: 59 67 … … 62 70 # make install 63 71 64 = Hacking=72 === Change tracking issues with qmake4 === 65 73 66 See [wiki:"HackingGtk" the hacker's guide to WebKit/GTK+]. 74 Currently the build system's of Gtk, Qt and Wx do not detect source changes very well. So unfortunately you should build from scratch every time. :( A work around is to use `ccache`. 75 76 = Further links = 77 78 79 * [wiki:"HackingGtk" the hacker's guide to WebKit/GTK+]. 80 * [http://wiki.webvm.net/webkit/ Aplix UK's wiki on GTK+ dev] 67 81 68 82