aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/module-providers/Qt/provider.qbs
blob: 0d036c04d0c5d934a6f43dbb5fa2465555bb4dfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import "setup-qt.js" as SetupQt
import qbs.Probes

ModuleProvider {
    Probes.QmakeProbe {
        id: probe
        qmakePaths: qmakeFilePaths
    }
    property stringList qmakeFilePaths
    readonly property varList _qtInfos: probe.qtInfos
    condition: moduleName.startsWith("Qt.")
    isEager: false
    relativeSearchPaths: SetupQt.doSetup(moduleName, _qtInfos, outputBaseDir, path)
}