diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-04-16 09:56:55 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-04-16 09:56:55 +0200 |
| commit | 9589072687726dd51776b0e952625ae1996f4721 (patch) | |
| tree | 2dbc63de0b3e5805b5dca2919d05b4356c1194a4 /qt/Makefile | |
| parent | dc5e8188a7e29909cbdf661e9b2a80700fe0491d (diff) | |
| download | nissy-core-9589072687726dd51776b0e952625ae1996f4721.tar.gz nissy-core-9589072687726dd51776b0e952625ae1996f4721.zip | |
Added rudimentary QT UI
Diffstat (limited to 'qt/Makefile')
| -rw-r--r-- | qt/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/qt/Makefile b/qt/Makefile new file mode 100644 index 0000000..5b13026 --- /dev/null +++ b/qt/Makefile | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | all: nissyqt | ||
| 2 | |||
| 3 | nissyqt: | ||
| 4 | mkdir -p build | ||
| 5 | cmake . -B build | ||
| 6 | cd build && make | ||
| 7 | cp build/appnissyqt ./run | ||
| 8 | |||
| 9 | run: | ||
| 10 | QT_LOGGING_RULES="*.debug=true; qt.*.debug=false" ./run | ||
| 11 | |||
| 12 | clean: | ||
| 13 | rm -rf run build | ||
| 14 | |||
| 15 | .PHONY: all nissyqt run clean | ||
