aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/project-with-properties-item/project.qbs
blob: d59a26a94aeebe1e4cc3cdfc54d558ef2aeee9a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import qbs 1.0

Project {
    property string binPath: "/usr/bin"
    property string libPath: "/usr/lib"

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