summaryrefslogtreecommitdiffstats
path: root/examples/examples.pro
blob: 0e222de73faed3822d763b33b733cf8159e27338 (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
TEMPLATE=subdirs

qtHaveModule(webengine) {
    SUBDIRS += \
        webengine/minimal \
        webengine/quicknanobrowser
}

qtHaveModule(webenginewidgets) {
    SUBDIRS += \
        webenginewidgets/minimal \
        webenginewidgets/contentmanipulation \
        webenginewidgets/cookiebrowser \
        webenginewidgets/demobrowser \
        webenginewidgets/markdowneditor \
        webenginewidgets/simplebrowser

    !contains(WEBENGINE_CONFIG, no_spellcheck):!cross_compile {
        !contains(WEBENGINE_CONFIG, use_native_spellchecker) {
            SUBDIRS += webenginewidgets/spellchecker
        } else {
            message("Spellcheck example will not be built because it depends on usage of Hunspell dictionaries.")
        }
    }

}