aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/soft-dependency/soft-dependency.qbs
blob: 42d2f2de4765f953d2aab3677dfc5958accee16c (plain)
1
2
3
4
5
6
7
8
9
10
CppApplication {
    Depends {
        name: "nosuchmodule"
        required: false
    }
    Properties {
        condition: nosuchmodule.present
        files: "main.cpp"
    }
}