1
TEMPLATE=subdirs
2
3
SUBDIRS=src \
4
    tests \
5
    meegofeedback-dummy
6
7
include(conf/conf.pri)
8
9
# "qmake -recursive TEST_BACKENDS=on" enables compiling of test dummy backends
10
# that are usefull for testing.
11
contains( TEST_BACKENDS, on ) {
12
    SUBDIRS -= meegofeedback-dummy
13
    SUBDIRS += meegofeedback-dummy-audio meegofeedback-dummy-vibra
14
}
15
16
QMAKE_CLEAN += build-stamp \
17
    configure-stamp \
18
    artifacts/*.deb \
19
    tests/*/*.log.xml \
20
    tests/*/*.log \
21
    *.log.xml \
22
    *.log
23
24
QMAKE_DISTCLEAN += build-stamp \
25
    configure-stamp \
26
    artifacts/*.deb \
27
    tests/*/*.log.xml \
28
    tests/*/*.log \
29
    *.log.xml \
30
    *.log
31
32
check.target = check
33
check.CONFIG = recursive
34
QMAKE_EXTRA_TARGETS += check
35
36
check-xml.target = check-xml
37
check-xml.CONFIG = recursive
38
QMAKE_EXTRA_TARGETS += check-xml
39
40
#include(shared.pri)
41
#include(debian/deb.pri)