aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/minimumSystemVersion/macappstore.qbs
blob: 3f214fed2fe2a93bbdca2505d0d9f055fe04d3de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import qbs

// just to make sure three-digit minimum versions work on macOS
// this only affects the value of __MAC_OS_X_VERSION_MIN_REQUIRED,
// not the actual LC_VERSION_MIN_MACOSX command which is limited to two
CppApplication {
    condition: qbs.targetOS.contains("macos")
    files: ["main.mm"]
    consoleApplication: true
    cpp.frameworks: "Foundation"
    cpp.minimumMacosVersion: "10.6.8"
}