~ubuntu-branches/ubuntu/trusty/autopilot-qt/trusty

« back to all changes in this revision

Viewing changes to tests/unittests/unittests.pro

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Michael Zanetti, Christopher Lee, Olivier Tilloy, Ubuntu daily release
  • Date: 2013-06-05 07:08:47 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130605070847-cm5heug9bku0q19d
Tags: 1.3daily13.06.05-0ubuntu1
[ Michael Zanetti ]
* update tests to work with AP 1.3.
* make it work with Qt 5.0.2.

[ Christopher Lee ]
* Adding GetVersion so we can check that the version of the DBus
  protocol is as expected.

[ Olivier Tilloy ]
* Do not override an existing property with the value of a parent
  object. (LP: #1170764)

[ Ubuntu daily release ]
* Automatic snapshot from revision 61

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include(../../coverage.pri)
 
2
 
 
3
CONFIG += testcase
 
4
TARGET = tst_introspection
 
5
 
 
6
QT += testlib dbus widgets quick
 
7
 
 
8
CONFIG += link_pkgconfig
 
9
PKGCONFIG += xpathselect
 
10
QMAKE_CXXFLAGS += -std=c++0x -Wl,--no-undefined
 
11
 
 
12
contains(QT_VERSION, ^5\\..\\..*) {
 
13
    DEFINES += QT5_SUPPORT
 
14
}
 
15
 
 
16
INCLUDEPATH += ../../driver
 
17
 
 
18
SOURCES += tst_introspection.cpp \
 
19
    ../../driver/introspection.cpp \
 
20
    ../../driver/rootnode.cpp \
 
21
    ../../driver/qtnode.cpp
 
22
 
 
23
HEADERS += \
 
24
    ../../driver/introspection.h \
 
25
    ../../driver/rootnode.h \
 
26
    ../../driver/qtnode.h