blob: e2674546d0f346868268de6b8e0a196ce28743e3 (
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
34
35
|
# graphics-inkscape
This repository contains Inkscape files with graphics to be included in other
projects.
## Build dependencies
The following tools have to be installed to build the full content in all
output formats.
- [Inkscape][1]
- [CMake][2]
- [Ninja][3]
- [ImageMagick][4]
## Usage
CMake is used to provide a build directory.
```
cmake -Bbuild -GNinja
```
Ninja executes the build inside the build folder.
```
ninja -C build
```
The results are placed inside the `build` folder.
[1]: https://inkscape.org
[2]: https://cmake.org
[3]: https://ninja-build.org
[4]: https://imagemagick.org
|