aboutsummaryrefslogtreecommitdiff
path: root/dev-tools/iconprobe/test.pro
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-04-12 15:09:28 -0400
committerKen Moore <ken@ixsystems.com>2018-04-12 15:10:05 -0400
commit5a062c388eaacd8b9e900333cf7a496034169f3e (patch)
tree4c26b43e595890e4cb6a0218dcf2865bdf3c96d0 /dev-tools/iconprobe/test.pro
parentClean up a bit of the session initialization routines. (diff)
downloadlumina-5a062c388eaacd8b9e900333cf7a496034169f3e.tar.gz
lumina-5a062c388eaacd8b9e900333cf7a496034169f3e.tar.bz2
lumina-5a062c388eaacd8b9e900333cf7a496034169f3e.zip
Add a quick test script I wrote to probe icon themes and see what is found or not.
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