aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/new-output-artifact-in-dependency/new-output-artifact-in-dependency.qbs
blob: 5c3e475b098185b65d850dd308bf7633b31f6433 (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.contains("darwin")
            bundle.isBundle: false
        }
    }

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