aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/language/testdata/getNativeSetting.qbs
blob: c414c79f98069ee761f01b54e622641631a73826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import qbs.FileInfo

Project {
    Product {
        name: {
            if (qbs.hostOS.contains("osx")) {
                return qbs.getNativeSetting("/System/Library/CoreServices/SystemVersion.plist", "ProductName");
            } else if (qbs.hostOS.contains("windows")) {
                var productName = qbs.getNativeSetting("HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion", "ProductName");
                if (productName.contains("Windows")) {
                    return "Windows";
                }
                return undefined;
            } else {
                return qbs.getNativeSetting(FileInfo.joinPaths(path, "nativesettings.ini"), "osname");
            }
        }
    }

    Product {
        name: qbs.getNativeSetting("/dev/null", undefined, "fallback");
    }
}