aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/QtcLibrary.qbs
blob: a8e02d738ac6cdf564f8090ed29124c4711de4ae (plain)
1
2
3
4
5
6
7
8
9
10
import qbs.base 1.0

DynamicLibrary {
    destination: {
        if (qbs.targetOS == "windows")
            return "bin"
        else
            return "lib/qtcreator"
    }
}