Changes between Version 131 and Version 132 of BuildingGtk
- Timestamp:
- Jan 30, 2018, 2:42:52 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildingGtk
v131 v132 3 3 = Building WebKitGTK+ from a release tarball = 4 4 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: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 and install the result: 6 6 7 7 {{{ 8 cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=RelWithDebInfo 9 make -j`nproc` 10 sudo makeinstall8 cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=RelWithDebInfo -GNinja 9 ninja 10 sudo ninja install 11 11 }}} 12 12