1# C++/Qt5 FontoBene Parser
2
3A header-only library to parse FontoBene stroke fonts with C++11/Qt5.
4
5## Installing
6
7### qmake
8
9    $ mkdir build && cd build
10    $ qmake -r .. PREFIX=/usr
11    $ make -j8
12    $ tests/fontobene-qt5-tests
13    $ make install
14
15### cmake
16
17    $ mkdir build && cd build
18    $ cmake .. -DCMAKE_INSTALL_PREFIX=/usr
19    $ make -j8
20    $ tests/fontobene-qt5-tests
21    $ make install
22
23## pkg-config
24
25If you're packaging fontobene-qt5 and want an example pkg-config file, check
26out `fontobene-qt5.pc.example`. Depending on your distro, the `includedir`
27might need adjusting.
28
29## License
30
31Licensed under either of
32
33- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
34  http://www.apache.org/licenses/LICENSE-2.0)
35- MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
36
37at your option.
38