• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

cmake/modules/H09-Oct-2012-3931

examples/H03-May-2022-426318

include/coverart/H09-Oct-2012-1,058320

src/H03-May-2022-6,6544,830

tests/H03-May-2022-176123

.gitignoreH A D09-Oct-2012115 109

Doxyfile.cmakeH A D09-Oct-2012600 2120

README.mdH A D09-Oct-20121.3 KiB4529

config.h.cmakeH A D09-Oct-2012122 85

libcoverart.pc.cmakeH A D09-Oct-2012384 1411

valgrind.suppH A D09-Oct-2012460 3332

README.md

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