1language: cpp
2compiler:
3  - clang
4  - gcc
5install:
6  - sudo apt-get install pkg-config ragel gtk-doc-tools # for autogen.sh
7  - sudo apt-get install libfreetype6-dev # for font functions
8  - sudo apt-get install libglib2.0-dev # for font functions / tests / utils
9  - sudo apt-get install libcairo2-dev # for utils
10  - sudo apt-get install libicu-dev # for extra unicode functions
11  - sudo apt-get install libgraphite2-dev # for extra shapers
12script: ./autogen.sh --with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphite2 && make CPPFLAGS=-Werror && make check CPPFLAGS=-Werror
13notifications:
14  irc: "irc.freenode.org#harfbuzz"
15  email: harfbuzz@lists.freedesktop.org
16