aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata-qt/static-qt-plugin-linking/static-qt-plugin-linking.qbs
blob: ed479c8f1d93dc8966394a8aa9679af4fa94174a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
StaticLibrary {
    name: "somelib"
    Probe {
        id: staticQtChecker
        property bool staticQt: Qt.core.staticBuild
        configure: {
            found = staticQt;
            if (found)
                console.info("Qt is static");
        }
    }

    Depends { name: "Qt.core" }
    Depends { name: "Qt.gui" }
    Depends { name: "Qt.qminimal"; condition: Qt.core.staticBuild; }
}