aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/core/qqmlsysteminformation/data/tst_systeminformation.qml
blob: afc53dde541ea2bf1473e057306bc70b33d7ef19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQml
import QtCore

QtObject {
    property int wordSize: SystemInformation.wordSize
    property int byteOrder: SystemInformation.byteOrder
    property string buildCpuArchitecture: SystemInformation.buildCpuArchitecture
    property string currentCpuArchitecture: SystemInformation.currentCpuArchitecture
    property string buildAbi: SystemInformation.buildAbi
    property string kernelType: SystemInformation.kernelType
    property string kernelVersion: SystemInformation.kernelVersion
    property string productType: SystemInformation.productType
    property string productVersion: SystemInformation.productVersion
    property string prettyProductName: SystemInformation.prettyProductName
    property string machineHostName: SystemInformation.machineHostName
    property var machineUniqueId: SystemInformation.machineUniqueId
    property var bootUniqueId: SystemInformation.bootUniqueId
}