aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/ib/assetcatalog/assetcatalogempty.qbs
blob: 2e31c03fcb026423546dd064f29ac49394766e59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import qbs

Project {
    property bool includeIconset

    CppApplication {
        Depends { name: "ib" }
        files: {
            var filez = ["main.c", "MainMenu.xib"];
            if (project.includeIconset)
                filez.push("empty.xcassets/empty.iconset");
            else
                filez.push("empty.xcassets");
            if (qbs.hostOSVersionMinor >= 10) // need OS X 10.10 to build SBs
                filez.push("Storyboard.storyboard");
            return filez;
        }
    }
}