• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1if qt5_option.disabled()
2  subdir_done()
3endif
4
5# We already did all the checks when building the qt plugin
6if not qt5qml_dep.found()
7  subdir_done()
8endif
9
10qt5qml_example_deps = dependency('qt5', modules : ['Core', 'Gui', 'Widgets', 'Qml', 'Quick'],
11                         required: get_option('examples'))
12
13if not qt5qml_example_deps.found()
14  subdir_done()
15endif
16
17subdir('qmloverlay')
18subdir('qmlsink')
19subdir('qmlsink-multisink')
20subdir('qmlsink-dynamically-added')
21subdir('qmlsrc')
22