~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to iris/src/xmpp/qa/unittest.pri

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Declares all common settings/includes for a unittest module.
 
3
#
 
4
# Include this file from your module's unittest project file to create a 
 
5
# standalone checker for the module.
 
6
#
 
7
 
 
8
include($$PWD/qttestutil/qttestutil.pri)
 
9
include($$PWD/../common.pri)
 
10
 
 
11
QT += testlib
 
12
QT -= gui
 
13
CONFIG -= app_bundle
 
14
 
 
15
INCLUDEPATH *= $$PWD
 
16
DEPENDPATH *= $$PWD
 
17
 
 
18
TARGET = checker
 
19
 
 
20
SOURCES += \
 
21
        $$PWD/qttestutil/simplechecker.cpp
 
22
 
 
23
QMAKE_EXTRA_TARGETS = check
 
24
check.commands = \$(MAKE) && ./checker
 
25
 
 
26
QMAKE_CLEAN += $(QMAKE_TARGET)