aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-5/qbs/imports/MyLibrary.qbs
blob: 5e6c2687a626fc49e1c05173bed3ad9825b35eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
DynamicLibrary {
    version: "1.0.0"
    install: true

    Depends { name: 'cpp' }
    property string libraryMacro: name.replace(" ", "_").toUpperCase() + "_LIBRARY"
    cpp.defines: [libraryMacro]
    cpp.sonamePrefix: qbs.targetOS.contains("darwin") ? "@rpath" : undefined

    Export {
        Depends { name: "cpp" }
        cpp.includePaths: [exportingProduct.sourceDirectory]
    }

    Depends { name: 'bundle' }
    bundle.isBundle: false
}