summaryrefslogtreecommitdiff
path: root/src/shared/shared.qbs
blob: 1fa471a0886d5c34ab39433c5aeec9239b7b3457 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import qbs.base 1.0

StaticLibrary {
    name: {
        print(qbs.getenv("BOOSTPATH") + "/stage/lib")
        return 'Shared'
    }

    Depends { name: 'cpp' }
    Depends { name: 'BSAToolkit' }

    cpp.defines: []
    cpp.libraryPaths: [ qbs.getenv("BOOSTPATH") + "/stage/lib" ]
    cpp.includePaths: [ '../bsatk', qbs.getenv("BOOSTPATH") ]
    files: [
        '*.h',
        '*.cpp',
        '*.inc'
    ]
}