From 9589072687726dd51776b0e952625ae1996f4721 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Wed, 16 Apr 2025 09:56:55 +0200 Subject: Added rudimentary QT UI --- qt/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 qt/Makefile (limited to 'qt/Makefile') diff --git a/qt/Makefile b/qt/Makefile new file mode 100644 index 0000000..5b13026 --- /dev/null +++ b/qt/Makefile @@ -0,0 +1,15 @@ +all: nissyqt + +nissyqt: + mkdir -p build + cmake . -B build + cd build && make + cp build/appnissyqt ./run + +run: + QT_LOGGING_RULES="*.debug=true; qt.*.debug=false" ./run + +clean: + rm -rf run build + +.PHONY: all nissyqt run clean -- cgit v1.3