~ubuntu-branches/ubuntu/wily/psi/wily-proposed

« back to all changes in this revision

Viewing changes to src/tools/tunecontroller/tunecontroller.pri

  • Committer: Package Import Robot
  • Author(s): Jan Niehusmann
  • Date: 2014-07-01 21:49:34 UTC
  • mfrom: (6.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20140701214934-gt4dkgm94byi4vnn
Tags: 0.15-1
* New upstream version
* set debhelper compat level to 9
* set Standards-Version to 3.9.5 (no further changes)
* add lintian override regarding license-problem-non-free-RFC
* use qconf to regenerate configure script
* implement hardening using buildflags instead of hardening-wrapper

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
        $$PWD/tunecontroller.h \
7
7
        $$PWD/pollingtunecontroller.h \
8
8
        $$PWD/filetunecontroller.h \
9
 
        $$PWD/combinedtunecontroller.h \
10
9
        $$PWD/tunecontrollerplugin.h \
11
10
        $$PWD/tunecontrollermanager.h \
12
11
        $$PWD/tunecontrollerinterface.h 
16
15
SOURCES += \
17
16
        $$PWD/pollingtunecontroller.cpp \
18
17
        $$PWD/filetunecontroller.cpp \
19
 
        $$PWD/combinedtunecontroller.cpp \
20
18
        $$PWD/tunecontrollermanager.cpp
21
19
 
22
 
# XMMS
23
 
tc_xmms {
24
 
        DEFINES += TC_XMMS
25
 
        XMMS_PLUGIN_PATH = $$PWD/plugins/xmms
26
 
        INCLUDEPATH += $$XMMS_PLUGIN_PATH
27
 
 
28
 
        HEADERS += \
29
 
                $$XMMS_PLUGIN_PATH/xmmscontroller.h 
30
 
                
31
 
        SOURCES += \
32
 
                $$XMMS_PLUGIN_PATH/xmmscontroller.cpp \
33
 
                $$XMMS_PLUGIN_PATH/xmmsplugin.cpp
34
 
}
35
 
 
36
20
# iTunes
37
21
tc_itunes {
38
22
        mac {
75
59
        INCLUDEPATH += $$PSIFILE_PLUGIN_PATH
76
60
 
77
61
        HEADERS += \
78
 
                $$PSIFILE_PLUGIN_PATH/psifilecontroller.h \
79
62
                $$PSIFILE_PLUGIN_PATH/psifileplugin.h
80
 
                
 
63
 
81
64
        SOURCES += \
82
 
                $$PSIFILE_PLUGIN_PATH/psifilecontroller.cpp \
83
65
                $$PSIFILE_PLUGIN_PATH/psifileplugin.cpp
84
66
}
 
67
 
 
68
#MPRIS
 
69
tc_mpris {
 
70
        DEFINES += TC_MPRIS
 
71
        MPRIS_PLUGIN_PATH = $$PWD/plugins/mpris
 
72
        INCLUDEPATH += $$MPRIS_PLUGIN_PATH
 
73
 
 
74
        HEADERS += \
 
75
                $$PWD/mpristunecontroller.h
 
76
 
 
77
        SOURCES += \
 
78
                $$PWD/mpristunecontroller.cpp \
 
79
                $$MPRIS_PLUGIN_PATH/mprisplugin.cpp
 
80
}