File: build-howto.md

package info (click to toggle)
msgraph 0.3.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 928 kB
  • sloc: ansic: 5,571; python: 128; sh: 54; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 652 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Title: Compiling with Libmsgraph
Slug: building

# Compiling with Libmsgraph

If you need to build Libmsgraph, get the source from
[here](https://gitlab.gnome.org/jbrummer/msgraph/) and see the `README.md` file.

## Using `pkg-config`

Like other GNOME libraries, Libmsgraph uses `pkg-config` to provide compiler
options. The package name is `libmsgraph-0`.

When using the Meson build system you can declare a dependency like:

```meson
dependency('libmsgraph-0')
```

The `0` in the package name is the "API version" (indicating "the version of the
Libmsgraph API that first appeared in version 0") and is essentially just part
of the package name.