aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata-qt/qml-debugging/qml-debugging.qbs
blob: 0885e6b0bceb06a0e9dc648d98c2d4b15692211c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
QtApplication {
    name: "debuggable-app"
    consoleApplication: true
    Depends { name: "Qt.quick" }
    Qt.quick.qmlDebugging: true
    files: "main.cpp"
    Probe {
        id: checker
        property bool isGcc: qbs.toolchain.contains("gcc")
        configure: { console.info("is gcc: " + isGcc); }
    }
}