summaryrefslogtreecommitdiff
path: root/tools/viewsvg/README.md
blob: 957f55b10e4e872981bf97df2e20e6b53c069664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# viewsvg

A simple SVG viewer using Qt and *resvg* C-API.

## Dependencies

- Qt >= 5.6

## Run

```bash
# build C-API first
cargo build --release --features "qt-backend" --manifest-path ../../capi/Cargo.toml
# build viewsvg
qmake
make
# run
LD_LIBRARY_PATH=../../target/release ./viewsvg
```

See [BUILD.adoc](../../BUILD.adoc) for details.