summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/charts/CMakeLists.txt3
-rw-r--r--examples/charts/charts.pro2
2 files changed, 3 insertions, 2 deletions
diff --git a/examples/charts/CMakeLists.txt b/examples/charts/CMakeLists.txt
index 6a6c27da..8cd0211f 100644
--- a/examples/charts/CMakeLists.txt
+++ b/examples/charts/CMakeLists.txt
@@ -71,7 +71,8 @@ if(TARGET Qt::Quick)
add_subdirectory(qmlweather)
endif()
if(TARGET Qt::Multimedia)
- add_subdirectory(audio)
+ # TODO: this never gets compiled : missing find_pacakge
+ # add_subdirectory(audio) // QTBUG-94181
endif()
if(QT_FEATURE_opengl)
add_subdirectory(openglseries)
diff --git a/examples/charts/charts.pro b/examples/charts/charts.pro
index 785c3cc7..1e60be5a 100644
--- a/examples/charts/charts.pro
+++ b/examples/charts/charts.pro
@@ -75,7 +75,7 @@ qtHaveModule(quick) {
}
qtHaveModule(multimedia) {
- SUBDIRS += audio
+ # SUBDIRS += audio // QTBUG-94181
} else {
message("QtMultimedia library not available. Some examples are disabled.")
}