diff options
author | Samuli Piippo <[email protected]> | 2025-05-20 05:23:34 +0000 |
---|---|---|
committer | Samuli Piippo <[email protected]> | 2025-06-03 11:39:00 +0300 |
commit | db53736b5209cb38ff80e033690ba844e38fd15b (patch) | |
tree | 536650e23003b1c0091d4d35a64936ce1a97728f /examples | |
parent | ef51db9d246475f10c6d37754211942dc30663f1 (diff) |
Bubblewrap container has runtime dependency for bwrap, adding separate
config for the feature lets us disable it if bwrap is not available.
Task-number: QTBUG-136961
Pick-to: 6.10 6.9 6.8
Change-Id: I03c3ce4e351699bbeb6d08a002b36d774c1fa9b5
Reviewed-by: Robert Griebl <[email protected]>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/applicationmanager/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/applicationmanager/CMakeLists.txt b/examples/applicationmanager/CMakeLists.txt index 18be484d..945afc1e 100644 --- a/examples/applicationmanager/CMakeLists.txt +++ b/examples/applicationmanager/CMakeLists.txt @@ -15,5 +15,7 @@ endif() qt_internal_add_example(custom-appman) if(LINUX) qt_internal_add_example(softwarecontainer-plugin) +endif() +if (QT_FEATURE_am_bubblewrap_container) qt_internal_add_example(bubblewrap-example) endif() |