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

import QtQml
import QtCore

QtObject {
    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
}