An open API service indexing awesome lists of open source software.

https://github.com/kgilmer/vala-lib-example

A complete example of a Vala library and consumer projects using Meson.
https://github.com/kgilmer/vala-lib-example

build dependencies example meson vala

Last synced: about 1 month ago
JSON representation

A complete example of a Vala library and consumer projects using Meson.

Awesome Lists containing this project

README

        

# vala-lib-example

A complete example of a Vala library and consumer projects using Meson. This demonstrates the code and build files needed to produce and consume a library in Vala.

## Build

### Library

```bash
$ cd lib-producer
$ meson build
$ cd build
$ ninja install
```

### Consuming App

```bash
$ cd app-consumer
$ meson build
$ cd build
$ ninja
$ ./app-consumer
my math: 4
```