summaryrefslogtreecommitdiff
path: root/tests/auto/api/testdata/new-output-artifact-in-dependency/new-output-artifact-in-dependency.qbs
blob: e87af67c77419ecd64e5d3c9b8d2ce2e6e0edabb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Project {
    DynamicLibrary {
        //Depends { name: "cpp" }
        name: "lib"
        files: "lib.cpp"
        Properties {
            condition: qbs.targetOS.includes("darwin")
            bundle.isBundle: false
        }
    }

    CppApplication {
        name: "app"
        files: "main.cpp"
        Depends { name: "lib" }
    }
}