aboutsummaryrefslogtreecommitdiffstats
path: root/tutorial/chapter-7/qbs/imports/MyLibrary.qbs
blob: 7c130ba17ee9aab960e45ec71b0c6fb755d9e36e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
DynamicLibrary {
    version: project.version
    install: true
    installDebugInformation: project.installDebugInformation
//! [0]
// qbs/imports/MyLibrary.qbs
    // ...
    Depends { name: "mybuildconfig" }
    installDir: mybuildconfig.libInstallDir

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

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

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