blob: 5a64781c9eb5c81eff17614a8bb745959cc36d97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
turns
=====
*turns* is a simple turn order tracker for use with tabletop role-playing games.
Building from source
--------------------
bookie depends on the following libraries:
- `catch2` >= 3.6
- `gtkmm-4.0` >= 4.14
- `libadwaita` >= 1.5
and tools:
- `cambalache` >= 0.90.4
- `cmake` >= 3.29
- `gcc` >= 14.1
- `ninja` >= 1.11
- `pkgconf`
Once all dependencies are installed, the project can be built using the following command:
```bash
$ cmake --workflow --preset debug
```
to create a debug build, or:
```bash
$ cmake --workflow --preset minsizerel
```
to create a release build.
|