aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/path-probe/name-filter.qbs
blob: b2840443b908e0af24be2ca2e26aaab545c6306a (plain)
1
2
3
4
5
6
7
8
9
10
11
BaseApp {
    inputNames: "tool"
    inputSearchPaths: "bin"
    inputNameFilter: {
        return function(n) {
            return n + ".2"
        };
    }
    outputFilePaths: ["bin/tool.2"]
    outputCandidatePaths: [["bin/tool.2"]]
}