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

    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
}