aboutsummaryrefslogtreecommitdiff
path: root/dev-tools/test-dbus/test.pro
blob: b305eee150a9ee82c21a24d14bc80e0cd6361c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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 

HEADERS = test.h

FORMS = test.ui
bgstack15