README.md (673B)
1 # QT-quick implementation of a nissy UI 2 3 This is a UI for nissy written using 4 [QT Quick](https://doc.qt.io/qt-6/qtquick-index.html). 5 6 It has been tested only on Linux with QT 6.9. 7 Building requires CMake. 8 9 To build this project, first you have to initialize the `nissy-core` 10 submodule. From the parent directory run 11 12 ``` 13 git submodule init && git submodule update 14 ``` 15 16 This will clone the `nissy-core` repository inside the parent folder. 17 18 Then from this folder you can run 19 20 ``` 21 make 22 ``` 23 24 To run it you can use 25 26 ``` 27 ./run 28 `` 29 30 or 31 32 ``` 33 make run 34 ``` 35 36 The latter command is going to build the project (if has not already 37 been built) and run it with some debug options enabled.