aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-8/lib/lib.qbs
blob: e8cf9bdb9697b96e4165bcb1894dc08b2b84a063 (plain)
1
2
3
4
5
6
7
8
9
10
MyLibrary {
    name: "mylib"
    files: [
        "lib.c",
        "lib.h",
    ]
    Depends { name: 'cpp' }
    cpp.defines: ['CRUCIAL_DEFINE']
}