Changes between Version 1 and Version 2 of clutter


Ignore:
Timestamp:
Jul 5, 2011 7:03:31 AM (13 years ago)
Author:
kov@webkit.org
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • clutter

    v1 v2  
    11= Clutter WebKit port =
    22
    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.
     3The 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.
    44
    55== Obtaining the Clutter port ==
    66
    7 Currently the port is developed in a git repository at [http://git.o-hand.com/?r=webkit git://git.o-hand.com/webkit]
     7Currently the port is developed in a git repository at [https://gitorious.org/webkit-clutter/webkit-clutter]
    88
    99== Building the Clutter port ==
    1010
    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.
     11It 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
     17The 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).