aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/conditional-filetagger/conditional-filetagger.qbs
blob: f5d7ad676a34c7b8dc2f49ceee367cfe94f8f2d8 (plain)
1
2
3
4
5
6
7
8
9
10
CppApplication {
    name: "theApp"
    property bool enableTagger
    files: ["main.custom"]
    FileTagger {
        condition: enableTagger
        patterns: ["*.custom"]
        fileTags: ["cpp"]
    }
}