aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/host-os-properties/host-os-properties.qbs
blob: b6b862d1c2fa17876a139caee6dc12ec492c7046 (plain)
1
2
3
4
5
6
7
8
CppApplication {
    consoleApplication: true
    cpp.defines: [
        'HOST_ARCHITECTURE="' + qbs.hostArchitecture + '"',
        'HOST_PLATFORM="' + qbs.hostPlatform + '"'
    ]
    files: "main.cpp"
}