blob: 3e34b06e24b60a4d69b814e119484ef019b97010 (
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
36
37
38
39
40
41
42
43
44
|
# art-inkscape
This repository contains Inkscape files with art to be included in other
projects.
## Licensing
This repository uses two different licenses. The corresponding license of a
file is indicated by the `LICENSE.txt` file in the same folder or a parent
folder.
This allows to select different licenses for the actual art and the related
build system code.
## 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
|