blob: 48b02c00458d8b7697ce257df7eaaecd86096053 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|