blob: 08de96d04e9e4890bab8529ce171ac07f514d73b (
plain)
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
32
33
34
35
36
37
38
|
######################################################################
#
# QtMultimedia
#
######################################################################
TEMPLATE = subdirs
SUBDIRS += m3u
win32 {
SUBDIRS += audiocapture
}
win32 {
contains(config_test_directshow, yes): SUBDIRS += directshow
# contains(config_test_wmf, yes) : SUBDIRS += wmf
}
unix:!mac {
contains(config_test_gstreamer, yes) {
SUBDIRS += gstreamer
} else {
SUBDIRS += audiocapture
}
# v4l is turned off because it is not supported in Qt 5
# !maemo*:SUBDIRS += v4l
contains(config_test_pulseaudio, yes) {
SUBDIRS += pulseaudio
}
}
mac:!simulator {
SUBDIRS += audiocapture qt7
}
|