aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-4/lib/lib.qbs
blob: 1f7bf6e6b697cd645c8b26bc3ad998daafb8b78a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! [0]
// lib/lib.qbs

MyLibrary {
    name: "mylib"
    files: [
        "lib.c",
        "lib.h",
        "lib_global.h",
    ]
    cpp.defines: base.concat(["CRUCIAL_DEFINE"])
}
//! [0]