aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/imports/qbs/Probes/FrameworkProbe.qbs
blob: 987af28eb28282e7570cd6625e6d2b7c2d66090e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import qbs 1.0

PathProbe {
    platformPaths: [
        "~/Library/Frameworks",
        "/usr/local/lib",
        "/Library/Frameworks",
        "/System/Library/Frameworks"
    ]

    nameFilter: {
        return function(name) {
            return name + ".framework";
        }
    }
}