aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Output/Output.pro
blob: 8ded62f9fe3df04aa031b8332edb13ce60ecdb51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
include(../../../qmmp.pri)

CONFIG += release warn_on
TEMPLATE = subdirs
win32:SUBDIRS += waveout

SUBDIRS += null

unix{

contains(CONFIG, JACK_PLUGIN){
    SUBDIRS += jack
}

contains(CONFIG, OSS_PLUGIN){
    SUBDIRS += oss
}

contains(CONFIG, PULSE_AUDIO_PLUGIN){
    SUBDIRS += pulseaudio
}

contains(CONFIG, ALSA_PLUGIN){
    SUBDIRS += alsa
}

contains(CONFIG, OSS4_PLUGIN){
   SUBDIRS += oss4
}

}