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