aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/soft-dependency/soft-dependency.qbs
blob: 62713a481c055474d05b2773b71ec3f00928a3f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Application {
    Depends {
        name: "nosuchmodule"
        required: false
    }
    Depends {
        name: "cpp"
        condition: nosuchmodule.present
    }

    files: "main.cpp"
}