##// END OF EJS Templates
Don't build audio input demo if multimedia library is missing
Marek Rosa -
r2157:e253dd067540
parent child
Show More
@@ -15,7 +15,6 SUBDIRS += piechartcustomization \
15 chartinteractions \
15 chartinteractions \
16 qmlaxes \
16 qmlaxes \
17 qmlcustomlegend
17 qmlcustomlegend
18 # audio
19
18
20 contains(QT_CONFIG, opengl) {
19 contains(QT_CONFIG, opengl) {
21 SUBDIRS += chartthemes \
20 SUBDIRS += chartthemes \
@@ -24,3 +23,9 contains(QT_CONFIG, opengl) {
24 } else {
23 } else {
25 message("OpenGL not available. Some demos are disabled")
24 message("OpenGL not available. Some demos are disabled")
26 }
25 }
26
27 contains(QT_CONFIG, multimedia) {
28 SUBDIRS += audio
29 } else {
30 message("QtMultimedia library not available. Some demos are disabled")
31 }
General Comments 0
You need to be logged in to leave comments. Login now