1================================
2 CoverArtArchive Client Library
3================================
4
5Documentation
6-------------
7
8To get started quickly have a look at the examples directory which
9contains various sample programs. API documentation can be generated
10using [Doxygen] (http://www.stack.nl/~dimitri/doxygen/). The online version of
11the API documentation can be found at:
12
13    http://metabrainz.github.com/libcoverart/
14
15Compiling and Linking
16---------------------
17
18This package provides a pkg-config script that returns the necessary compiler
19and linker flags, as well as the version number.  To build a small sample
20program one would use:
21
22    g++ -o test_app test_app.cpp `pkg-config libcoverart --cflags --libs`
23
24If you don't want/can't use pkg-config and you are using the C API, make sure
25you link in the C++ standard library:
26
27    gcc -o test_app test_app.c -lcoverart -lm -lstdc++
28
29Contact
30-------
31
32If you have any questions about this library, feel free to ask on the
33MusicBrainz development mailing list:
34
35    http://lists.musicbrainz.org/mailman/listinfo/musicbrainz-devel
36
37Please submit bug reports to the MusicBrainz bug tracking system:
38
39    http://tickets.musicbrainz.org/browse/LCAA
40
41You can find out more about the MusicBrainz project by visiting its
42site:
43
44    http://musicbrainz.org/
45