aboutsummaryrefslogtreecommitdiff
path: root/dev-tools/iconprobe/test.pro
diff options
context:
space:
mode:
Diffstat (limited to 'dev-tools/iconprobe/test.pro')
-rw-r--r--dev-tools/iconprobe/test.pro12
1 files changed, 12 insertions, 0 deletions
diff --git a/dev-tools/iconprobe/test.pro b/dev-tools/iconprobe/test.pro
new file mode 100644
index 00000000..48b02c00
--- /dev/null
+++ b/dev-tools/iconprobe/test.pro
@@ -0,0 +1,12 @@
+# Simple Qt program to test whether UI files can be loaded when there is no DBUS session running
+
+QT = core gui widgets
+#Just for consistency - remove the dbus module from this app build (in case "gui" or "widgets" pulled it in)
+QT -= dbus
+
+CONFIG += debug
+
+TARGET = test
+target.path = $${PWD}
+
+SOURCES = main.cpp
bgstack15