aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/project-with-properties-item/project-with-properties-item.qbs
blob: 866ec4ecb0c7210c9c711224208401ea95ef9d0a (plain)
1
2
3
4
5
6
7
8
9
10
Project {
    property string binPath: "/usr/bin"
    property string libPath: "/usr/lib"

    Properties {
        condition: qbs.targetOS.contains("macos")
        binPath: "/Users/boo"
        libPath: "/Libraries/foo"
    }
}