Changes between Version 131 and Version 132 of BuildingGtk


Ignore:
Timestamp:
Jan 30, 2018 2:42:52 PM (6 years ago)
Author:
Michael Catanzaro
Comment:

Switch build instructions to use Ninja

Legend:

Unmodified
Added
Removed
Modified
  • BuildingGtk

    v131 v132  
    33= Building WebKitGTK+ from a release tarball =
    44
    5 You can build and install WebKitGTK+ from a [https://webkitgtk.org/releases/ release tarball] the same as you would any other CMake module. The only trick is that you must pass the CMake option -DPORT=GTK. For example, to do a release build with debug info, with one parallel build per processor, and install the result:
     5You can build and install WebKitGTK+ from a [https://webkitgtk.org/releases/ release tarball] the same as you would any other CMake module. The only trick is that you must pass the CMake option -DPORT=GTK. For example, to do a release build with debug info and install the result:
    66
    77{{{
    8 cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=RelWithDebInfo
    9 make -j`nproc`
    10 sudo make install
     8cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=RelWithDebInfo -GNinja
     9ninja
     10sudo ninja install
    1111}}}
    1212