harfbuzz/BUILD.md

20 lines
885 B
Markdown
Raw Normal View History

2016-05-06 16:24:39 +02:00
On Linux, install the development packages for FreeType,
Cairo, and GLib. For example, on Ubuntu / Debian, you would do:
2018-01-02 18:15:18 +01:00
sudo apt-get install meson pkg-config ragel gtk-doc-tools gcc g++ libfreetype6-dev libglib2.0-dev libcairo2-dev
whereas on Fedora, RHEL, CentOS, and other Red Hat based systems you would do:
2018-01-02 18:15:18 +01:00
sudo dnf install meson pkgconfig gtk-doc gcc gcc-c++ freetype-devel glib2-devel cairo-dev
and on ArchLinux and Manjaro:
2017-10-12 10:41:47 +02:00
sudo pacman -Suy meson pkg-config ragel gcc freetype2 glib2 cairo
2018-01-02 18:15:18 +01:00
then use meson to build the project like `meson build && meson test -Cbuild`.
On macOS, `brew install pkg-config ragel gtk-doc freetype glib cairo meson` then use meson like above.
2018-01-02 18:15:18 +01:00
On Windows, meson builds the project like above if a working MSVC's cl.exe (`vcvarsall.bat`)
or gcc/clang is already on your path, it fetches and compiles most of the dependencies also.