blob: dd1794a6d2a9093fe2f6db0ee6bfab0dbce3dd02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import qbs
Project {
CppApplication {
name: "mysterious creature"
files: ["easter bunny"]
}
Product {
name: "tasty food"
condition: false
Depends { name: "TheBeautifulSausage" }
}
}
|