blob: e802e4615aa0ada6d7aa293b67b82abc64577e64 (
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
|
# QT-quick implementation of a nissy UI
This is a UI for nissy written using
[QT Quick](https://doc.qt.io/qt-6/qtquick-index.html).
It has been tested only on Linux with QT 6.9.
Building requires CMake.
To build this project, first you have to initialize the `nissy-core`
submodule. From the parent directory run
```
git submodule init && git submodule update
```
This will clone the `nissy-core` repository inside the parent folder.
Then from this folder you can run
```
make
```
To run it you can use
```
./run
``
or
```
make run
```
The latter command is going to build the project (if has not already
been built) and run it with some debug options enabled.
|