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

Application {
    name: 'Shared'

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

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