aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/wildcards-and-change-tracking/wildcards-and-change-tracking.qbs
blob: 0a889bab3506aa081e67852c5547c38c0bbdb963 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Product {
    Group {
        name: "recursive"
        files: "**/file.txt"
    }
    Group {
        name: "directories"
        prefix: "nonrecursive/"
        files: "subdi?/file.txt"
    }
    Group {
        prefix: "nonrecursive/empty/"
        name: "no files"
        files: "*.txt"
    }
}