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

Project {
    property bool includeIconset

    CppApplication {
        Depends { name: "ib" }
        files: {
            var filez = ["main.c", "empty.xcassets"];
            if (project.includeIconset)
                filez.push("empty.xcassets/empty.iconset");
            return filez;
        }
    }
}