summaryrefslogtreecommitdiff
path: root/tests/auto/api/testdata/project-with-properties-item/project-with-properties-item.qbs
blob: 812c6a65e9570cff8cedb3b5a688b84144b3b453 (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.includes("macos")
        binPath: "/Users/boo"
        libPath: "/Libraries/foo"
    }
}