Changes between Version 1 and Version 2 of clutter
- Timestamp:
- Jul 5, 2011 7:03:31 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
clutter
v1 v2 1 1 = Clutter WebKit port = 2 2 3 The Clutter port of WebKit is a project to provide a web browser actor for [http://www.clutter-project.org Clutter] . This port is currently maintained outside of the official WebKit tree.3 The Clutter port of WebKit is a project to provide a web browser actor for [http://www.clutter-project.org Clutter] and an MxWidget for Mx. This port is currently maintained outside of the official WebKit tree. 4 4 5 5 == Obtaining the Clutter port == 6 6 7 Currently the port is developed in a git repository at [http ://git.o-hand.com/?r=webkit git://git.o-hand.com/webkit]7 Currently the port is developed in a git repository at [https://gitorious.org/webkit-clutter/webkit-clutter] 8 8 9 9 == Building the Clutter port == 10 10 11 The port shares the build infrastructure with the Gtk port, but the Gtk port must be disabled before building by passing '--enable-clutter --disable-gtk' to the configure script. 11 It is recommended to make a separate build directory, and use the SHARED_CORE setting, like this: 12 13 $ mkdir build[[BR]] 14 $ cd build[[BR]] 15 $ cmake .. -DPORT=Clutter -DSHARED_CORE=1 -DBUILD_MX_LIB=1 -DCMAKE_INSTALL_PREFIX=~/webkit/ 16 17 The BUILD_MX_LIB setting is only necessary if you want to build the library that provides the MxWidget (which is more well supported than the vanilla actor, so you probably should).