aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/lib_samesource/lib.qbp
blob: 36ecb4d194021ca1f1e5fbd5f1288d7954e27c4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import qbs.base 1.0

Project {
    Product {
        type: "application"
        name : "HelloWorld"
        Depends { name: 'cpp' }
        Group {
            files : [ "main.cpp" ]
        }
    }

    Product {
        type: "staticlibrary"
        name : "HelloWorld"
        Depends { name: 'cpp' }
        Group {
            files : [ "main.cpp" ]
        }
    }
}