diff --git a/sharing/linux/qml_tray_app/FileShareTray.qml b/sharing/linux/qml_tray_app/FileShareTray.qml index ace4d105..02de5ee9 100644 --- a/sharing/linux/qml_tray_app/FileShareTray.qml +++ b/sharing/linux/qml_tray_app/FileShareTray.qml @@ -2,6 +2,8 @@ import QtQuick import QtQuick.Controls import QtQuick.Layouts +import "components" + ApplicationWindow { id: root width: 980 @@ -9,52 +11,9 @@ ApplicationWindow { minimumWidth: 820 minimumHeight: 620 visible: true - title: "Nearby File Tray" + title: "Quick Share" - readonly property color appBg: "#f5f6f8" - readonly property color surface: "#ffffff" - readonly property color border: "#d7dbe0" - readonly property color textPrimary: "#1f2328" - readonly property color textMuted: "#59636e" - - palette.window: appBg - palette.base: surface - palette.button: "#f0f3f7" - palette.text: textPrimary - palette.windowText: textPrimary - palette.buttonText: textPrimary - palette.placeholderText: textMuted - palette.highlight: "#2f6feb" - palette.highlightedText: "#ffffff" - - background: Rectangle { - color: root.appBg - } - - function endpointLabel(endpointId) { - var label = fileShareController.peerNameForEndpoint(endpointId) - if (!label || label.length === 0 || label === "Unknown device") { - return "Unknown device" - } - return label - } - - function formatBytes(bytes) { - if (bytes === undefined || bytes === null) { - return "0 B" - } - var value = Number(bytes) - if (!isFinite(value) || value < 0) { - return "0 B" - } - var units = ["B", "KB", "MB", "GB", "TB"] - var unit = 0 - while (value >= 1024 && unit < units.length - 1) { - value /= 1024 - unit += 1 - } - return (value >= 10 || unit === 0 ? value.toFixed(0) : value.toFixed(1)) + " " + units[unit] - } + background: Rectangle { color: "#f0fdf4" } onClosing: function(close) { close.accepted = false @@ -62,376 +21,67 @@ ApplicationWindow { fileShareController.hideToTray() } - header: ToolBar { - height: 52 - - RowLayout { - anchors.fill: parent - anchors.leftMargin: 12 - anchors.rightMargin: 12 - spacing: 10 - - Label { - text: "Nearby File Share" - font.bold: true - font.pixelSize: 18 - color: root.textPrimary - } - - Rectangle { - radius: 12 - color: fileShareController.mode === "Send" ? "#dbeafe" : "#dcfce7" - border.color: fileShareController.mode === "Send" ? "#60a5fa" : "#4ade80" - Layout.preferredHeight: 24 - Layout.preferredWidth: 86 - - Label { - anchors.centerIn: parent - text: fileShareController.mode - font.bold: true - color: "#1f2328" - } - } - - Item { Layout.fillWidth: true } - - Label { - text: fileShareController.running ? "Running" : "Stopped" - color: fileShareController.running ? "#1f7a1f" : "#a33" - font.bold: true - } - - Button { - text: fileShareController.running ? "Stop" : "Start" - onClicked: { - if (fileShareController.running) { - fileShareController.stop() - } else { - fileShareController.start() - } - } - } - } - } - ColumnLayout { anchors.fill: parent - anchors.margins: 12 - spacing: 10 + spacing: 0 - Frame { - Layout.fillWidth: true - padding: 10 - background: Rectangle { - color: root.surface - border.color: root.border - radius: 6 - } - - GridLayout { - anchors.fill: parent - columns: 4 - columnSpacing: 10 - rowSpacing: 8 - - Label { text: "Device name" } - TextField { - Layout.fillWidth: true - text: fileShareController.deviceName - onEditingFinished: fileShareController.deviceName = text - } - - Label { text: "Selected file" } - Label { - Layout.fillWidth: true - text: fileShareController.pendingSendFileName.length > 0 - ? fileShareController.pendingSendFileName - : "None" - elide: Text.ElideRight - color: root.textMuted - } - - Label { text: "Status" } - Label { - Layout.columnSpan: 3 - Layout.fillWidth: true - text: fileShareController.statusMessage - elide: Text.ElideRight - } - } - } + AppHeader {} + // ── Body ───────────────────────────────────────────────────────── RowLayout { Layout.fillWidth: true Layout.fillHeight: true - spacing: 10 + spacing: 0 - Frame { - Layout.preferredWidth: 420 - Layout.fillHeight: true - padding: 10 - background: Rectangle { - color: root.surface - border.color: root.border - radius: 6 - } + SideBar {} - ColumnLayout { - anchors.fill: parent - spacing: 8 - - RowLayout { - Layout.fillWidth: true - - Label { - text: "Nearby Devices" - font.bold: true - } - - Item { Layout.fillWidth: true } - - Rectangle { - radius: 10 - color: fileShareController.mode === "Send" ? "#dbeafe" : "#f1f5f9" - border.color: fileShareController.mode === "Send" ? "#60a5fa" : "#cbd5e1" - Layout.preferredHeight: 22 - Layout.preferredWidth: 74 - - Label { - anchors.centerIn: parent - text: fileShareController.mode === "Send" ? "Discovering" : "Paused" - font.pixelSize: 11 - } - } - } - - Label { - Layout.fillWidth: true - text: fileShareController.mode === "Send" - ? "Select a nearby device to send your selected file." - : "Use tray menu Send to choose a file and start discovery." - wrapMode: Text.WordWrap - color: root.textMuted - } - - ListView { - Layout.fillWidth: true - Layout.fillHeight: true - clip: true - spacing: 6 - model: fileShareController.discoveredDevices - - delegate: Rectangle { - required property string modelData - width: ListView.view.width - height: 70 - color: root.surface - border.color: root.border - radius: 6 - - RowLayout { - anchors.fill: parent - anchors.leftMargin: 10 - anchors.rightMargin: 10 - spacing: 8 - - ColumnLayout { - Layout.fillWidth: true - spacing: 2 - - Label { - Layout.fillWidth: true - text: root.endpointLabel(modelData) - font.bold: true - elide: Text.ElideRight - } - - Label { - Layout.fillWidth: true - text: modelData - color: root.textMuted - font.pixelSize: 11 - elide: Text.ElideRight - } - } - - Button { - text: "Send" - enabled: fileShareController.mode === "Send" - && fileShareController.pendingSendFilePath.length > 0 - onClicked: fileShareController.sendPendingFileToEndpoint(modelData) - } - } - } - } - } - } - - ColumnLayout { + // ── Main content (white panel) ──────────────────────────────── + Rectangle { + id: mainContent Layout.fillWidth: true Layout.fillHeight: true - spacing: 10 + color: "#ffffff" + topLeftRadius: 48 + clip: true - Frame { - Layout.fillWidth: true - Layout.preferredHeight: 220 - padding: 10 - background: Rectangle { - color: root.surface - border.color: root.border - radius: 6 - } + readonly property bool isIdle: fileShareController.discoveredDevices.length === 0 + && fileShareController.transfers.length === 0 + + // ── Idle: animated blob ─────────────────────────────────── + AnimatedBlob {} + + // ── Non-idle: scrollable device + transfer cards ────────── + Flickable { + id: mainFlickable + anchors.fill: parent + clip: true + visible: !mainContent.isIdle + contentWidth: width + contentHeight: mainCol.implicitHeight + 96 + ScrollBar.vertical: ScrollBar {} ColumnLayout { - anchors.fill: parent - spacing: 6 + id: mainCol + x: 48 + y: 48 + width: mainFlickable.width - 96 + spacing: 16 Label { - text: "Connected Devices" - font.bold: true + text: "Nearby devices" + font.pixelSize: 20 + font.weight: Font.Medium + color: "#111827" } - ListView { - Layout.fillWidth: true - Layout.fillHeight: true - clip: true - spacing: 6 - model: fileShareController.connectedDevices - - delegate: Rectangle { - required property string modelData - width: ListView.view.width - height: 46 - color: root.surface - border.color: root.border - radius: 6 - - RowLayout { - anchors.fill: parent - anchors.leftMargin: 10 - anchors.rightMargin: 10 - - Label { - Layout.fillWidth: true - text: root.endpointLabel(modelData) - font.bold: true - elide: Text.ElideRight - } - - Rectangle { - radius: 10 - color: "#e2e8f0" - border.color: "#cbd5e1" - Layout.preferredHeight: 22 - Layout.preferredWidth: Math.max(68, mediumLabel.implicitWidth + 16) - - Label { - id: mediumLabel - anchors.centerIn: parent - text: fileShareController.mediumForEndpoint(modelData) - font.pixelSize: 11 - color: "#334155" - } - } - } - } - } - } - } - - Frame { - Layout.fillWidth: true - Layout.fillHeight: true - padding: 10 - background: Rectangle { - color: root.surface - border.color: root.border - radius: 6 - } - - ColumnLayout { - anchors.fill: parent - spacing: 6 - - RowLayout { - Layout.fillWidth: true - Label { - text: "Transfers" - font.bold: true - } - Item { Layout.fillWidth: true } - Button { - text: "Clear" - onClicked: fileShareController.clearTransfers() - } + Repeater { + model: fileShareController.discoveredDevices + delegate: DeviceCard {} } - ListView { - Layout.fillWidth: true - Layout.fillHeight: true - clip: true - spacing: 6 + Repeater { model: fileShareController.transfers - - delegate: Rectangle { - required property var modelData - width: ListView.view.width - height: 86 - color: root.surface - border.color: root.border - radius: 6 - - ColumnLayout { - anchors.fill: parent - anchors.leftMargin: 10 - anchors.rightMargin: 10 - spacing: 4 - - RowLayout { - Layout.fillWidth: true - - Label { - Layout.fillWidth: true - text: modelData.direction + " | " + root.endpointLabel(modelData.endpointId) - font.bold: true - elide: Text.ElideRight - } - - Label { text: modelData.status } - - Rectangle { - radius: 10 - color: "#e2e8f0" - border.color: "#cbd5e1" - Layout.preferredHeight: 22 - Layout.preferredWidth: Math.max(68, transferMediumLabel.implicitWidth + 16) - - Label { - id: transferMediumLabel - anchors.centerIn: parent - text: modelData.medium - font.pixelSize: 11 - color: "#334155" - } - } - } - - ProgressBar { - Layout.fillWidth: true - from: 0 - to: 1 - value: modelData.progress - } - - Label { - Layout.fillWidth: true - horizontalAlignment: Text.AlignRight - text: root.formatBytes(modelData.bytesTransferred) - + " / " + root.formatBytes(modelData.totalBytes) - color: root.textMuted - } - } - } + delegate: TransferCard {} } } } diff --git a/sharing/linux/qml_tray_app/components/AnimatedBlob.qml b/sharing/linux/qml_tray_app/components/AnimatedBlob.qml new file mode 100644 index 00000000..668c6c39 --- /dev/null +++ b/sharing/linux/qml_tray_app/components/AnimatedBlob.qml @@ -0,0 +1,86 @@ +import QtQuick +import QtQuick.Controls + +Item { + anchors.fill: parent + + readonly property color textPrimary: "#111827" + readonly property color textMuted: "#6b7280" + + Label { + x: 48; y: 48 + text: "Ready to receive" + (fileShareController.pendingSendFilePath.length > 0 ? " / send" : "") + font.pixelSize: 20 + font.weight: Font.Medium + color: textPrimary + } + + Canvas { + id: blobCanvas + width: 380; height: 380 + anchors.centerIn: parent + + property real t: 0 + property double startMs: Date.now() + + Timer { + interval: 16 + running: true + repeat: true + onTriggered: { + // seconds -> radians scale (t grows forever, no loop jump) + blobCanvas.t = (Date.now() - blobCanvas.startMs) * 0.001 * (Math.PI * 2 / 8.0) + blobCanvas.requestPaint() + } + } + + onPaint: { + var ctx = getContext("2d") + ctx.clearRect(0, 0, width, height) + + var cx = width / 2 + var cy = height / 2 + var n = 10 + var pts = [] + + for (var i = 0; i < n; i++) { + var a = (i / n) * Math.PI * 2 - Math.PI / 2 + var r = 130 + + Math.sin(a * 2 + t) * 11 + + Math.cos(a * 3 - t * 0.6) * 8 + + Math.sin(a * 1.5 + t * 0.35) * 6 + pts.push({ x: cx + Math.cos(a) * r, y: cy + Math.sin(a) * r }) + } + + var len = pts.length + ctx.beginPath() + for (var j = 0; j < len; j++) { + var p0 = pts[(j - 1 + len) % len] + var p1 = pts[j] + var p2 = pts[(j + 1) % len] + var p3 = pts[(j + 2) % len] + var cp1x = p1.x + (p2.x - p0.x) / 6 + var cp1y = p1.y + (p2.y - p0.y) / 6 + var cp2x = p2.x - (p3.x - p1.x) / 6 + var cp2y = p2.y - (p3.y - p1.y) / 6 + if (j === 0) ctx.moveTo(p1.x, p1.y) + ctx.bezierCurveTo(cp1x, cp1y, cp2x, cp2y, p2.x, p2.y) + } + ctx.closePath() + + var grad = ctx.createRadialGradient(cx - 40, cy - 40, 0, cx, cy, 150) + grad.addColorStop(0, "#e8faf0") + ctx.fillStyle = grad + ctx.fill() + } + } + + Label { + anchors.horizontalCenter: parent.horizontalCenter + anchors.bottom: parent.bottom + anchors.bottomMargin: 48 + text: fileShareController.statusMessage + font.pixelSize: 13 + color: textMuted + } +} diff --git a/sharing/linux/qml_tray_app/components/AppHeader.qml b/sharing/linux/qml_tray_app/components/AppHeader.qml new file mode 100644 index 00000000..e3fdceba --- /dev/null +++ b/sharing/linux/qml_tray_app/components/AppHeader.qml @@ -0,0 +1,64 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts + +Item { + Layout.fillWidth: true + height: 80 + + readonly property color textPrimary: "#111827" + readonly property color textMuted: "#6b7280" + readonly property color accent: "#16a34a" + + RowLayout { + anchors.fill: parent + anchors.leftMargin: 24 + anchors.rightMargin: 24 + + ColumnLayout { + spacing: 2 + Label { + text: "Device name" + font.pixelSize: 12 + color: textMuted + } + Label { + text: fileShareController.deviceName + font.pixelSize: 22 + font.weight: Font.Medium + color: textPrimary + } + } + + Item { Layout.fillWidth: true } + + Label { + text: fileShareController.running ? "● Running" : "○ Stopped" + color: fileShareController.running ? accent : textMuted + font.pixelSize: 13 + font.weight: Font.Medium + } + + Rectangle { + height: 40 + width: startStopLabel.implicitWidth + 32 + radius: 12 + color: fileShareController.running ? "#fee2e2" : "#dcfce7" + border.color: fileShareController.running ? "#fca5a5" : "#86efac" + + Label { + id: startStopLabel + anchors.centerIn: parent + text: fileShareController.running ? "Stop" : "Start" + color: fileShareController.running ? "#dc2626" : accent + font.weight: Font.Medium + } + + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + onClicked: fileShareController.running ? fileShareController.stop() : fileShareController.start() + } + } + } +} diff --git a/sharing/linux/qml_tray_app/components/DeviceCard.qml b/sharing/linux/qml_tray_app/components/DeviceCard.qml new file mode 100644 index 00000000..32749e40 --- /dev/null +++ b/sharing/linux/qml_tray_app/components/DeviceCard.qml @@ -0,0 +1,90 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts + +Rectangle { + required property string modelData + + Layout.fillWidth: true + height: 76 + radius: 24 + color: "#dcfce7" + border.color: "#bbf7d0" + + readonly property color surface: "#ffffff" + readonly property color textPrimary: "#111827" + readonly property color textMuted: "#6b7280" + + function endpointLabel(endpointId) { + var label = fileShareController.peerNameForEndpoint(endpointId) + if (!label || label.length === 0 || label === "Unknown device") return "Unknown device" + return label + } + + RowLayout { + anchors.fill: parent + anchors.leftMargin: 16 + anchors.rightMargin: 16 + spacing: 12 + + Rectangle { + width: 48; height: 48; radius: 24 + color: surface + + Label { + anchors.centerIn: parent + text: endpointLabel(modelData).charAt(0).toUpperCase() + font.pixelSize: 18 + font.weight: Font.Medium + color: textPrimary + } + } + + ColumnLayout { + Layout.fillWidth: true + spacing: 2 + + Label { + Layout.fillWidth: true + text: endpointLabel(modelData) + font.weight: Font.Medium + elide: Text.ElideRight + color: textPrimary + } + + Label { + Layout.fillWidth: true + text: modelData + font.pixelSize: 11 + color: textMuted + elide: Text.ElideRight + } + } + + Rectangle { + height: 36 + width: sendBtnLbl.implicitWidth + 24 + radius: 10 + color: surface + border.color: "#d1d5db" + opacity: (fileShareController.mode === "Send" + && fileShareController.pendingSendFilePath.length > 0) ? 1.0 : 0.45 + + Label { + id: sendBtnLbl + anchors.centerIn: parent + text: "Send" + font.weight: Font.Medium + color: textPrimary + } + + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + enabled: fileShareController.mode === "Send" + && fileShareController.pendingSendFilePath.length > 0 + onClicked: fileShareController.sendPendingFileToEndpoint(modelData) + } + } + } +} diff --git a/sharing/linux/qml_tray_app/components/SideBar.qml b/sharing/linux/qml_tray_app/components/SideBar.qml new file mode 100644 index 00000000..a1239d5e --- /dev/null +++ b/sharing/linux/qml_tray_app/components/SideBar.qml @@ -0,0 +1,155 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts + +Item { + Layout.preferredWidth: 280 + Layout.fillHeight: true + + readonly property color surface: "#ffffff" + readonly property color cardBorder: "#bbf7d0" + readonly property color textPrimary: "#111827" + readonly property color textMuted: "#6b7280" + + ColumnLayout { + anchors.fill: parent + anchors.margins: 12 + spacing: 0 + + // Receive mode: visibility info + ColumnLayout { + visible: fileShareController.pendingSendFilePath.length === 0 + Layout.fillWidth: true + spacing: 0 + + Label { + Layout.leftMargin: 12 + Layout.topMargin: 16 + Layout.bottomMargin: 8 + text: "Visibility state" + color: textMuted + font.pixelSize: 13 + } + + Rectangle { + Layout.fillWidth: true + height: 52 + radius: 12 + color: "#e8faf0" + border.color: cardBorder + + RowLayout { + anchors.fill: parent + anchors.leftMargin: 12 + anchors.rightMargin: 12 + + Label { + Layout.fillWidth: true + text: fileShareController.mode === "Send" ? "Discovering" : "Always visible" + font.weight: Font.Medium + color: textPrimary + } + + Label { + text: "›" + font.pixelSize: 22 + color: textMuted + } + } + } + + Label { + Layout.fillWidth: true + Layout.leftMargin: 12 + Layout.topMargin: 8 + Layout.rightMargin: 12 + text: fileShareController.mode === "Send" + ? "Discovering nearby devices. Select a device below to send your file." + : "Nearby devices can share files with you. You'll be notified and must approve each transfer." + wrapMode: Text.WordWrap + font.pixelSize: 12 + color: textMuted + } + } + + // Send mode: outbound file info + ColumnLayout { + visible: fileShareController.pendingSendFilePath.length > 0 + Layout.fillWidth: true + spacing: 0 + + Label { + Layout.leftMargin: 12 + Layout.topMargin: 16 + Layout.bottomMargin: 8 + text: "Sharing 1 file" + font.weight: Font.Medium + color: textPrimary + } + + Rectangle { + Layout.leftMargin: 12 + width: 72 + height: 72 + radius: 12 + color: surface + + Label { + anchors.centerIn: parent + text: "📄" + font.pixelSize: 28 + } + } + + Label { + Layout.fillWidth: true + Layout.leftMargin: 12 + Layout.topMargin: 8 + Layout.rightMargin: 12 + text: fileShareController.pendingSendFileName + elide: Text.ElideRight + font.pixelSize: 13 + color: textMuted + } + + Label { + Layout.fillWidth: true + Layout.leftMargin: 12 + Layout.topMargin: 12 + Layout.rightMargin: 12 + text: "Make sure both devices are unlocked, close together, and have Bluetooth turned on." + wrapMode: Text.WordWrap + font.pixelSize: 12 + color: textMuted + } + } + + Item { Layout.fillHeight: true } + + // Cancel (only visible in send mode) + Rectangle { + visible: fileShareController.pendingSendFilePath.length > 0 + Layout.leftMargin: 12 + Layout.bottomMargin: 12 + height: 40 + width: cancelLbl.implicitWidth + 24 + radius: 12 + color: "#f3f4f6" + border.color: "#d1d5db" + + Label { + id: cancelLbl + anchors.centerIn: parent + text: "Cancel" + font.weight: Font.Medium + color: textPrimary + } + + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + onClicked: fileShareController.switchToReceiveMode() + } + } + } +} diff --git a/sharing/linux/qml_tray_app/components/TransferCard.qml b/sharing/linux/qml_tray_app/components/TransferCard.qml new file mode 100644 index 00000000..50fc4d03 --- /dev/null +++ b/sharing/linux/qml_tray_app/components/TransferCard.qml @@ -0,0 +1,147 @@ +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts + +Rectangle { + required property var modelData + + Layout.fillWidth: true + implicitHeight: xferLayout.implicitHeight + 32 + radius: 24 + color: "#dcfce7" + border.color: "#bbf7d0" + + readonly property color surface: "#ffffff" + readonly property color textPrimary: "#111827" + readonly property color textMuted: "#6b7280" + + readonly property bool isActive: modelData.status === "InProgress" || modelData.status === "Queued" + readonly property bool isTerminal: !isActive + + function endpointLabel(endpointId) { + var label = fileShareController.peerNameForEndpoint(endpointId) + if (!label || label.length === 0 || label === "Unknown device") return "Unknown device" + return label + } + + function formatBytes(bytes) { + if (bytes === undefined || bytes === null) return "0 B" + var value = Number(bytes) + if (!isFinite(value) || value < 0) return "0 B" + var units = ["B", "KB", "MB", "GB", "TB"] + var unit = 0 + while (value >= 1024 && unit < units.length - 1) { value /= 1024; unit += 1 } + return (value >= 10 || unit === 0 ? value.toFixed(0) : value.toFixed(1)) + " " + units[unit] + } + + ColumnLayout { + id: xferLayout + anchors.left: parent.left + anchors.right: parent.right + anchors.top: parent.top + anchors.margins: 16 + spacing: 8 + + RowLayout { + Layout.fillWidth: true + spacing: 12 + + Rectangle { + width: 48; height: 48; radius: 24 + color: surface + + Label { + anchors.centerIn: parent + text: endpointLabel(modelData.endpointId).charAt(0).toUpperCase() + font.pixelSize: 18 + font.weight: Font.Medium + color: textPrimary + } + } + + ColumnLayout { + Layout.fillWidth: true + spacing: 2 + + Label { + Layout.fillWidth: true + text: endpointLabel(modelData.endpointId) + font.weight: Font.Medium + elide: Text.ElideRight + color: textPrimary + } + + Label { + font.pixelSize: 12 + color: textMuted + text: { + if (isActive) + return modelData.direction === "Send" ? "Sending..." : "Receiving..." + return modelData.status + } + } + } + + Rectangle { + height: 22 + width: Math.max(68, medLbl.implicitWidth + 16) + radius: 11 + color: "#e2e8f0" + border.color: "#cbd5e1" + + Label { + id: medLbl + anchors.centerIn: parent + text: modelData.medium + font.pixelSize: 11 + color: "#334155" + } + } + } + + ProgressBar { + Layout.fillWidth: true + visible: isActive + from: 0; to: 1 + value: modelData.progress + } + + Label { + Layout.fillWidth: true + visible: isActive + horizontalAlignment: Text.AlignRight + text: formatBytes(modelData.bytesTransferred) + " / " + formatBytes(modelData.totalBytes) + font.pixelSize: 12 + color: textMuted + } + + RowLayout { + Layout.fillWidth: true + visible: isTerminal + + Item { Layout.fillWidth: true } + + Rectangle { + height: 36 + width: clearLbl.implicitWidth + 24 + radius: 10 + color: surface + border.color: "#d1d5db" + + Label { + id: clearLbl + anchors.centerIn: parent + text: "Clear" + font.weight: Font.Medium + color: textPrimary + } + + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + onClicked: fileShareController.clearTransfers() + } + } + } + } +} diff --git a/sharing/linux/qml_tray_app/resources_file_share.qrc b/sharing/linux/qml_tray_app/resources_file_share.qrc index cf190a44..b5d8797e 100644 --- a/sharing/linux/qml_tray_app/resources_file_share.qrc +++ b/sharing/linux/qml_tray_app/resources_file_share.qrc @@ -1,6 +1,11 @@ FileShareTray.qml + components/AppHeader.qml + components/SideBar.qml + components/AnimatedBlob.qml + components/DeviceCard.qml + components/TransferCard.qml tray_icon.png diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/QtDeploySupport.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/QtDeploySupport.cmake deleted file mode 100644 index 7983a14a..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/QtDeploySupport.cmake +++ /dev/null @@ -1,70 +0,0 @@ -cmake_minimum_required(VERSION 3.16...3.21) - -# These are part of the public API. Projects should use them to provide a -# consistent set of prefix-relative destinations. -if(NOT QT_DEPLOY_BIN_DIR) - set(QT_DEPLOY_BIN_DIR "bin") -endif() -if(NOT QT_DEPLOY_LIBEXEC_DIR) - set(QT_DEPLOY_LIBEXEC_DIR "libexec") -endif() -if(NOT QT_DEPLOY_LIB_DIR) - set(QT_DEPLOY_LIB_DIR "lib64") -endif() -if(NOT QT_DEPLOY_PLUGINS_DIR) - set(QT_DEPLOY_PLUGINS_DIR "lib64/qt6/plugins") -endif() -if(NOT QT_DEPLOY_QML_DIR) - set(QT_DEPLOY_QML_DIR "lib64/qt6/qml") -endif() -if(NOT QT_DEPLOY_TRANSLATIONS_DIR) - set(QT_DEPLOY_TRANSLATIONS_DIR "share/qt6/translations") -endif() -if(NOT QT_DEPLOY_PREFIX) - set(QT_DEPLOY_PREFIX "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}") -endif() -if(QT_DEPLOY_PREFIX STREQUAL "") - set(QT_DEPLOY_PREFIX .) -endif() -if(NOT QT_DEPLOY_IGNORED_LIB_DIRS) - set(QT_DEPLOY_IGNORED_LIB_DIRS "/lib64;/lib") -endif() - -# These are internal implementation details. They may be removed at any time. -set(__QT_DEPLOY_SYSTEM_NAME "Linux") -set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON") -set(__QT_DEPLOY_TOOL "GRD") -set(__QT_DEPLOY_IMPL_DIR "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt") -set(__QT_DEPLOY_VERBOSE "") -set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6") -set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0") -set(__QT_DEPLOY_ACTIVE_CONFIG "") -set(__QT_NO_CREATE_VERSIONLESS_FUNCTIONS "") -set(__QT_DEFAULT_MAJOR_VERSION "6") -set(__QT_DEPLOY_QT_ADDITIONAL_PACKAGES_PREFIX_PATH "") -set(__QT_DEPLOY_QT_INSTALL_PREFIX "/usr") -set(__QT_DEPLOY_QT_INSTALL_BINS "lib64/qt6/bin") -set(__QT_DEPLOY_QT_INSTALL_DATA "share/qt6") -set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "lib64/qt6/libexec") -set(__QT_DEPLOY_QT_INSTALL_PLUGINS "lib64/qt6/plugins") -set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "share/qt6/translations") -set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "/usr/lib64/qt6/bin/qtpaths6") -set(__QT_DEPLOY_PLUGINS "") -set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "ON") -set(__QT_DEPLOY_USE_PATCHELF "") -set(__QT_DEPLOY_PATCHELF_EXECUTABLE "") -set(__QT_DEPLOY_QT_IS_MULTI_CONFIG_BUILD_WITH_DEBUG "FALSE") -set(__QT_DEPLOY_QT_DEBUG_POSTFIX "") - -# Define the CMake commands to be made available during deployment. -set(__qt_deploy_support_files - "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/QtDeployTargets.cmake" - "/usr/lib64/cmake/Qt6Core/Qt6CoreDeploySupport.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlDeploySupport.cmake" -) -foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files) - include("${__qt_deploy_support_file}") -endforeach() - -unset(__qt_deploy_support_file) -unset(__qt_deploy_support_files) diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/QtDeployTargets.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/QtDeployTargets.cmake deleted file mode 100644 index 88707c79..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/QtDeployTargets.cmake +++ /dev/null @@ -1,2 +0,0 @@ -set(__QT_DEPLOY_TARGET_nearby_qml_tray_app_FILE /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_qml_tray_app) -set(__QT_DEPLOY_TARGET_nearby_qml_tray_app_TYPE EXECUTABLE) diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/deploy_qml_imports/nearby_qml_tray_app.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/deploy_qml_imports/nearby_qml_tray_app.cmake deleted file mode 100644 index dfc8edfb..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/deploy_qml_imports/nearby_qml_tray_app.cmake +++ /dev/null @@ -1,20 +0,0 @@ -# Auto-generated deploy QML imports script for target "nearby_qml_tray_app". -# Do not edit, all changes will be lost. -# This file should only be included by qt6_deploy_qml_imports(). - -set(__qt_opts ) -if(arg_NO_QT_IMPORTS) - list(APPEND __qt_opts NO_QT_IMPORTS) -endif() - -_qt_internal_deploy_qml_imports_for_target( - ${__qt_opts} - IMPORTS_FILE "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_build.cmake" - PLUGINS_FOUND __qt_internal_plugins_found - QML_DIR "${arg_QML_DIR}" - PLUGINS_DIR "${arg_PLUGINS_DIR}" -) - -if(arg_PLUGINS_FOUND) - set(${arg_PLUGINS_FOUND} "${__qt_internal_plugins_found}" PARENT_SCOPE) -endif() diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_build.rsp b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_build.rsp deleted file mode 100644 index 12763832..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_build.rsp +++ /dev/null @@ -1,9 +0,0 @@ --rootPath -/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app --cmake-output --output-file -/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_build.cmake --importPath -/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug --importPath -/usr/lib64/qt6/qml \ No newline at end of file diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_conf.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_conf.cmake deleted file mode 100644 index eb737b51..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_conf.cmake +++ /dev/null @@ -1,30 +0,0 @@ -set(qml_import_scanner_imports_count 28) -set(qml_import_scanner_import_0 "CLASSNAME;QtQuick2Plugin;LINKTARGET;Qt6::qtquick2plugin;NAME;QtQuick;PATH;/usr/lib64/qt6/qml/QtQuick;PLUGIN;qtquick2plugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/;RELATIVEPATH;QtQuick;TYPE;module;") -set(qml_import_scanner_import_1 "CLASSNAME;QtQmlPlugin;LINKTARGET;Qt6::qmlplugin;NAME;QtQml;PATH;/usr/lib64/qt6/qml/QtQml;PLUGIN;qmlplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/;RELATIVEPATH;QtQml;TYPE;module;") -set(qml_import_scanner_import_2 "NAME;QML;PATH;/usr/lib64/qt6/qml/QML;PREFER;:/qt-project.org/imports/QML/;RELATIVEPATH;QML;TYPE;module;") -set(qml_import_scanner_import_3 "CLASSNAME;QtQmlModelsPlugin;LINKTARGET;Qt6::modelsplugin;NAME;QtQml.Models;PATH;/usr/lib64/qt6/qml/QtQml/Models;PLUGIN;modelsplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/Models/;RELATIVEPATH;QtQml/Models;TYPE;module;") -set(qml_import_scanner_import_4 "CLASSNAME;QtQmlWorkerScriptPlugin;LINKTARGET;Qt6::workerscriptplugin;NAME;QtQml.WorkerScript;PATH;/usr/lib64/qt6/qml/QtQml/WorkerScript;PLUGIN;workerscriptplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/WorkerScript/;RELATIVEPATH;QtQml/WorkerScript;TYPE;module;") -set(qml_import_scanner_import_5 "CLASSNAME;QtQuickControls2Plugin;LINKTARGET;Qt6::qtquickcontrols2plugin;NAME;QtQuick.Controls;PATH;/usr/lib64/qt6/qml/QtQuick/Controls;PLUGIN;qtquickcontrols2plugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/;RELATIVEPATH;QtQuick/Controls;TYPE;module;") -set(qml_import_scanner_import_6 "CLASSNAME;QtQuickControls2FusionStylePlugin;COMPONENTS;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/ApplicationWindow.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/BusyIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Button.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/CheckBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/CheckDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/ComboBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/DelayButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Dial.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Dialog.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/DialogButtonBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Drawer.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Frame.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/GroupBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/HorizontalHeaderView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/ItemDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Label.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Menu.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/MenuBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/MenuBarItem.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/MenuItem.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/MenuSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Page.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/PageIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Pane.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Popup.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/ProgressBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/RadioButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/RadioDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/RangeSlider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/RoundButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/ScrollBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/ScrollIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/ScrollView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/SelectionRectangle.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Slider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/SpinBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/SplitView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/SwipeDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Switch.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/SwitchDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/TabBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/TabButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/TextArea.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/TextField.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/ToolBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/ToolButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/ToolSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/ToolTip.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/TreeViewDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/Tumbler.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2fusionstyleplugin;NAME;QtQuick.Controls.Fusion;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion;PLUGIN;qtquickcontrols2fusionstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Fusion/;RELATIVEPATH;QtQuick/Controls/Fusion;TYPE;module;") -set(qml_import_scanner_import_7 "CLASSNAME;QtQuickControls2MaterialStylePlugin;COMPONENTS;/usr/lib64/qt6/qml/QtQuick/Controls/Material/ApplicationWindow.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/BusyIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Button.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/CheckBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/CheckDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/ComboBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/DelayButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Dial.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Dialog.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/DialogButtonBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Drawer.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Frame.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/GroupBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/HorizontalHeaderView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/ItemDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Label.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Menu.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/MenuBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/MenuBarItem.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/MenuItem.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/MenuSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Page.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/PageIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Pane.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Popup.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/ProgressBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/RadioButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/RadioDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/RangeSlider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/RoundButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/ScrollBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/ScrollIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/ScrollView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/SelectionRectangle.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Slider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/SpinBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/SplitView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/StackView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/SwipeDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/SwipeView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Switch.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/SwitchDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/TabBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/TabButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/TextArea.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/TextField.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/ToolBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/ToolButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/ToolSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/ToolTip.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/TreeViewDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/Tumbler.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2materialstyleplugin;NAME;QtQuick.Controls.Material;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/Material;PLUGIN;qtquickcontrols2materialstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Material/;RELATIVEPATH;QtQuick/Controls/Material;TYPE;module;") -set(qml_import_scanner_import_8 "CLASSNAME;QtQuickControls2ImagineStylePlugin;COMPONENTS;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/ApplicationWindow.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/BusyIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Button.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/CheckBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/CheckDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/ComboBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/DelayButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Dial.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Dialog.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/DialogButtonBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Drawer.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Frame.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/GroupBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/HorizontalHeaderView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/ItemDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Label.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Menu.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/MenuItem.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/MenuSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Page.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/PageIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Pane.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Popup.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/ProgressBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/RadioButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/RadioDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/RangeSlider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/RoundButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/ScrollBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/ScrollIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/ScrollView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/SelectionRectangle.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Slider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/SpinBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/SplitView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/StackView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/SwipeDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/SwipeView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Switch.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/SwitchDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/TabBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/TabButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/TextArea.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/TextField.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/ToolBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/ToolButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/ToolSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/ToolTip.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/Tumbler.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2imaginestyleplugin;NAME;QtQuick.Controls.Imagine;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine;PLUGIN;qtquickcontrols2imaginestyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Imagine/;RELATIVEPATH;QtQuick/Controls/Imagine;TYPE;module;") -set(qml_import_scanner_import_9 "CLASSNAME;QtQuickControls2UniversalStylePlugin;COMPONENTS;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/ApplicationWindow.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/BusyIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Button.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/CheckBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/CheckDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/ComboBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/DelayButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Dial.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Dialog.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/DialogButtonBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Drawer.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Frame.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/GroupBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/HorizontalHeaderView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/ItemDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Label.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Menu.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/MenuBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/MenuBarItem.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/MenuItem.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/MenuSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Page.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/PageIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Pane.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Popup.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/ProgressBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/RadioButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/RadioDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/RangeSlider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/RoundButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/ScrollBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/ScrollIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/ScrollView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/SelectionRectangle.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Slider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/SpinBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/SplitView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/StackView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/SwipeDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Switch.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/SwitchDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/TabBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/TabButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/TextArea.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/TextField.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/ToolBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/ToolButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/ToolSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/ToolTip.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/Tumbler.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2universalstyleplugin;NAME;QtQuick.Controls.Universal;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/Universal;PLUGIN;qtquickcontrols2universalstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Universal/;RELATIVEPATH;QtQuick/Controls/Universal;TYPE;module;") -set(qml_import_scanner_import_10 "CLASSNAME;QtQuickControls2FluentWinUI3StylePlugin;COMPONENTS;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/ApplicationWindow.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/BusyIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/Button.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/CheckBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/CheckDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/ComboBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/Config.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/DelayButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/Dialog.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/DialogButtonBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/FocusFrame.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/Frame.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/GroupBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/ItemDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/Menu.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/MenuBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/MenuBarItem.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/MenuItem.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/MenuSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/PageIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/Popup.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/ProgressBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/RadioButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/RadioDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/RangeSlider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/RoundButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/Slider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/SpinBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/StyleImage.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/SwipeDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/Switch.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/SwitchDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/TabBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/TabButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/TextArea.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/TextField.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/ToolBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/ToolButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/ToolSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/ToolTip.qml;LINKTARGET;Qt6::qtquickcontrols2fluentwinui3styleplugin;NAME;QtQuick.Controls.FluentWinUI3;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3;PLUGIN;qtquickcontrols2fluentwinui3styleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/FluentWinUI3/;RELATIVEPATH;QtQuick/Controls/FluentWinUI3;TYPE;module;") -set(qml_import_scanner_import_11 "NAME;QtQuick.Controls.Windows;TYPE;module;") -set(qml_import_scanner_import_12 "NAME;QtQuick.Controls.macOS;TYPE;module;") -set(qml_import_scanner_import_13 "NAME;QtQuick.Controls.iOS;TYPE;module;") -set(qml_import_scanner_import_14 "CLASSNAME;QtQuickControls2BasicStylePlugin;COMPONENTS;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/AbstractButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Action.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ActionGroup.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ApplicationWindow.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/BusyIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Button.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ButtonGroup.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Calendar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/CalendarModel.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/CheckBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/CheckDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ComboBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Container.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Control.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/DayOfWeekRow.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/DelayButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Dial.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Dialog.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/DialogButtonBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Drawer.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Frame.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/GroupBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/HorizontalHeaderView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ItemDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Label.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Menu.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/MenuBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/MenuBarItem.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/MenuItem.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/MenuSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/MonthGrid.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Page.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/PageIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Pane.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Popup.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ProgressBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/RadioButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/RadioDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/RangeSlider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/RoundButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ScrollBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ScrollIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ScrollView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/SelectionRectangle.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Slider.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/SpinBox.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/SplitView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/StackView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/SwipeDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/SwipeView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Switch.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/SwitchDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/TabBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/TabButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/TableViewDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/TextArea.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/TextField.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ToolBar.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ToolButton.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ToolSeparator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/ToolTip.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/TreeViewDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/Tumbler.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/VerticalHeaderView.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/WeekNumberColumn.qml;LINKTARGET;Qt6::qtquickcontrols2basicstyleplugin;NAME;QtQuick.Controls.Basic;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/Basic;PLUGIN;qtquickcontrols2basicstyleplugin;PREFER;:/qt-project.org/imports/QtQuick/Controls/Basic/;RELATIVEPATH;QtQuick/Controls/Basic;TYPE;module;") -set(qml_import_scanner_import_15 "CLASSNAME;QtQuickTemplates2Plugin;LINKTARGET;Qt6::qtquicktemplates2plugin;NAME;QtQuick.Templates;PATH;/usr/lib64/qt6/qml/QtQuick/Templates;PLUGIN;qtquicktemplates2plugin;PREFER;:/qt-project.org/imports/QtQuick/Templates/;RELATIVEPATH;QtQuick/Templates;TYPE;module;") -set(qml_import_scanner_import_16 "CLASSNAME;QtQuickControls2ImplPlugin;LINKTARGET;Qt6::qtquickcontrols2implplugin;NAME;QtQuick.Controls.impl;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/impl;PLUGIN;qtquickcontrols2implplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/impl/;RELATIVEPATH;QtQuick/Controls/impl;TYPE;module;") -set(qml_import_scanner_import_17 "CLASSNAME;QtQuickControls2FusionStyleImplPlugin;COMPONENTS;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/impl/ButtonPanel.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/impl/CheckIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/impl/RadioIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/impl/SliderGroove.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/impl/SliderHandle.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/impl/SwitchIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/impl/TextFieldBackground.qml;LINKTARGET;Qt6::qtquickcontrols2fusionstyleimplplugin;NAME;QtQuick.Controls.Fusion.impl;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/Fusion/impl;PLUGIN;qtquickcontrols2fusionstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Fusion/impl/;RELATIVEPATH;QtQuick/Controls/Fusion/impl;TYPE;module;") -set(qml_import_scanner_import_18 "CLASSNAME;QtQuick_WindowPlugin;LINKTARGET;Qt6::quickwindow;NAME;QtQuick.Window;PATH;/usr/lib64/qt6/qml/QtQuick/Window;PLUGIN;quickwindowplugin;PREFER;:/qt-project.org/imports/QtQuick/Window/;RELATIVEPATH;QtQuick/Window;TYPE;module;") -set(qml_import_scanner_import_19 "CLASSNAME;QtQuickControls2MaterialStyleImplPlugin;COMPONENTS;/usr/lib64/qt6/qml/QtQuick/Controls/Material/impl/BoxShadow.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/impl/CheckIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/impl/CursorDelegate.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/impl/ElevationEffect.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/impl/RadioIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/impl/RectangularGlow.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/impl/RoundedElevationEffect.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/impl/SliderHandle.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Material/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2materialstyleimplplugin;NAME;QtQuick.Controls.Material.impl;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/Material/impl;PLUGIN;qtquickcontrols2materialstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Material/impl/;RELATIVEPATH;QtQuick/Controls/Material/impl;TYPE;module;") -set(qml_import_scanner_import_20 "CLASSNAME;QtQuickControls2ImagineStyleImplPlugin;COMPONENTS;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/impl/OpacityMask.qml;LINKTARGET;Qt6::qtquickcontrols2imaginestyleimplplugin;NAME;QtQuick.Controls.Imagine.impl;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/Imagine/impl;PLUGIN;qtquickcontrols2imaginestyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Imagine/impl/;RELATIVEPATH;QtQuick/Controls/Imagine/impl;TYPE;module;") -set(qml_import_scanner_import_21 "CLASSNAME;QtQuickControls2UniversalStyleImplPlugin;COMPONENTS;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/impl/CheckIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/impl/RadioIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2universalstyleimplplugin;NAME;QtQuick.Controls.Universal.impl;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/Universal/impl;PLUGIN;qtquickcontrols2universalstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Universal/impl/;RELATIVEPATH;QtQuick/Controls/Universal/impl;TYPE;module;") -set(qml_import_scanner_import_22 "CLASSNAME;QtQuickControls2FluentWinUI3StyleImplPlugin;COMPONENTS;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/impl/ButtonBackground.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/impl/CheckIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/impl/FocusFrame.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/impl/RadioIndicator.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/impl/StyleImage.qml;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2fluentwinui3styleimplplugin;NAME;QtQuick.Controls.FluentWinUI3.impl;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/FluentWinUI3/impl;PLUGIN;qtquickcontrols2fluentwinui3styleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/FluentWinUI3/impl/;RELATIVEPATH;QtQuick/Controls/FluentWinUI3/impl;TYPE;module;") -set(qml_import_scanner_import_23 "CLASSNAME;QtQuickEffectsPlugin;LINKTARGET;Qt6::effectsplugin;NAME;QtQuick.Effects;PATH;/usr/lib64/qt6/qml/QtQuick/Effects;PLUGIN;effectsplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Effects/;RELATIVEPATH;QtQuick/Effects;TYPE;module;") -set(qml_import_scanner_import_24 "CLASSNAME;QtQuickLayoutsPlugin;LINKTARGET;Qt6::qquicklayoutsplugin;NAME;QtQuick.Layouts;PATH;/usr/lib64/qt6/qml/QtQuick/Layouts;PLUGIN;qquicklayoutsplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Layouts/;RELATIVEPATH;QtQuick/Layouts;TYPE;module;") -set(qml_import_scanner_import_25 "CLASSNAME;QmlShapesPlugin;LINKTARGET;Qt6::qmlshapesplugin;NAME;QtQuick.Shapes;PATH;/usr/lib64/qt6/qml/QtQuick/Shapes;PLUGIN;qmlshapesplugin;PREFER;:/qt-project.org/imports/QtQuick/Shapes/;RELATIVEPATH;QtQuick/Shapes;TYPE;module;") -set(qml_import_scanner_import_26 "CLASSNAME;QtQuickControls2BasicStyleImplPlugin;LINKTARGET;Qt6::qtquickcontrols2basicstyleimplplugin;NAME;QtQuick.Controls.Basic.impl;PATH;/usr/lib64/qt6/qml/QtQuick/Controls/Basic/impl;PLUGIN;qtquickcontrols2basicstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Basic/impl/;RELATIVEPATH;QtQuick/Controls/Basic/impl;TYPE;module;") -set(qml_import_scanner_import_27 "CLASSNAME;QtQmlLabsModelsPlugin;LINKTARGET;Qt6::labsmodelsplugin;NAME;Qt.labs.qmlmodels;PATH;/usr/lib64/qt6/qml/Qt/labs/qmlmodels;PLUGIN;labsmodelsplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/Qt/labs/qmlmodels/;RELATIVEPATH;Qt/labs/qmlmodels;TYPE;module;") - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_conf.rsp b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_conf.rsp deleted file mode 100644 index 35f135b9..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_conf.rsp +++ /dev/null @@ -1,9 +0,0 @@ --rootPath -/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app --cmake-output --output-file -/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_conf.cmake --importPath -/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug --importPath -/usr/lib64/qt6/qml \ No newline at end of file diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeCache.txt b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeCache.txt deleted file mode 100644 index 40daed9c..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeCache.txt +++ /dev/null @@ -1,1656 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug -# It was generated by CMake: /usr/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Path to bazel executable -BAZEL_EXECUTABLE:STRING=bazel - -//Bazel target that produces a shared library for nearby_connections_service_linux -BAZEL_NEARBY_TARGET:STRING=//sharing/linux:nearby_connections_service_linux_shared - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//Choose the type of build, options are: None Debug Release RelWithDebInfo -// MinSizeRel ... -CMAKE_BUILD_TYPE:STRING= - -//Enable/Disable color output during build. -CMAKE_COLOR_MAKEFILE:BOOL=ON - -//CXX compiler -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib - -//Flags used by the CXX compiler during all build types. -CMAKE_CXX_FLAGS:STRING= - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING= - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Enable/Disable output of compile commands during generation. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= - -//Value Computed by CMake. -CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/pkgRedirects - -//User executables (bin) -CMAKE_INSTALL_BINDIR:PATH=bin - -//Read-only architecture-independent data (DATAROOTDIR) -CMAKE_INSTALL_DATADIR:PATH= - -//Read-only architecture-independent data root (share) -CMAKE_INSTALL_DATAROOTDIR:PATH=share - -//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) -CMAKE_INSTALL_DOCDIR:PATH= - -//C header files (include) -CMAKE_INSTALL_INCLUDEDIR:PATH=include - -//Info documentation (DATAROOTDIR/info) -CMAKE_INSTALL_INFODIR:PATH= - -//Object code libraries (lib64) -CMAKE_INSTALL_LIBDIR:PATH=lib64 - -//Program executables (libexec) -CMAKE_INSTALL_LIBEXECDIR:PATH=libexec - -//Locale-dependent data (DATAROOTDIR/locale) -CMAKE_INSTALL_LOCALEDIR:PATH= - -//Modifiable single-machine data (var) -CMAKE_INSTALL_LOCALSTATEDIR:PATH=var - -//Man documentation (DATAROOTDIR/man) -CMAKE_INSTALL_MANDIR:PATH= - -//C header files for non-gcc (/usr/include) -CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr/local - -//Run-time variable data (LOCALSTATEDIR/run) -CMAKE_INSTALL_RUNSTATEDIR:PATH= - -//System admin executables (sbin) -CMAKE_INSTALL_SBINDIR:PATH=sbin - -//Modifiable architecture-independent data (com) -CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com - -//Read-only single-machine data (etc) -CMAKE_INSTALL_SYSCONFDIR:PATH=etc - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//Path to a program. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=nearby_qml_tray_app - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/usr/bin/readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//Path to a program. -CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//Path to a file. -OPENGL_EGL_INCLUDE_DIR:PATH=/usr/include - -//Path to a file. -OPENGL_GLES2_INCLUDE_DIR:PATH=/usr/include - -//Path to a file. -OPENGL_GLES3_INCLUDE_DIR:PATH=/usr/include - -//Path to a file. -OPENGL_GLU_INCLUDE_DIR:PATH=OPENGL_GLU_INCLUDE_DIR-NOTFOUND - -//Path to a file. -OPENGL_GLX_INCLUDE_DIR:PATH=/usr/include - -//Path to a file. -OPENGL_INCLUDE_DIR:PATH=/usr/include - -//Path to a library. -OPENGL_egl_LIBRARY:FILEPATH=/usr/lib64/libEGL.so - -//Path to a library. -OPENGL_gles2_LIBRARY:FILEPATH=/usr/lib64/libGLESv2.so - -//Path to a library. -OPENGL_gles3_LIBRARY:FILEPATH=/usr/lib64/libGLESv2.so - -//Path to a library. -OPENGL_glu_LIBRARY:FILEPATH=OPENGL_glu_LIBRARY-NOTFOUND - -//Path to a library. -OPENGL_glx_LIBRARY:FILEPATH=/usr/lib64/libGLX.so - -//Path to a library. -OPENGL_opengl_LIBRARY:FILEPATH=/usr/lib64/libOpenGL.so - -//Path to a file. -OPENGL_xmesa_INCLUDE_DIR:PATH=OPENGL_xmesa_INCLUDE_DIR-NOTFOUND - -//Arguments to supply to pkg-config -PKG_CONFIG_ARGN:STRING= - -//pkg-config executable -PKG_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/pkg-config - -//Additional directories where find(Qt6 ...) host Qt components -// are searched -QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH:STRING= - -//Additional directories where find(Qt6 ...) components are searched -QT_ADDITIONAL_PACKAGES_PREFIX_PATH:STRING= - -//The directory containing a CMake configuration file for Qt6CorePrivate. -Qt6CorePrivate_DIR:PATH=/usr/lib64/cmake/Qt6CorePrivate - -//The directory containing a CMake configuration file for Qt6CoreTools. -Qt6CoreTools_DIR:PATH=/usr/lib64/cmake/Qt6CoreTools - -//The directory containing a CMake configuration file for Qt6Core. -Qt6Core_DIR:PATH=/usr/lib64/cmake/Qt6Core - -//The directory containing a CMake configuration file for Qt6DBusPrivate. -Qt6DBusPrivate_DIR:PATH=/usr/lib64/cmake/Qt6DBusPrivate - -//The directory containing a CMake configuration file for Qt6DBusTools. -Qt6DBusTools_DIR:PATH=/usr/lib64/cmake/Qt6DBusTools - -//The directory containing a CMake configuration file for Qt6DBus. -Qt6DBus_DIR:PATH=/usr/lib64/cmake/Qt6DBus - -//The directory containing a CMake configuration file for Qt6GuiPrivate. -Qt6GuiPrivate_DIR:PATH=/usr/lib64/cmake/Qt6GuiPrivate - -//The directory containing a CMake configuration file for Qt6GuiTools. -Qt6GuiTools_DIR:PATH=/usr/lib64/cmake/Qt6GuiTools - -//The directory containing a CMake configuration file for Qt6Gui. -Qt6Gui_DIR:PATH=/usr/lib64/cmake/Qt6Gui - -//The directory containing a CMake configuration file for Qt6NetworkPrivate. -Qt6NetworkPrivate_DIR:PATH=/usr/lib64/cmake/Qt6NetworkPrivate - -//The directory containing a CMake configuration file for Qt6Network. -Qt6Network_DIR:PATH=/usr/lib64/cmake/Qt6Network - -//The directory containing a CMake configuration file for Qt6OpenGLPrivate. -Qt6OpenGLPrivate_DIR:PATH=/usr/lib64/cmake/Qt6OpenGLPrivate - -//The directory containing a CMake configuration file for Qt6OpenGL. -Qt6OpenGL_DIR:PATH=/usr/lib64/cmake/Qt6OpenGL - -//The directory containing a CMake configuration file for Qt6QmlCompilerPlusPrivateTools. -Qt6QmlCompilerPlusPrivateTools_DIR:PATH=Qt6QmlCompilerPlusPrivateTools_DIR-NOTFOUND - -//The directory containing a CMake configuration file for Qt6QmlIntegrationPrivate. -Qt6QmlIntegrationPrivate_DIR:PATH=/usr/lib64/cmake/Qt6QmlIntegrationPrivate - -//The directory containing a CMake configuration file for Qt6QmlIntegration. -Qt6QmlIntegration_DIR:PATH=/usr/lib64/cmake/Qt6QmlIntegration - -//The directory containing a CMake configuration file for Qt6QmlMetaPrivate. -Qt6QmlMetaPrivate_DIR:PATH=/usr/lib64/cmake/Qt6QmlMetaPrivate - -//The directory containing a CMake configuration file for Qt6QmlMeta. -Qt6QmlMeta_DIR:PATH=/usr/lib64/cmake/Qt6QmlMeta - -//The directory containing a CMake configuration file for Qt6QmlModelsPrivate. -Qt6QmlModelsPrivate_DIR:PATH=/usr/lib64/cmake/Qt6QmlModelsPrivate - -//The directory containing a CMake configuration file for Qt6QmlModels. -Qt6QmlModels_DIR:PATH=/usr/lib64/cmake/Qt6QmlModels - -//The directory containing a CMake configuration file for Qt6QmlPrivate. -Qt6QmlPrivate_DIR:PATH=/usr/lib64/cmake/Qt6QmlPrivate - -//The directory containing a CMake configuration file for Qt6QmlTools. -Qt6QmlTools_DIR:PATH=/usr/lib64/cmake/Qt6QmlTools - -//The directory containing a CMake configuration file for Qt6QmlWorkerScriptPrivate. -Qt6QmlWorkerScriptPrivate_DIR:PATH=/usr/lib64/cmake/Qt6QmlWorkerScriptPrivate - -//The directory containing a CMake configuration file for Qt6QmlWorkerScript. -Qt6QmlWorkerScript_DIR:PATH=/usr/lib64/cmake/Qt6QmlWorkerScript - -//The directory containing a CMake configuration file for Qt6Qml. -Qt6Qml_DIR:PATH=/usr/lib64/cmake/Qt6Qml - -//The directory containing a CMake configuration file for Qt6QuickControls2Private. -Qt6QuickControls2Private_DIR:PATH=/usr/lib64/cmake/Qt6QuickControls2Private - -//The directory containing a CMake configuration file for Qt6QuickControls2. -Qt6QuickControls2_DIR:PATH=/usr/lib64/cmake/Qt6QuickControls2 - -//The directory containing a CMake configuration file for Qt6QuickPrivate. -Qt6QuickPrivate_DIR:PATH=/usr/lib64/cmake/Qt6QuickPrivate - -//The directory containing a CMake configuration file for Qt6QuickTemplates2Private. -Qt6QuickTemplates2Private_DIR:PATH=/usr/lib64/cmake/Qt6QuickTemplates2Private - -//The directory containing a CMake configuration file for Qt6QuickTemplates2. -Qt6QuickTemplates2_DIR:PATH=/usr/lib64/cmake/Qt6QuickTemplates2 - -//The directory containing a CMake configuration file for Qt6QuickTools. -Qt6QuickTools_DIR:PATH=/usr/lib64/cmake/Qt6QuickTools - -//The directory containing a CMake configuration file for Qt6Quick. -Qt6Quick_DIR:PATH=/usr/lib64/cmake/Qt6Quick - -//The directory containing a CMake configuration file for Qt6WidgetsPrivate. -Qt6WidgetsPrivate_DIR:PATH=/usr/lib64/cmake/Qt6WidgetsPrivate - -//The directory containing a CMake configuration file for Qt6WidgetsTools. -Qt6WidgetsTools_DIR:PATH=/usr/lib64/cmake/Qt6WidgetsTools - -//The directory containing a CMake configuration file for Qt6Widgets. -Qt6Widgets_DIR:PATH=/usr/lib64/cmake/Qt6Widgets - -//The directory containing a CMake configuration file for Qt6. -Qt6_DIR:PATH=/usr/lib64/cmake/Qt6 - -//Path to a program. -Vulkan_GLSLANG_VALIDATOR_EXECUTABLE:FILEPATH=Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND - -//Path to a program. -Vulkan_GLSLC_EXECUTABLE:FILEPATH=Vulkan_GLSLC_EXECUTABLE-NOTFOUND - -//Path to a file. -Vulkan_INCLUDE_DIR:PATH=/usr/include - -//Path to a library. -Vulkan_LIBRARY:FILEPATH=/lib64/libvulkan.so - -//Path to a file. -XKB_INCLUDE_DIR:PATH=/usr/include - -//Path to a library. -XKB_LIBRARY:FILEPATH=/usr/lib64/libxkbcommon.so - -//Value Computed by CMake -nearby_qml_tray_app_BINARY_DIR:STATIC=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug - -//Value Computed by CMake -nearby_qml_tray_app_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -nearby_qml_tray_app_SOURCE_DIR:STATIC=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app - -//Path to a library. -pkgcfg_lib_PKG_XKB_xkbcommon:FILEPATH=/usr/lib64/libxkbcommon.so - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=31 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=6 -//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE -CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/usr/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest -//ADVANCED property for variable: CMAKE_CXX_COMPILER -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Path to cache edit program executable. -CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Unix Makefiles -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Test CMAKE_HAVE_LIBC_PTHREAD -CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app -//ADVANCED property for variable: CMAKE_INSTALL_BINDIR -CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DATADIR -CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR -CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR -CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR -CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_INFODIR -CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR -CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR -CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR -CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR -CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_MANDIR -CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR -CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR -CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR -CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR -CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 -//Install .so files without execute permission. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=0 -//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR -CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/usr/share/cmake -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_TAPI -CMAKE_TAPI-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/usr/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//Details about finding OpenGL -FIND_PACKAGE_MESSAGE_DETAILS_OpenGL:INTERNAL=[/usr/lib64/libOpenGL.so][/usr/lib64/libGLX.so][/usr/include][c ][v()] -//Details about finding Threads -FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] -//Details about finding WrapAtomic -FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic:INTERNAL=[1][v()] -//Details about finding WrapOpenGL -FIND_PACKAGE_MESSAGE_DETAILS_WrapOpenGL:INTERNAL=[ON][v()] -//Details about finding WrapVulkanHeaders -FIND_PACKAGE_MESSAGE_DETAILS_WrapVulkanHeaders:INTERNAL=[/usr/include][v()] -//Test HAVE_STDATOMIC -HAVE_STDATOMIC:INTERNAL=1 -//ADVANCED property for variable: OPENGL_EGL_INCLUDE_DIR -OPENGL_EGL_INCLUDE_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_GLES2_INCLUDE_DIR -OPENGL_GLES2_INCLUDE_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_GLES3_INCLUDE_DIR -OPENGL_GLES3_INCLUDE_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_GLU_INCLUDE_DIR -OPENGL_GLU_INCLUDE_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_GLX_INCLUDE_DIR -OPENGL_GLX_INCLUDE_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_INCLUDE_DIR -OPENGL_INCLUDE_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_egl_LIBRARY -OPENGL_egl_LIBRARY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_gles2_LIBRARY -OPENGL_gles2_LIBRARY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_gles3_LIBRARY -OPENGL_gles3_LIBRARY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_glu_LIBRARY -OPENGL_glu_LIBRARY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_glx_LIBRARY -OPENGL_glx_LIBRARY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_opengl_LIBRARY -OPENGL_opengl_LIBRARY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OPENGL_xmesa_INCLUDE_DIR -OPENGL_xmesa_INCLUDE_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: PKG_CONFIG_ARGN -PKG_CONFIG_ARGN-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE -PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1 -PKG_XKB_CFLAGS:INTERNAL=-I/usr/include -PKG_XKB_CFLAGS_I:INTERNAL= -PKG_XKB_CFLAGS_OTHER:INTERNAL= -PKG_XKB_FOUND:INTERNAL=1 -PKG_XKB_INCLUDEDIR:INTERNAL=/usr/include -PKG_XKB_INCLUDE_DIRS:INTERNAL=/usr/include -PKG_XKB_LDFLAGS:INTERNAL=-L/usr/lib64;-lxkbcommon -PKG_XKB_LDFLAGS_OTHER:INTERNAL= -PKG_XKB_LIBDIR:INTERNAL=/usr/lib64 -PKG_XKB_LIBRARIES:INTERNAL=xkbcommon -PKG_XKB_LIBRARY_DIRS:INTERNAL=/usr/lib64 -PKG_XKB_LIBS:INTERNAL= -PKG_XKB_LIBS_L:INTERNAL= -PKG_XKB_LIBS_OTHER:INTERNAL= -PKG_XKB_LIBS_PATHS:INTERNAL= -PKG_XKB_MODULE_NAME:INTERNAL=xkbcommon -PKG_XKB_PREFIX:INTERNAL=/usr -PKG_XKB_STATIC_CFLAGS:INTERNAL=-I/usr/include -PKG_XKB_STATIC_CFLAGS_I:INTERNAL= -PKG_XKB_STATIC_CFLAGS_OTHER:INTERNAL= -PKG_XKB_STATIC_INCLUDE_DIRS:INTERNAL=/usr/include -PKG_XKB_STATIC_LDFLAGS:INTERNAL=-L/usr/lib64;-lxkbcommon -PKG_XKB_STATIC_LDFLAGS_OTHER:INTERNAL= -PKG_XKB_STATIC_LIBDIR:INTERNAL= -PKG_XKB_STATIC_LIBRARIES:INTERNAL=xkbcommon -PKG_XKB_STATIC_LIBRARY_DIRS:INTERNAL=/usr/lib64 -PKG_XKB_STATIC_LIBS:INTERNAL= -PKG_XKB_STATIC_LIBS_L:INTERNAL= -PKG_XKB_STATIC_LIBS_OTHER:INTERNAL= -PKG_XKB_STATIC_LIBS_PATHS:INTERNAL= -PKG_XKB_VERSION:INTERNAL=1.8.1 -PKG_XKB_xkbcommon_INCLUDEDIR:INTERNAL= -PKG_XKB_xkbcommon_LIBDIR:INTERNAL= -PKG_XKB_xkbcommon_PREFIX:INTERNAL= -PKG_XKB_xkbcommon_VERSION:INTERNAL= -//Qt feature: abstractbutton (from target Qt6::Widgets) -QT_FEATURE_abstractbutton:INTERNAL=ON -//Qt feature: abstractslider (from target Qt6::Widgets) -QT_FEATURE_abstractslider:INTERNAL=ON -//Qt feature: accept4 (from target Qt6::Core) -QT_FEATURE_accept4:INTERNAL=ON -//Qt feature: accessibility (from target Qt6::Gui) -QT_FEATURE_accessibility:INTERNAL=ON -//Qt feature: accessibility_atspi_bridge (from target Qt6::Gui) -QT_FEATURE_accessibility_atspi_bridge:INTERNAL=ON -//Qt feature: action (from target Qt6::Gui) -QT_FEATURE_action:INTERNAL=ON -//Qt feature: aesni (from target Qt6::Core) -QT_FEATURE_aesni:INTERNAL=ON -//Qt feature: android_style_assets (from target Qt6::Core) -QT_FEATURE_android_style_assets:INTERNAL=OFF -//Qt feature: animation (from target Qt6::Core) -QT_FEATURE_animation:INTERNAL=ON -//Qt feature: appstore_compliant (from target Qt6::Core) -QT_FEATURE_appstore_compliant:INTERNAL=OFF -//Qt feature: arm_crc32 (from target Qt6::Core) -QT_FEATURE_arm_crc32:INTERNAL=OFF -//Qt feature: arm_crypto (from target Qt6::Core) -QT_FEATURE_arm_crypto:INTERNAL=OFF -//Qt feature: arm_sve (from target Qt6::Core) -QT_FEATURE_arm_sve:INTERNAL=OFF -//Qt feature: avx (from target Qt6::Core) -QT_FEATURE_avx:INTERNAL=ON -//Qt feature: avx2 (from target Qt6::Core) -QT_FEATURE_avx2:INTERNAL=ON -//Qt feature: avx512bw (from target Qt6::Core) -QT_FEATURE_avx512bw:INTERNAL=ON -//Qt feature: avx512cd (from target Qt6::Core) -QT_FEATURE_avx512cd:INTERNAL=ON -//Qt feature: avx512dq (from target Qt6::Core) -QT_FEATURE_avx512dq:INTERNAL=ON -//Qt feature: avx512er (from target Qt6::Core) -QT_FEATURE_avx512er:INTERNAL=ON -//Qt feature: avx512f (from target Qt6::Core) -QT_FEATURE_avx512f:INTERNAL=ON -//Qt feature: avx512ifma (from target Qt6::Core) -QT_FEATURE_avx512ifma:INTERNAL=ON -//Qt feature: avx512pf (from target Qt6::Core) -QT_FEATURE_avx512pf:INTERNAL=ON -//Qt feature: avx512vbmi (from target Qt6::Core) -QT_FEATURE_avx512vbmi:INTERNAL=ON -//Qt feature: avx512vbmi2 (from target Qt6::Core) -QT_FEATURE_avx512vbmi2:INTERNAL=ON -//Qt feature: avx512vl (from target Qt6::Core) -QT_FEATURE_avx512vl:INTERNAL=ON -//Qt feature: backtrace (from target Qt6::Core) -QT_FEATURE_backtrace:INTERNAL=ON -//Qt feature: broken_threadlocal_dtors (from target Qt6::Core) -QT_FEATURE_broken_threadlocal_dtors:INTERNAL=OFF -//Qt feature: brotli (from target Qt6::Network) -QT_FEATURE_brotli:INTERNAL=ON -//Qt feature: buttongroup (from target Qt6::Widgets) -QT_FEATURE_buttongroup:INTERNAL=ON -//Qt feature: calendarwidget (from target Qt6::Widgets) -QT_FEATURE_calendarwidget:INTERNAL=ON -//Qt feature: cborstreamreader (from target Qt6::Core) -QT_FEATURE_cborstreamreader:INTERNAL=ON -//Qt feature: cborstreamwriter (from target Qt6::Core) -QT_FEATURE_cborstreamwriter:INTERNAL=ON -//Qt feature: checkbox (from target Qt6::Widgets) -QT_FEATURE_checkbox:INTERNAL=ON -//Qt feature: clipboard (from target Qt6::Gui) -QT_FEATURE_clipboard:INTERNAL=ON -//Qt feature: clock_gettime (from target Qt6::Core) -QT_FEATURE_clock_gettime:INTERNAL=ON -//Qt feature: clock_monotonic (from target Qt6::Core) -QT_FEATURE_clock_monotonic:INTERNAL=ON -//Qt feature: colordialog (from target Qt6::Widgets) -QT_FEATURE_colordialog:INTERNAL=ON -//Qt feature: colornames (from target Qt6::Gui) -QT_FEATURE_colornames:INTERNAL=ON -//Qt feature: columnview (from target Qt6::Widgets) -QT_FEATURE_columnview:INTERNAL=ON -//Qt feature: combobox (from target Qt6::Widgets) -QT_FEATURE_combobox:INTERNAL=ON -//Qt feature: commandlineparser (from target Qt6::Core) -QT_FEATURE_commandlineparser:INTERNAL=ON -//Qt feature: commandlinkbutton (from target Qt6::Widgets) -QT_FEATURE_commandlinkbutton:INTERNAL=ON -//Qt feature: completer (from target Qt6::Widgets) -QT_FEATURE_completer:INTERNAL=ON -//Qt feature: concatenatetablesproxymodel (from target Qt6::Core) -QT_FEATURE_concatenatetablesproxymodel:INTERNAL=ON -//Qt feature: concurrent (from target Qt6::Core) -QT_FEATURE_concurrent:INTERNAL=ON -//Qt feature: contextmenu (from target Qt6::Widgets) -QT_FEATURE_contextmenu:INTERNAL=ON -//Qt feature: cpp_winrt (from target Qt6::Core) -QT_FEATURE_cpp_winrt:INTERNAL=OFF -//Qt feature: cross_compile (from target Qt6::Core) -QT_FEATURE_cross_compile:INTERNAL=OFF -//Qt feature: cssparser (from target Qt6::Gui) -QT_FEATURE_cssparser:INTERNAL=ON -//Qt feature: ctf (from target Qt6::Core) -QT_FEATURE_ctf:INTERNAL=OFF -//Qt feature: cursor (from target Qt6::Gui) -QT_FEATURE_cursor:INTERNAL=ON -//Qt feature: cxx11_future (from target Qt6::Core) -QT_FEATURE_cxx11_future:INTERNAL=ON -//Qt feature: cxx17_filesystem (from target Qt6::Core) -QT_FEATURE_cxx17_filesystem:INTERNAL=ON -//Qt feature: cxx20 (from target Qt6::Core) -QT_FEATURE_cxx20:INTERNAL=OFF -//Qt feature: cxx20_format (from target Qt6::Core) -QT_FEATURE_cxx20_format:INTERNAL=ON -//Qt feature: cxx23_stacktrace (from target Qt6::Core) -QT_FEATURE_cxx23_stacktrace:INTERNAL=OFF -//Qt feature: cxx2a (from target Qt6::Core) -QT_FEATURE_cxx2a:INTERNAL=OFF -//Qt feature: cxx2b (from target Qt6::Core) -QT_FEATURE_cxx2b:INTERNAL=OFF -//Qt feature: cxx2c (from target Qt6::Core) -QT_FEATURE_cxx2c:INTERNAL=OFF -//Qt feature: datawidgetmapper (from target Qt6::Widgets) -QT_FEATURE_datawidgetmapper:INTERNAL=ON -//Qt feature: datestring (from target Qt6::Core) -QT_FEATURE_datestring:INTERNAL=ON -//Qt feature: datetimeedit (from target Qt6::Widgets) -QT_FEATURE_datetimeedit:INTERNAL=ON -//Qt feature: datetimeparser (from target Qt6::Core) -QT_FEATURE_datetimeparser:INTERNAL=ON -//Qt feature: dbus (from target Qt6::Core) -QT_FEATURE_dbus:INTERNAL=ON -//Qt feature: dbus_linked (from target Qt6::Core) -QT_FEATURE_dbus_linked:INTERNAL=ON -//Qt feature: debug (from target Qt6::Core) -QT_FEATURE_debug:INTERNAL=OFF -//Qt feature: debug_and_release (from target Qt6::Core) -QT_FEATURE_debug_and_release:INTERNAL=OFF -//Qt feature: desktopservices (from target Qt6::Gui) -QT_FEATURE_desktopservices:INTERNAL=ON -//Qt feature: developer_build (from target Qt6::Core) -QT_FEATURE_developer_build:INTERNAL=OFF -//Qt feature: dial (from target Qt6::Widgets) -QT_FEATURE_dial:INTERNAL=ON -//Qt feature: dialog (from target Qt6::Widgets) -QT_FEATURE_dialog:INTERNAL=ON -//Qt feature: dialogbuttonbox (from target Qt6::Widgets) -QT_FEATURE_dialogbuttonbox:INTERNAL=ON -//Qt feature: direct2d (from target Qt6::Gui) -QT_FEATURE_direct2d:INTERNAL=OFF -//Qt feature: direct2d1_1 (from target Qt6::Gui) -QT_FEATURE_direct2d1_1:INTERNAL=OFF -//Qt feature: directfb (from target Qt6::Gui) -QT_FEATURE_directfb:INTERNAL=OFF -//Qt feature: directwrite (from target Qt6::Gui) -QT_FEATURE_directwrite:INTERNAL=OFF -//Qt feature: directwrite3 (from target Qt6::Gui) -QT_FEATURE_directwrite3:INTERNAL=OFF -//Qt feature: directwritecolrv1 (from target Qt6::Gui) -QT_FEATURE_directwritecolrv1:INTERNAL=OFF -//Qt feature: dladdr (from target Qt6::Core) -QT_FEATURE_dladdr:INTERNAL=ON -//Qt feature: dlopen (from target Qt6::Core) -QT_FEATURE_dlopen:INTERNAL=ON -//Qt feature: dnslookup (from target Qt6::Network) -QT_FEATURE_dnslookup:INTERNAL=ON -//Qt feature: doc_snippets (from target Qt6::Core) -QT_FEATURE_doc_snippets:INTERNAL=OFF -//Qt feature: dockwidget (from target Qt6::Widgets) -QT_FEATURE_dockwidget:INTERNAL=ON -//Qt feature: doubleconversion (from target Qt6::Core) -QT_FEATURE_doubleconversion:INTERNAL=ON -//Qt feature: draganddrop (from target Qt6::Gui) -QT_FEATURE_draganddrop:INTERNAL=ON -//Qt feature: drm_atomic (from target Qt6::Gui) -QT_FEATURE_drm_atomic:INTERNAL=ON -//Qt feature: dtls (from target Qt6::Network) -QT_FEATURE_dtls:INTERNAL=ON -//Qt feature: dup3 (from target Qt6::Core) -QT_FEATURE_dup3:INTERNAL=ON -//Qt feature: dynamicgl (from target Qt6::Gui) -QT_FEATURE_dynamicgl:INTERNAL=OFF -//Qt feature: easingcurve (from target Qt6::Core) -QT_FEATURE_easingcurve:INTERNAL=ON -//Qt feature: effects (from target Qt6::Widgets) -QT_FEATURE_effects:INTERNAL=ON -//Qt feature: egl (from target Qt6::Gui) -QT_FEATURE_egl:INTERNAL=ON -//Qt feature: egl_x11 (from target Qt6::Gui) -QT_FEATURE_egl_x11:INTERNAL=ON -//Qt feature: eglfs (from target Qt6::Gui) -QT_FEATURE_eglfs:INTERNAL=ON -//Qt feature: eglfs_brcm (from target Qt6::Gui) -QT_FEATURE_eglfs_brcm:INTERNAL=OFF -//Qt feature: eglfs_egldevice (from target Qt6::Gui) -QT_FEATURE_eglfs_egldevice:INTERNAL=ON -//Qt feature: eglfs_gbm (from target Qt6::Gui) -QT_FEATURE_eglfs_gbm:INTERNAL=ON -//Qt feature: eglfs_mali (from target Qt6::Gui) -QT_FEATURE_eglfs_mali:INTERNAL=OFF -//Qt feature: eglfs_openwfd (from target Qt6::Gui) -QT_FEATURE_eglfs_openwfd:INTERNAL=OFF -//Qt feature: eglfs_rcar (from target Qt6::Gui) -QT_FEATURE_eglfs_rcar:INTERNAL=OFF -//Qt feature: eglfs_viv (from target Qt6::Gui) -QT_FEATURE_eglfs_viv:INTERNAL=OFF -//Qt feature: eglfs_viv_wl (from target Qt6::Gui) -QT_FEATURE_eglfs_viv_wl:INTERNAL=OFF -//Qt feature: eglfs_vsp2 (from target Qt6::Gui) -QT_FEATURE_eglfs_vsp2:INTERNAL=OFF -//Qt feature: eglfs_x11 (from target Qt6::Gui) -QT_FEATURE_eglfs_x11:INTERNAL=ON -//Qt feature: elf_private_full_version (from target Qt6::Core) -QT_FEATURE_elf_private_full_version:INTERNAL=ON -//Qt feature: emojisegmenter (from target Qt6::Gui) -QT_FEATURE_emojisegmenter:INTERNAL=ON -//Qt feature: enable_new_dtags (from target Qt6::Core) -QT_FEATURE_enable_new_dtags:INTERNAL=ON -//Qt feature: errormessage (from target Qt6::Widgets) -QT_FEATURE_errormessage:INTERNAL=ON -//Qt feature: etw (from target Qt6::Core) -QT_FEATURE_etw:INTERNAL=OFF -//Qt feature: evdev (from target Qt6::Gui) -QT_FEATURE_evdev:INTERNAL=ON -//Qt feature: f16c (from target Qt6::Core) -QT_FEATURE_f16c:INTERNAL=ON -//Qt feature: filedialog (from target Qt6::Widgets) -QT_FEATURE_filedialog:INTERNAL=ON -//Qt feature: filesystemiterator (from target Qt6::Core) -QT_FEATURE_filesystemiterator:INTERNAL=ON -//Qt feature: filesystemmodel (from target Qt6::Gui) -QT_FEATURE_filesystemmodel:INTERNAL=ON -//Qt feature: filesystemwatcher (from target Qt6::Core) -QT_FEATURE_filesystemwatcher:INTERNAL=ON -//Qt feature: fontcombobox (from target Qt6::Widgets) -QT_FEATURE_fontcombobox:INTERNAL=ON -//Qt feature: fontconfig (from target Qt6::Gui) -QT_FEATURE_fontconfig:INTERNAL=ON -//Qt feature: fontdialog (from target Qt6::Widgets) -QT_FEATURE_fontdialog:INTERNAL=ON -//Qt feature: force_asserts (from target Qt6::Core) -QT_FEATURE_force_asserts:INTERNAL=OFF -//Qt feature: force_bundled_libs (from target Qt6::Core) -QT_FEATURE_force_bundled_libs:INTERNAL=OFF -//Qt feature: force_debug_info (from target Qt6::Core) -QT_FEATURE_force_debug_info:INTERNAL=ON -//Qt feature: force_system_libs (from target Qt6::Core) -QT_FEATURE_force_system_libs:INTERNAL=OFF -//Qt feature: forkfd_pidfd (from target Qt6::Core) -QT_FEATURE_forkfd_pidfd:INTERNAL=ON -//Qt feature: formlayout (from target Qt6::Widgets) -QT_FEATURE_formlayout:INTERNAL=ON -//Qt feature: framework (from target Qt6::Core) -QT_FEATURE_framework:INTERNAL=OFF -//Qt feature: freetype (from target Qt6::Gui) -QT_FEATURE_freetype:INTERNAL=ON -//Qt feature: fscompleter (from target Qt6::Widgets) -QT_FEATURE_fscompleter:INTERNAL=ON -//Qt feature: futimens (from target Qt6::Core) -QT_FEATURE_futimens:INTERNAL=ON -//Qt feature: future (from target Qt6::Core) -QT_FEATURE_future:INTERNAL=ON -//Qt feature: gbm (from target Qt6::Gui) -QT_FEATURE_gbm:INTERNAL=ON -//Qt feature: gc_binaries (from target Qt6::Core) -QT_FEATURE_gc_binaries:INTERNAL=OFF -//Qt feature: gestures (from target Qt6::Core) -QT_FEATURE_gestures:INTERNAL=ON -//Qt feature: getauxval (from target Qt6::Core) -QT_FEATURE_getauxval:INTERNAL=ON -//Qt feature: getentropy (from target Qt6::Core) -QT_FEATURE_getentropy:INTERNAL=ON -//Qt feature: getifaddrs (from target Qt6::Network) -QT_FEATURE_getifaddrs:INTERNAL=OFF -//Qt feature: gif (from target Qt6::Gui) -QT_FEATURE_gif:INTERNAL=ON -//Qt feature: glib (from target Qt6::Core) -QT_FEATURE_glib:INTERNAL=ON -//Qt feature: glibc_fortify_source (from target Qt6::Core) -QT_FEATURE_glibc_fortify_source:INTERNAL=ON -//Qt feature: graphicseffect (from target Qt6::Widgets) -QT_FEATURE_graphicseffect:INTERNAL=ON -//Qt feature: graphicsframecapture (from target Qt6::Gui) -QT_FEATURE_graphicsframecapture:INTERNAL=OFF -//Qt feature: graphicsview (from target Qt6::Widgets) -QT_FEATURE_graphicsview:INTERNAL=ON -//Qt feature: groupbox (from target Qt6::Widgets) -QT_FEATURE_groupbox:INTERNAL=ON -//Qt feature: gssapi (from target Qt6::Network) -QT_FEATURE_gssapi:INTERNAL=ON -//Qt feature: gtk3 (from target Qt6::Widgets) -QT_FEATURE_gtk3:INTERNAL=ON -//Qt feature: gui (from target Qt6::Core) -QT_FEATURE_gui:INTERNAL=ON -//Qt feature: harfbuzz (from target Qt6::Gui) -QT_FEATURE_harfbuzz:INTERNAL=ON -//Qt feature: highdpiscaling (from target Qt6::Gui) -QT_FEATURE_highdpiscaling:INTERNAL=ON -//Qt feature: hijricalendar (from target Qt6::Core) -QT_FEATURE_hijricalendar:INTERNAL=ON -//Qt feature: http (from target Qt6::Network) -QT_FEATURE_http:INTERNAL=ON -//Qt feature: ico (from target Qt6::Gui) -QT_FEATURE_ico:INTERNAL=ON -//Qt feature: icu (from target Qt6::Core) -QT_FEATURE_icu:INTERNAL=ON -//Qt feature: identityproxymodel (from target Qt6::Core) -QT_FEATURE_identityproxymodel:INTERNAL=ON -//Qt feature: im (from target Qt6::Gui) -QT_FEATURE_im:INTERNAL=ON -//Qt feature: image_heuristic_mask (from target Qt6::Gui) -QT_FEATURE_image_heuristic_mask:INTERNAL=ON -//Qt feature: image_text (from target Qt6::Gui) -QT_FEATURE_image_text:INTERNAL=ON -//Qt feature: imageformat_bmp (from target Qt6::Gui) -QT_FEATURE_imageformat_bmp:INTERNAL=ON -//Qt feature: imageformat_jpeg (from target Qt6::Gui) -QT_FEATURE_imageformat_jpeg:INTERNAL=ON -//Qt feature: imageformat_png (from target Qt6::Gui) -QT_FEATURE_imageformat_png:INTERNAL=ON -//Qt feature: imageformat_ppm (from target Qt6::Gui) -QT_FEATURE_imageformat_ppm:INTERNAL=ON -//Qt feature: imageformat_xbm (from target Qt6::Gui) -QT_FEATURE_imageformat_xbm:INTERNAL=ON -//Qt feature: imageformat_xpm (from target Qt6::Gui) -QT_FEATURE_imageformat_xpm:INTERNAL=ON -//Qt feature: imageformatplugin (from target Qt6::Gui) -QT_FEATURE_imageformatplugin:INTERNAL=ON -//Qt feature: imageio_text_loading (from target Qt6::Gui) -QT_FEATURE_imageio_text_loading:INTERNAL=ON -//Qt feature: inotify (from target Qt6::Core) -QT_FEATURE_inotify:INTERNAL=ON -//Qt feature: inputdialog (from target Qt6::Widgets) -QT_FEATURE_inputdialog:INTERNAL=ON -//Qt feature: integrityfb (from target Qt6::Gui) -QT_FEATURE_integrityfb:INTERNAL=OFF -//Qt feature: integrityhid (from target Qt6::Gui) -QT_FEATURE_integrityhid:INTERNAL=OFF -//Qt feature: intelcet (from target Qt6::Core) -QT_FEATURE_intelcet:INTERNAL=ON -//Qt feature: ipv6ifname (from target Qt6::Network) -QT_FEATURE_ipv6ifname:INTERNAL=OFF -//Qt feature: islamiccivilcalendar (from target Qt6::Core) -QT_FEATURE_islamiccivilcalendar:INTERNAL=ON -//Qt feature: itemmodel (from target Qt6::Core) -QT_FEATURE_itemmodel:INTERNAL=ON -//Qt feature: itemviews (from target Qt6::Widgets) -QT_FEATURE_itemviews:INTERNAL=ON -//Qt feature: jalalicalendar (from target Qt6::Core) -QT_FEATURE_jalalicalendar:INTERNAL=ON -//Qt feature: journald (from target Qt6::Core) -QT_FEATURE_journald:INTERNAL=ON -//Qt feature: jpeg (from target Qt6::Gui) -QT_FEATURE_jpeg:INTERNAL=ON -//Qt feature: keysequenceedit (from target Qt6::Widgets) -QT_FEATURE_keysequenceedit:INTERNAL=ON -//Qt feature: kms (from target Qt6::Gui) -QT_FEATURE_kms:INTERNAL=ON -//Qt feature: label (from target Qt6::Widgets) -QT_FEATURE_label:INTERNAL=ON -//Qt feature: largefile (from target Qt6::Core) -QT_FEATURE_largefile:INTERNAL=ON -//Qt feature: lasx (from target Qt6::Core) -QT_FEATURE_lasx:INTERNAL=OFF -//Qt feature: lcdnumber (from target Qt6::Widgets) -QT_FEATURE_lcdnumber:INTERNAL=ON -//Qt feature: libcpp_hardening (from target Qt6::Core) -QT_FEATURE_libcpp_hardening:INTERNAL=OFF -//Qt feature: libinput (from target Qt6::Gui) -QT_FEATURE_libinput:INTERNAL=ON -//Qt feature: libinput_axis_api (from target Qt6::Gui) -QT_FEATURE_libinput_axis_api:INTERNAL=ON -//Qt feature: libinput_hires_wheel_support (from target Qt6::Gui) -QT_FEATURE_libinput_hires_wheel_support:INTERNAL=ON -//Qt feature: libproxy (from target Qt6::Network) -QT_FEATURE_libproxy:INTERNAL=ON -//Qt feature: library (from target Qt6::Core) -QT_FEATURE_library:INTERNAL=ON -//Qt feature: libresolv (from target Qt6::Network) -QT_FEATURE_libresolv:INTERNAL=ON -//Qt feature: libstdcpp_assertions (from target Qt6::Core) -QT_FEATURE_libstdcpp_assertions:INTERNAL=ON -//Qt feature: libudev (from target Qt6::Core) -QT_FEATURE_libudev:INTERNAL=ON -//Qt feature: lineedit (from target Qt6::Widgets) -QT_FEATURE_lineedit:INTERNAL=ON -//Qt feature: linkat (from target Qt6::Core) -QT_FEATURE_linkat:INTERNAL=ON -//Qt feature: linux_netlink (from target Qt6::Network) -QT_FEATURE_linux_netlink:INTERNAL=ON -//Qt feature: linuxfb (from target Qt6::Gui) -QT_FEATURE_linuxfb:INTERNAL=ON -//Qt feature: listview (from target Qt6::Widgets) -QT_FEATURE_listview:INTERNAL=ON -//Qt feature: listwidget (from target Qt6::Widgets) -QT_FEATURE_listwidget:INTERNAL=ON -//Qt feature: localserver (from target Qt6::Network) -QT_FEATURE_localserver:INTERNAL=ON -//Qt feature: localtime_r (from target Qt6::Core) -QT_FEATURE_localtime_r:INTERNAL=ON -//Qt feature: localtime_s (from target Qt6::Core) -QT_FEATURE_localtime_s:INTERNAL=OFF -//Qt feature: lsx (from target Qt6::Core) -QT_FEATURE_lsx:INTERNAL=OFF -//Qt feature: lttng (from target Qt6::Core) -QT_FEATURE_lttng:INTERNAL=OFF -//Qt feature: mainwindow (from target Qt6::Widgets) -QT_FEATURE_mainwindow:INTERNAL=ON -//Qt feature: mdiarea (from target Qt6::Widgets) -QT_FEATURE_mdiarea:INTERNAL=ON -//Qt feature: memmem (from target Qt6::Core) -QT_FEATURE_memmem:INTERNAL=ON -//Qt feature: memrchr (from target Qt6::Core) -QT_FEATURE_memrchr:INTERNAL=ON -//Qt feature: menu (from target Qt6::Widgets) -QT_FEATURE_menu:INTERNAL=ON -//Qt feature: menubar (from target Qt6::Widgets) -QT_FEATURE_menubar:INTERNAL=ON -//Qt feature: messagebox (from target Qt6::Widgets) -QT_FEATURE_messagebox:INTERNAL=ON -//Qt feature: metal (from target Qt6::Gui) -QT_FEATURE_metal:INTERNAL=OFF -//Qt feature: mimetype (from target Qt6::Core) -QT_FEATURE_mimetype:INTERNAL=ON -//Qt feature: mimetype_database (from target Qt6::Core) -QT_FEATURE_mimetype_database:INTERNAL=ON -//Qt feature: mips_dsp (from target Qt6::Core) -QT_FEATURE_mips_dsp:INTERNAL=OFF -//Qt feature: mips_dspr2 (from target Qt6::Core) -QT_FEATURE_mips_dspr2:INTERNAL=OFF -//Qt feature: movie (from target Qt6::Gui) -QT_FEATURE_movie:INTERNAL=ON -//Qt feature: mtdev (from target Qt6::Gui) -QT_FEATURE_mtdev:INTERNAL=ON -//Qt feature: multiprocess (from target Qt6::Gui) -QT_FEATURE_multiprocess:INTERNAL=ON -//Qt feature: neon (from target Qt6::Core) -QT_FEATURE_neon:INTERNAL=OFF -//Qt feature: network (from target Qt6::Core) -QT_FEATURE_network:INTERNAL=ON -//Qt feature: networkdiskcache (from target Qt6::Network) -QT_FEATURE_networkdiskcache:INTERNAL=ON -//Qt feature: networkinterface (from target Qt6::Network) -QT_FEATURE_networkinterface:INTERNAL=ON -//Qt feature: networklistmanager (from target Qt6::Network) -QT_FEATURE_networklistmanager:INTERNAL=OFF -//Qt feature: networkproxy (from target Qt6::Network) -QT_FEATURE_networkproxy:INTERNAL=ON -//Qt feature: no_direct_extern_access (from target Qt6::Core) -QT_FEATURE_no_direct_extern_access:INTERNAL=OFF -//Qt feature: ocsp (from target Qt6::Network) -QT_FEATURE_ocsp:INTERNAL=ON -//Qt feature: opengl (from target Qt6::Gui) -QT_FEATURE_opengl:INTERNAL=ON -//Qt feature: opengles2 (from target Qt6::Gui) -QT_FEATURE_opengles2:INTERNAL=OFF -//Qt feature: opengles3 (from target Qt6::Gui) -QT_FEATURE_opengles3:INTERNAL=OFF -//Qt feature: opengles31 (from target Qt6::Gui) -QT_FEATURE_opengles31:INTERNAL=OFF -//Qt feature: opengles32 (from target Qt6::Gui) -QT_FEATURE_opengles32:INTERNAL=OFF -//Qt feature: openssl (from target Qt6::Core) -QT_FEATURE_openssl:INTERNAL=ON -//Qt feature: openssl_hash (from target Qt6::Core) -QT_FEATURE_openssl_hash:INTERNAL=ON -//Qt feature: openssl_linked (from target Qt6::Core) -QT_FEATURE_openssl_linked:INTERNAL=ON -//Qt feature: opensslv11 (from target Qt6::Core) -QT_FEATURE_opensslv11:INTERNAL=OFF -//Qt feature: opensslv30 (from target Qt6::Core) -QT_FEATURE_opensslv30:INTERNAL=ON -//Qt feature: openvg (from target Qt6::Gui) -QT_FEATURE_openvg:INTERNAL=OFF -//Qt feature: pcre2 (from target Qt6::Core) -QT_FEATURE_pcre2:INTERNAL=ON -//Qt feature: pdf (from target Qt6::Gui) -QT_FEATURE_pdf:INTERNAL=ON -//Qt feature: permissions (from target Qt6::Core) -QT_FEATURE_permissions:INTERNAL=ON -//Qt feature: picture (from target Qt6::Gui) -QT_FEATURE_picture:INTERNAL=ON -//Qt feature: pkg_config (from target Qt6::Core) -QT_FEATURE_pkg_config:INTERNAL=ON -//Qt feature: plugin_manifest (from target Qt6::Core) -QT_FEATURE_plugin_manifest:INTERNAL=ON -//Qt feature: png (from target Qt6::Gui) -QT_FEATURE_png:INTERNAL=ON -//Qt feature: poll_exit_on_error (from target Qt6::Core) -QT_FEATURE_poll_exit_on_error:INTERNAL=OFF -//Qt feature: poll_poll (from target Qt6::Core) -QT_FEATURE_poll_poll:INTERNAL=OFF -//Qt feature: poll_pollts (from target Qt6::Core) -QT_FEATURE_poll_pollts:INTERNAL=OFF -//Qt feature: poll_ppoll (from target Qt6::Core) -QT_FEATURE_poll_ppoll:INTERNAL=ON -//Qt feature: poll_select (from target Qt6::Core) -QT_FEATURE_poll_select:INTERNAL=OFF -//Qt feature: posix_fallocate (from target Qt6::Core) -QT_FEATURE_posix_fallocate:INTERNAL=ON -//Qt feature: posix_sem (from target Qt6::Core) -QT_FEATURE_posix_sem:INTERNAL=ON -//Qt feature: posix_shm (from target Qt6::Core) -QT_FEATURE_posix_shm:INTERNAL=ON -//Qt feature: precompile_header (from target Qt6::Core) -QT_FEATURE_precompile_header:INTERNAL=ON -//Qt feature: printsupport (from target Qt6::Core) -QT_FEATURE_printsupport:INTERNAL=ON -//Qt feature: private_tests (from target Qt6::Core) -QT_FEATURE_private_tests:INTERNAL=OFF -//Qt feature: process (from target Qt6::Core) -QT_FEATURE_process:INTERNAL=ON -//Qt feature: processenvironment (from target Qt6::Core) -QT_FEATURE_processenvironment:INTERNAL=ON -//Qt feature: progressbar (from target Qt6::Widgets) -QT_FEATURE_progressbar:INTERNAL=ON -//Qt feature: progressdialog (from target Qt6::Widgets) -QT_FEATURE_progressdialog:INTERNAL=ON -//Qt feature: proxymodel (from target Qt6::Core) -QT_FEATURE_proxymodel:INTERNAL=ON -//Qt feature: pthread_clockjoin (from target Qt6::Core) -QT_FEATURE_pthread_clockjoin:INTERNAL=ON -//Qt feature: pthread_condattr_setclock (from target Qt6::Core) -QT_FEATURE_pthread_condattr_setclock:INTERNAL=ON -//Qt feature: pthread_timedjoin (from target Qt6::Core) -QT_FEATURE_pthread_timedjoin:INTERNAL=ON -//Qt feature: publicsuffix_qt (from target Qt6::Network) -QT_FEATURE_publicsuffix_qt:INTERNAL=ON -//Qt feature: publicsuffix_system (from target Qt6::Network) -QT_FEATURE_publicsuffix_system:INTERNAL=ON -//Qt feature: pushbutton (from target Qt6::Widgets) -QT_FEATURE_pushbutton:INTERNAL=ON -//Qt feature: qml_animation (from target Qt6::Qml) -QT_FEATURE_qml_animation:INTERNAL=ON -//Qt feature: qml_debug (from target Qt6::Qml) -QT_FEATURE_qml_debug:INTERNAL=ON -//Qt feature: qml_delegate_model (from target Qt6::QmlModels) -QT_FEATURE_qml_delegate_model:INTERNAL=ON -//Qt feature: qml_itemmodel (from target Qt6::Qml) -QT_FEATURE_qml_itemmodel:INTERNAL=ON -//Qt feature: qml_jit (from target Qt6::Qml) -QT_FEATURE_qml_jit:INTERNAL=ON -//Qt feature: qml_list_model (from target Qt6::QmlModels) -QT_FEATURE_qml_list_model:INTERNAL=ON -//Qt feature: qml_locale (from target Qt6::Qml) -QT_FEATURE_qml_locale:INTERNAL=ON -//Qt feature: qml_network (from target Qt6::Qml) -QT_FEATURE_qml_network:INTERNAL=ON -//Qt feature: qml_object_model (from target Qt6::QmlModels) -QT_FEATURE_qml_object_model:INTERNAL=ON -//Qt feature: qml_preview (from target Qt6::Qml) -QT_FEATURE_qml_preview:INTERNAL=ON -//Qt feature: qml_profiler (from target Qt6::Qml) -QT_FEATURE_qml_profiler:INTERNAL=ON -//Qt feature: qml_python (from target Qt6::Qml) -QT_FEATURE_qml_python:INTERNAL=ON -//Qt feature: qml_ssl (from target Qt6::Qml) -QT_FEATURE_qml_ssl:INTERNAL=ON -//Qt feature: qml_table_model (from target Qt6::QmlModels) -QT_FEATURE_qml_table_model:INTERNAL=ON -//Qt feature: qml_type_loader_thread (from target Qt6::Qml) -QT_FEATURE_qml_type_loader_thread:INTERNAL=ON -//Qt feature: qml_worker_script (from target Qt6::Qml) -QT_FEATURE_qml_worker_script:INTERNAL=ON -//Qt feature: qml_xml_http_request (from target Qt6::Qml) -QT_FEATURE_qml_xml_http_request:INTERNAL=ON -//Qt feature: qml_xmllistmodel (from target Qt6::Qml) -QT_FEATURE_qml_xmllistmodel:INTERNAL=ON -//Qt feature: qqnx_imf (from target Qt6::Gui) -QT_FEATURE_qqnx_imf:INTERNAL=OFF -//Qt feature: qqnx_pps (from target Qt6::Core) -QT_FEATURE_qqnx_pps:INTERNAL=OFF -//Qt feature: qtgui_threadpool (from target Qt6::Gui) -QT_FEATURE_qtgui_threadpool:INTERNAL=ON -//Qt feature: quick_animatedimage (from target Qt6::Quick) -QT_FEATURE_quick_animatedimage:INTERNAL=ON -//Qt feature: quick_canvas (from target Qt6::Quick) -QT_FEATURE_quick_canvas:INTERNAL=ON -//Qt feature: quick_designer (from target Qt6::Quick) -QT_FEATURE_quick_designer:INTERNAL=ON -//Qt feature: quick_draganddrop (from target Qt6::Quick) -QT_FEATURE_quick_draganddrop:INTERNAL=ON -//Qt feature: quick_flipable (from target Qt6::Quick) -QT_FEATURE_quick_flipable:INTERNAL=ON -//Qt feature: quick_gridview (from target Qt6::Quick) -QT_FEATURE_quick_gridview:INTERNAL=ON -//Qt feature: quick_itemview (from target Qt6::Quick) -QT_FEATURE_quick_itemview:INTERNAL=ON -//Qt feature: quick_listview (from target Qt6::Quick) -QT_FEATURE_quick_listview:INTERNAL=ON -//Qt feature: quick_particles (from target Qt6::Quick) -QT_FEATURE_quick_particles:INTERNAL=ON -//Qt feature: quick_path (from target Qt6::Quick) -QT_FEATURE_quick_path:INTERNAL=ON -//Qt feature: quick_pathview (from target Qt6::Quick) -QT_FEATURE_quick_pathview:INTERNAL=ON -//Qt feature: quick_pixmap_cache_threaded_download (from target -// Qt6::Quick) -QT_FEATURE_quick_pixmap_cache_threaded_download:INTERNAL=ON -//Qt feature: quick_positioners (from target Qt6::Quick) -QT_FEATURE_quick_positioners:INTERNAL=ON -//Qt feature: quick_repeater (from target Qt6::Quick) -QT_FEATURE_quick_repeater:INTERNAL=ON -//Qt feature: quick_shadereffect (from target Qt6::Quick) -QT_FEATURE_quick_shadereffect:INTERNAL=ON -//Qt feature: quick_sprite (from target Qt6::Quick) -QT_FEATURE_quick_sprite:INTERNAL=ON -//Qt feature: quick_tableview (from target Qt6::Quick) -QT_FEATURE_quick_tableview:INTERNAL=ON -//Qt feature: quick_treeview (from target Qt6::Quick) -QT_FEATURE_quick_treeview:INTERNAL=ON -//Qt feature: quick_viewtransitions (from target Qt6::Quick) -QT_FEATURE_quick_viewtransitions:INTERNAL=ON -//Qt feature: quickcontrols2_basic (from target Qt6::QuickControls2) -QT_FEATURE_quickcontrols2_basic:INTERNAL=ON -//Qt feature: quickcontrols2_fluentwinui3 (from target Qt6::QuickControls2) -QT_FEATURE_quickcontrols2_fluentwinui3:INTERNAL=ON -//Qt feature: quickcontrols2_fusion (from target Qt6::QuickControls2) -QT_FEATURE_quickcontrols2_fusion:INTERNAL=ON -//Qt feature: quickcontrols2_imagine (from target Qt6::QuickControls2) -QT_FEATURE_quickcontrols2_imagine:INTERNAL=ON -//Qt feature: quickcontrols2_ios (from target Qt6::QuickControls2) -QT_FEATURE_quickcontrols2_ios:INTERNAL=OFF -//Qt feature: quickcontrols2_macos (from target Qt6::QuickControls2) -QT_FEATURE_quickcontrols2_macos:INTERNAL=OFF -//Qt feature: quickcontrols2_material (from target Qt6::QuickControls2) -QT_FEATURE_quickcontrols2_material:INTERNAL=ON -//Qt feature: quickcontrols2_universal (from target Qt6::QuickControls2) -QT_FEATURE_quickcontrols2_universal:INTERNAL=ON -//Qt feature: quickcontrols2_windows (from target Qt6::QuickControls2) -QT_FEATURE_quickcontrols2_windows:INTERNAL=OFF -//Qt feature: quicktemplates2_calendar (from target Qt6::QuickTemplates2) -QT_FEATURE_quicktemplates2_calendar:INTERNAL=ON -//Qt feature: quicktemplates2_container (from target Qt6::QuickTemplates2) -QT_FEATURE_quicktemplates2_container:INTERNAL=ON -//Qt feature: quicktemplates2_hover (from target Qt6::QuickTemplates2) -QT_FEATURE_quicktemplates2_hover:INTERNAL=ON -//Qt feature: quicktemplates2_multitouch (from target Qt6::QuickTemplates2) -QT_FEATURE_quicktemplates2_multitouch:INTERNAL=ON -//Qt feature: radiobutton (from target Qt6::Widgets) -QT_FEATURE_radiobutton:INTERNAL=ON -//Qt feature: raster_64bit (from target Qt6::Gui) -QT_FEATURE_raster_64bit:INTERNAL=ON -//Qt feature: raster_fp (from target Qt6::Gui) -QT_FEATURE_raster_fp:INTERNAL=ON -//Qt feature: rdrnd (from target Qt6::Core) -QT_FEATURE_rdrnd:INTERNAL=ON -//Qt feature: rdseed (from target Qt6::Core) -QT_FEATURE_rdseed:INTERNAL=ON -//Qt feature: reduce_exports (from target Qt6::Core) -QT_FEATURE_reduce_exports:INTERNAL=ON -//Qt feature: reduce_relocations (from target Qt6::Core) -QT_FEATURE_reduce_relocations:INTERNAL=OFF -//Qt feature: regularexpression (from target Qt6::Core) -QT_FEATURE_regularexpression:INTERNAL=ON -//Qt feature: relocatable (from target Qt6::Core) -QT_FEATURE_relocatable:INTERNAL=OFF -//Qt feature: relro_now_linker (from target Qt6::Core) -QT_FEATURE_relro_now_linker:INTERNAL=ON -//Qt feature: renameat2 (from target Qt6::Core) -QT_FEATURE_renameat2:INTERNAL=ON -//Qt feature: res_setservers (from target Qt6::Network) -QT_FEATURE_res_setservers:INTERNAL=OFF -//Qt feature: resizehandler (from target Qt6::Widgets) -QT_FEATURE_resizehandler:INTERNAL=ON -//Qt feature: rpath (from target Qt6::Core) -QT_FEATURE_rpath:INTERNAL=OFF -//Qt feature: rubberband (from target Qt6::Widgets) -QT_FEATURE_rubberband:INTERNAL=ON -//Qt feature: run_opengl_tests (from target Qt6::Gui) -QT_FEATURE_run_opengl_tests:INTERNAL=ON -//Qt feature: schannel (from target Qt6::Network) -QT_FEATURE_schannel:INTERNAL=OFF -//Qt feature: scrollarea (from target Qt6::Widgets) -QT_FEATURE_scrollarea:INTERNAL=ON -//Qt feature: scrollbar (from target Qt6::Widgets) -QT_FEATURE_scrollbar:INTERNAL=ON -//Qt feature: scroller (from target Qt6::Widgets) -QT_FEATURE_scroller:INTERNAL=ON -//Qt feature: sctp (from target Qt6::Network) -QT_FEATURE_sctp:INTERNAL=ON -//Qt feature: securetransport (from target Qt6::Network) -QT_FEATURE_securetransport:INTERNAL=OFF -//Qt feature: separate_debug_info (from target Qt6::Core) -QT_FEATURE_separate_debug_info:INTERNAL=OFF -//Qt feature: sessionmanager (from target Qt6::Gui) -QT_FEATURE_sessionmanager:INTERNAL=ON -//Qt feature: settings (from target Qt6::Core) -QT_FEATURE_settings:INTERNAL=ON -//Qt feature: sha3_fast (from target Qt6::Core) -QT_FEATURE_sha3_fast:INTERNAL=ON -//Qt feature: shani (from target Qt6::Core) -QT_FEATURE_shani:INTERNAL=ON -//Qt feature: shared (from target Qt6::Core) -QT_FEATURE_shared:INTERNAL=ON -//Qt feature: sharedmemory (from target Qt6::Core) -QT_FEATURE_sharedmemory:INTERNAL=ON -//Qt feature: shortcut (from target Qt6::Core) -QT_FEATURE_shortcut:INTERNAL=ON -//Qt feature: signaling_nan (from target Qt6::Core) -QT_FEATURE_signaling_nan:INTERNAL=ON -//Qt feature: simulator_and_device (from target Qt6::Core) -QT_FEATURE_simulator_and_device:INTERNAL=OFF -//Qt feature: sizegrip (from target Qt6::Widgets) -QT_FEATURE_sizegrip:INTERNAL=ON -//Qt feature: slider (from target Qt6::Widgets) -QT_FEATURE_slider:INTERNAL=ON -//Qt feature: slog2 (from target Qt6::Core) -QT_FEATURE_slog2:INTERNAL=OFF -//Qt feature: socks5 (from target Qt6::Network) -QT_FEATURE_socks5:INTERNAL=ON -//Qt feature: sortfilterproxymodel (from target Qt6::Core) -QT_FEATURE_sortfilterproxymodel:INTERNAL=ON -//Qt feature: spinbox (from target Qt6::Widgets) -QT_FEATURE_spinbox:INTERNAL=ON -//Qt feature: splashscreen (from target Qt6::Widgets) -QT_FEATURE_splashscreen:INTERNAL=ON -//Qt feature: splitter (from target Qt6::Widgets) -QT_FEATURE_splitter:INTERNAL=ON -//Qt feature: sql (from target Qt6::Core) -QT_FEATURE_sql:INTERNAL=ON -//Qt feature: sse2 (from target Qt6::Core) -QT_FEATURE_sse2:INTERNAL=ON -//Qt feature: sse3 (from target Qt6::Core) -QT_FEATURE_sse3:INTERNAL=ON -//Qt feature: sse4_1 (from target Qt6::Core) -QT_FEATURE_sse4_1:INTERNAL=ON -//Qt feature: sse4_2 (from target Qt6::Core) -QT_FEATURE_sse4_2:INTERNAL=ON -//Qt feature: ssl (from target Qt6::Network) -QT_FEATURE_ssl:INTERNAL=ON -//Qt feature: sspi (from target Qt6::Network) -QT_FEATURE_sspi:INTERNAL=OFF -//Qt feature: ssse3 (from target Qt6::Core) -QT_FEATURE_ssse3:INTERNAL=ON -//Qt feature: stack_clash_protection (from target Qt6::Core) -QT_FEATURE_stack_clash_protection:INTERNAL=ON -//Qt feature: stack_protector (from target Qt6::Core) -QT_FEATURE_stack_protector:INTERNAL=ON -//Qt feature: stackedwidget (from target Qt6::Widgets) -QT_FEATURE_stackedwidget:INTERNAL=ON -//Qt feature: standarditemmodel (from target Qt6::Gui) -QT_FEATURE_standarditemmodel:INTERNAL=ON -//Qt feature: static (from target Qt6::Core) -QT_FEATURE_static:INTERNAL=OFF -//Qt feature: statusbar (from target Qt6::Widgets) -QT_FEATURE_statusbar:INTERNAL=ON -//Qt feature: statustip (from target Qt6::Widgets) -QT_FEATURE_statustip:INTERNAL=ON -//Qt feature: std_atomic64 (from target Qt6::Core) -QT_FEATURE_std_atomic64:INTERNAL=ON -//Qt feature: stdlib_libcpp (from target Qt6::Core) -QT_FEATURE_stdlib_libcpp:INTERNAL=OFF -//Qt feature: stringlistmodel (from target Qt6::Core) -QT_FEATURE_stringlistmodel:INTERNAL=ON -//Qt feature: style_android (from target Qt6::Widgets) -QT_FEATURE_style_android:INTERNAL=OFF -//Qt feature: style_fusion (from target Qt6::Widgets) -QT_FEATURE_style_fusion:INTERNAL=ON -//Qt feature: style_mac (from target Qt6::Widgets) -QT_FEATURE_style_mac:INTERNAL=OFF -//Qt feature: style_stylesheet (from target Qt6::Widgets) -QT_FEATURE_style_stylesheet:INTERNAL=ON -//Qt feature: style_windows (from target Qt6::Widgets) -QT_FEATURE_style_windows:INTERNAL=ON -//Qt feature: style_windows11 (from target Qt6::Widgets) -QT_FEATURE_style_windows11:INTERNAL=OFF -//Qt feature: style_windowsvista (from target Qt6::Widgets) -QT_FEATURE_style_windowsvista:INTERNAL=OFF -//Qt feature: syntaxhighlighter (from target Qt6::Widgets) -QT_FEATURE_syntaxhighlighter:INTERNAL=ON -//Qt feature: syslog (from target Qt6::Core) -QT_FEATURE_syslog:INTERNAL=OFF -//Qt feature: system_doubleconversion (from target Qt6::Core) -QT_FEATURE_system_doubleconversion:INTERNAL=ON -//Qt feature: system_freetype (from target Qt6::Gui) -QT_FEATURE_system_freetype:INTERNAL=ON -//Qt feature: system_harfbuzz (from target Qt6::Gui) -QT_FEATURE_system_harfbuzz:INTERNAL=ON -//Qt feature: system_jpeg (from target Qt6::Gui) -QT_FEATURE_system_jpeg:INTERNAL=ON -//Qt feature: system_libb2 (from target Qt6::Core) -QT_FEATURE_system_libb2:INTERNAL=ON -//Qt feature: system_pcre2 (from target Qt6::Core) -QT_FEATURE_system_pcre2:INTERNAL=ON -//Qt feature: system_png (from target Qt6::Gui) -QT_FEATURE_system_png:INTERNAL=ON -//Qt feature: system_proxies (from target Qt6::Network) -QT_FEATURE_system_proxies:INTERNAL=ON -//Qt feature: system_textmarkdownreader (from target Qt6::Gui) -QT_FEATURE_system_textmarkdownreader:INTERNAL=OFF -//Qt feature: system_xcb_xinput (from target Qt6::Gui) -QT_FEATURE_system_xcb_xinput:INTERNAL=OFF -//Qt feature: system_zlib (from target Qt6::Core) -QT_FEATURE_system_zlib:INTERNAL=ON -//Qt feature: systemsemaphore (from target Qt6::Core) -QT_FEATURE_systemsemaphore:INTERNAL=ON -//Qt feature: systemtrayicon (from target Qt6::Gui) -QT_FEATURE_systemtrayicon:INTERNAL=ON -//Qt feature: sysv_sem (from target Qt6::Core) -QT_FEATURE_sysv_sem:INTERNAL=ON -//Qt feature: sysv_shm (from target Qt6::Core) -QT_FEATURE_sysv_shm:INTERNAL=ON -//Qt feature: tabbar (from target Qt6::Widgets) -QT_FEATURE_tabbar:INTERNAL=ON -//Qt feature: tabletevent (from target Qt6::Gui) -QT_FEATURE_tabletevent:INTERNAL=ON -//Qt feature: tableview (from target Qt6::Widgets) -QT_FEATURE_tableview:INTERNAL=ON -//Qt feature: tablewidget (from target Qt6::Widgets) -QT_FEATURE_tablewidget:INTERNAL=ON -//Qt feature: tabwidget (from target Qt6::Widgets) -QT_FEATURE_tabwidget:INTERNAL=ON -//Qt feature: temporaryfile (from target Qt6::Core) -QT_FEATURE_temporaryfile:INTERNAL=ON -//Qt feature: test_gui (from target Qt6::Core) -QT_FEATURE_test_gui:INTERNAL=ON -//Qt feature: testlib (from target Qt6::Core) -QT_FEATURE_testlib:INTERNAL=ON -//Qt feature: textbrowser (from target Qt6::Widgets) -QT_FEATURE_textbrowser:INTERNAL=ON -//Qt feature: textdate (from target Qt6::Core) -QT_FEATURE_textdate:INTERNAL=ON -//Qt feature: textedit (from target Qt6::Widgets) -QT_FEATURE_textedit:INTERNAL=ON -//Qt feature: texthtmlparser (from target Qt6::Gui) -QT_FEATURE_texthtmlparser:INTERNAL=ON -//Qt feature: textmarkdownreader (from target Qt6::Gui) -QT_FEATURE_textmarkdownreader:INTERNAL=ON -//Qt feature: textmarkdownwriter (from target Qt6::Gui) -QT_FEATURE_textmarkdownwriter:INTERNAL=ON -//Qt feature: textodfwriter (from target Qt6::Gui) -QT_FEATURE_textodfwriter:INTERNAL=ON -//Qt feature: thread (from target Qt6::Core) -QT_FEATURE_thread:INTERNAL=ON -//Qt feature: threadsafe_cloexec (from target Qt6::Core) -QT_FEATURE_threadsafe_cloexec:INTERNAL=ON -//Qt feature: timezone (from target Qt6::Core) -QT_FEATURE_timezone:INTERNAL=ON -//Qt feature: timezone_locale (from target Qt6::Core) -QT_FEATURE_timezone_locale:INTERNAL=ON -//Qt feature: timezone_tzdb (from target Qt6::Core) -QT_FEATURE_timezone_tzdb:INTERNAL=OFF -//Qt feature: toolbar (from target Qt6::Widgets) -QT_FEATURE_toolbar:INTERNAL=ON -//Qt feature: toolbox (from target Qt6::Widgets) -QT_FEATURE_toolbox:INTERNAL=ON -//Qt feature: toolbutton (from target Qt6::Widgets) -QT_FEATURE_toolbutton:INTERNAL=ON -//Qt feature: tooltip (from target Qt6::Widgets) -QT_FEATURE_tooltip:INTERNAL=ON -//Qt feature: topleveldomain (from target Qt6::Network) -QT_FEATURE_topleveldomain:INTERNAL=ON -//Qt feature: translation (from target Qt6::Core) -QT_FEATURE_translation:INTERNAL=ON -//Qt feature: transposeproxymodel (from target Qt6::Core) -QT_FEATURE_transposeproxymodel:INTERNAL=ON -//Qt feature: treeview (from target Qt6::Widgets) -QT_FEATURE_treeview:INTERNAL=ON -//Qt feature: treewidget (from target Qt6::Widgets) -QT_FEATURE_treewidget:INTERNAL=ON -//Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core) -QT_FEATURE_trivial_auto_var_init_pattern:INTERNAL=ON -//Qt feature: tslib (from target Qt6::Gui) -QT_FEATURE_tslib:INTERNAL=ON -//Qt feature: tuiotouch (from target Qt6::Gui) -QT_FEATURE_tuiotouch:INTERNAL=ON -//Qt feature: udpsocket (from target Qt6::Network) -QT_FEATURE_udpsocket:INTERNAL=ON -//Qt feature: undocommand (from target Qt6::Gui) -QT_FEATURE_undocommand:INTERNAL=ON -//Qt feature: undogroup (from target Qt6::Gui) -QT_FEATURE_undogroup:INTERNAL=ON -//Qt feature: undostack (from target Qt6::Gui) -QT_FEATURE_undostack:INTERNAL=ON -//Qt feature: undoview (from target Qt6::Widgets) -QT_FEATURE_undoview:INTERNAL=ON -//Qt feature: use_bfd_linker (from target Qt6::Core) -QT_FEATURE_use_bfd_linker:INTERNAL=OFF -//Qt feature: use_gold_linker (from target Qt6::Core) -QT_FEATURE_use_gold_linker:INTERNAL=OFF -//Qt feature: use_lld_linker (from target Qt6::Core) -QT_FEATURE_use_lld_linker:INTERNAL=OFF -//Qt feature: use_mold_linker (from target Qt6::Core) -QT_FEATURE_use_mold_linker:INTERNAL=OFF -//Qt feature: vaes (from target Qt6::Core) -QT_FEATURE_vaes:INTERNAL=ON -//Qt feature: validator (from target Qt6::Gui) -QT_FEATURE_validator:INTERNAL=ON -//Qt feature: version_tagging (from target Qt6::Core) -QT_FEATURE_version_tagging:INTERNAL=ON -//Qt feature: vkgen (from target Qt6::Gui) -QT_FEATURE_vkgen:INTERNAL=ON -//Qt feature: vkkhrdisplay (from target Qt6::Gui) -QT_FEATURE_vkkhrdisplay:INTERNAL=ON -//Qt feature: vnc (from target Qt6::Gui) -QT_FEATURE_vnc:INTERNAL=ON -//Qt feature: vsp2 (from target Qt6::Gui) -QT_FEATURE_vsp2:INTERNAL=OFF -//Qt feature: vulkan (from target Qt6::Gui) -QT_FEATURE_vulkan:INTERNAL=ON -//Qt feature: vxpipedrv (from target Qt6::Core) -QT_FEATURE_vxpipedrv:INTERNAL=OFF -//Qt feature: vxworksevdev (from target Qt6::Gui) -QT_FEATURE_vxworksevdev:INTERNAL=OFF -//Qt feature: wasm_exceptions (from target Qt6::Core) -QT_FEATURE_wasm_exceptions:INTERNAL=OFF -//Qt feature: wasm_jspi (from target Qt6::Core) -QT_FEATURE_wasm_jspi:INTERNAL=OFF -//Qt feature: wasm_simd128 (from target Qt6::Core) -QT_FEATURE_wasm_simd128:INTERNAL=OFF -//Qt feature: wayland (from target Qt6::Gui) -QT_FEATURE_wayland:INTERNAL=ON -//Qt feature: whatsthis (from target Qt6::Gui) -QT_FEATURE_whatsthis:INTERNAL=ON -//Qt feature: wheelevent (from target Qt6::Gui) -QT_FEATURE_wheelevent:INTERNAL=ON -//Qt feature: widgets (from target Qt6::Core) -QT_FEATURE_widgets:INTERNAL=ON -//Qt feature: widgettextcontrol (from target Qt6::Widgets) -QT_FEATURE_widgettextcontrol:INTERNAL=ON -//Qt feature: wizard (from target Qt6::Widgets) -QT_FEATURE_wizard:INTERNAL=ON -//Qt feature: x86intrin (from target Qt6::Core) -QT_FEATURE_x86intrin:INTERNAL=ON -//Qt feature: xcb (from target Qt6::Gui) -QT_FEATURE_xcb:INTERNAL=ON -//Qt feature: xcb_egl_plugin (from target Qt6::Gui) -QT_FEATURE_xcb_egl_plugin:INTERNAL=ON -//Qt feature: xcb_glx (from target Qt6::Gui) -QT_FEATURE_xcb_glx:INTERNAL=ON -//Qt feature: xcb_glx_plugin (from target Qt6::Gui) -QT_FEATURE_xcb_glx_plugin:INTERNAL=ON -//Qt feature: xcb_native_painting (from target Qt6::Gui) -QT_FEATURE_xcb_native_painting:INTERNAL=OFF -//Qt feature: xcb_sm (from target Qt6::Gui) -QT_FEATURE_xcb_sm:INTERNAL=ON -//Qt feature: xcb_xlib (from target Qt6::Gui) -QT_FEATURE_xcb_xlib:INTERNAL=ON -//Qt feature: xkbcommon (from target Qt6::Gui) -QT_FEATURE_xkbcommon:INTERNAL=ON -//Qt feature: xkbcommon_x11 (from target Qt6::Gui) -QT_FEATURE_xkbcommon_x11:INTERNAL=ON -//Qt feature: xlib (from target Qt6::Gui) -QT_FEATURE_xlib:INTERNAL=ON -//Qt feature: xml (from target Qt6::Core) -QT_FEATURE_xml:INTERNAL=ON -//Qt feature: xmlstream (from target Qt6::Core) -QT_FEATURE_xmlstream:INTERNAL=ON -//Qt feature: xmlstreamreader (from target Qt6::Core) -QT_FEATURE_xmlstreamreader:INTERNAL=ON -//Qt feature: xmlstreamwriter (from target Qt6::Core) -QT_FEATURE_xmlstreamwriter:INTERNAL=ON -//Qt feature: xrender (from target Qt6::Gui) -QT_FEATURE_xrender:INTERNAL=OFF -//Qt feature: zstd (from target Qt6::Core) -QT_FEATURE_zstd:INTERNAL=ON -//ADVANCED property for variable: Vulkan_GLSLANG_VALIDATOR_EXECUTABLE -Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: Vulkan_GLSLC_EXECUTABLE -Vulkan_GLSLC_EXECUTABLE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: Vulkan_INCLUDE_DIR -Vulkan_INCLUDE_DIR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: Vulkan_LIBRARY -Vulkan_LIBRARY-ADVANCED:INTERNAL=1 -//linker supports push/pop state -_CMAKE_CXX_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE -//linker supports push/pop state -_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE -//CMAKE_INSTALL_PREFIX during last run -_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/usr/local -__pkg_config_arguments_PKG_XKB:INTERNAL=QUIET;xkbcommon -__pkg_config_checked_PKG_XKB:INTERNAL=1 -__qt_qml_macros_module_base_dir:INTERNAL=/usr/lib64/cmake/Qt6Qml -//ADVANCED property for variable: pkgcfg_lib_PKG_XKB_xkbcommon -pkgcfg_lib_PKG_XKB_xkbcommon-ADVANCED:INTERNAL=1 -prefix_result:INTERNAL=/usr/lib64 - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CMakeCXXCompiler.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CMakeCXXCompiler.cmake deleted file mode 100644 index a540e86b..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,105 +0,0 @@ -set(CMAKE_CXX_COMPILER "/usr/bin/c++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "15.2.1") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_STANDARD_LATEST "26") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23;cxx_std_26") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") -set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") -set(CMAKE_CXX26_COMPILE_FEATURES "cxx_std_26") - -set(CMAKE_CXX_PLATFORM_ID "Linux") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_LINKER_LINK "") -set(CMAKE_LINKER_LLD "") -set(CMAKE_CXX_COMPILER_LINKER "/usr/bin/ld") -set(CMAKE_CXX_COMPILER_LINKER_ID "GNU") -set(CMAKE_CXX_COMPILER_LINKER_VERSION 2.44) -set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT GNU) -set(CMAKE_MT "") -set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") -set(CMAKE_COMPILER_IS_GNUCXX 1) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang IN ITEMS C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) -set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED ) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/15;/usr/include/c++/15/x86_64-redhat-linux;/usr/include/c++/15/backward;/usr/lib/gcc/x86_64-redhat-linux/15/include;/usr/local/include;/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-redhat-linux/15;/usr/lib64;/lib64;/usr/lib;/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") -set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") - -set(CMAKE_CXX_COMPILER_IMPORT_STD "") -### Imported target for C++23 standard library -set(CMAKE_CXX23_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") - - -### Imported target for C++26 standard library -set(CMAKE_CXX26_COMPILER_IMPORT_STD_NOT_FOUND_MESSAGE "Unsupported generator: Unix Makefiles") - - - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CMakeDetermineCompilerABI_CXX.bin b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100755 index 89d08796..00000000 Binary files a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CMakeSystem.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CMakeSystem.cmake deleted file mode 100644 index 3edec053..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CMakeSystem.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(CMAKE_HOST_SYSTEM "Linux-6.17.8-200.fc42.x86_64") -set(CMAKE_HOST_SYSTEM_NAME "Linux") -set(CMAKE_HOST_SYSTEM_VERSION "6.17.8-200.fc42.x86_64") -set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") - - - -set(CMAKE_SYSTEM "Linux-6.17.8-200.fc42.x86_64") -set(CMAKE_SYSTEM_NAME "Linux") -set(CMAKE_SYSTEM_VERSION "6.17.8-200.fc42.x86_64") -set(CMAKE_SYSTEM_PROCESSOR "x86_64") - -set(CMAKE_CROSSCOMPILING "FALSE") - -set(CMAKE_SYSTEM_LOADED 1) diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CompilerIdCXX/CMakeCXXCompilerId.cpp b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index 3b6e114c..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,919 +0,0 @@ -/* This source file must have a .cpp extension so that all C++ compilers - recognize the extension without flags. Borland does not know .cxx for - example. */ -#ifndef __cplusplus -# error "A C compiler has been selected for C++." -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(__clang__) && defined(__cray__) -# define COMPILER_ID "CrayClang" -# define COMPILER_VERSION_MAJOR DEC(__cray_major__) -# define COMPILER_VERSION_MINOR DEC(__cray_minor__) -# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__ORANGEC__) -# define COMPILER_ID "OrangeC" -# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) && defined(__ti__) -# define COMPILER_ID "TIClang" - # define COMPILER_VERSION_MAJOR DEC(__ti_major__) - # define COMPILER_VERSION_MINOR DEC(__ti_minor__) - # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) -# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) -# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__clang__) && defined(__ti__) -# if defined(__ARM_ARCH) -# define ARCHITECTURE_ID "ARM" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#define CXX_STD_98 199711L -#define CXX_STD_11 201103L -#define CXX_STD_14 201402L -#define CXX_STD_17 201703L -#define CXX_STD_20 202002L -#define CXX_STD_23 202302L - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) -# if _MSVC_LANG > CXX_STD_17 -# define CXX_STD _MSVC_LANG -# elif _MSVC_LANG == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 && __cplusplus > CXX_STD_17 -# define CXX_STD CXX_STD_20 -# elif _MSVC_LANG > CXX_STD_14 -# define CXX_STD CXX_STD_17 -# elif defined(__INTEL_CXX11_MODE__) && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# elif defined(__INTEL_CXX11_MODE__) -# define CXX_STD CXX_STD_11 -# else -# define CXX_STD CXX_STD_98 -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# if _MSVC_LANG > __cplusplus -# define CXX_STD _MSVC_LANG -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__NVCOMPILER) -# if __cplusplus == CXX_STD_17 && defined(__cpp_aggregate_paren_init) -# define CXX_STD CXX_STD_20 -# else -# define CXX_STD __cplusplus -# endif -#elif defined(__INTEL_COMPILER) || defined(__PGI) -# if __cplusplus == CXX_STD_11 && defined(__cpp_namespace_attributes) -# define CXX_STD CXX_STD_17 -# elif __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif (defined(__IBMCPP__) || defined(__ibmxl__)) && defined(__linux__) -# if __cplusplus == CXX_STD_11 && defined(__cpp_aggregate_nsdmi) -# define CXX_STD CXX_STD_14 -# else -# define CXX_STD __cplusplus -# endif -#elif __cplusplus == 1 && defined(__GXX_EXPERIMENTAL_CXX0X__) -# define CXX_STD CXX_STD_11 -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > CXX_STD_23 - "26" -#elif CXX_STD > CXX_STD_20 - "23" -#elif CXX_STD > CXX_STD_17 - "20" -#elif CXX_STD > CXX_STD_14 - "17" -#elif CXX_STD > CXX_STD_11 - "14" -#elif CXX_STD >= CXX_STD_11 - "11" -#else - "98" -#endif -"]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CompilerIdCXX/a.out b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CompilerIdCXX/a.out deleted file mode 100755 index 9fb98ad9..00000000 Binary files a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CompilerIdCXX/a.out and /dev/null differ diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml deleted file mode 100644 index 7e6f8f3e..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeConfigureLog.yaml +++ /dev/null @@ -1,357 +0,0 @@ - ---- -events: - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake:205 (message)" - - "CMakeLists.txt:3 (project)" - message: | - The system is: Linux - 6.17.8-200.fc42.x86_64 - x86_64 - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:17 (message)" - - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" - - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" - - "CMakeLists.txt:3 (project)" - message: | - Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. - Compiler: /usr/bin/c++ - Build flags: - Id flags: - - The output was: - 0 - - - Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - - The CXX compiler identification is GNU, found in: - /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/3.31.6/CompilerIdCXX/a.out - - - - kind: "try_compile-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" - - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:3 (project)" - checks: - - "Detecting CXX compiler ABI info" - directories: - source: "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-J1iRN4" - binary: "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-J1iRN4" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_CXX_SCAN_FOR_MODULES: "OFF" - CMAKE_EXE_LINKER_FLAGS: "" - buildResult: - variable: "CMAKE_CXX_ABI_COMPILED" - cached: true - stdout: | - Change Dir: '/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-J1iRN4' - - Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_364b2/fast - /usr/bin/gmake -f CMakeFiles/cmTC_364b2.dir/build.make CMakeFiles/cmTC_364b2.dir/build - gmake[1]: Entering directory '/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-J1iRN4' - Building CXX object CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o - /usr/bin/c++ -v -o CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp - Using built-in specs. - COLLECT_GCC=/usr/bin/c++ - OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa - OFFLOAD_TARGET_DEFAULT=1 - Target: x86_64-redhat-linux - Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,objc,obj-c++,ada,go,d,m2,cobol,lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --enable-libstdcxx-backtrace --with-libstdcxx-zoneinfo=/usr/share/zoneinfo --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-15.2.1-build/gcc-15.2.1-20251111/obj-x86_64-redhat-linux/isl-install --enable-offload-targets=nvptx-none,amdgcn-amdhsa --enable-offload-defaulted --without-cuda-driver --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux --with-build-config=bootstrap-lto --enable-link-serialization=1 - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 15.2.1 20251111 (Red Hat 15.2.1-4) (GCC) - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_364b2.dir/' - /usr/libexec/gcc/x86_64-redhat-linux/15/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_364b2.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -o /tmp/ccGiHANk.s - GNU C++17 (GCC) version 15.2.1 20251111 (Red Hat 15.2.1-4) (x86_64-redhat-linux) - compiled by GNU C version 15.2.1 20251111 (Red Hat 15.2.1-4), GMP version 6.3.0, MPFR version 4.2.2, MPC version 1.3.1, isl version isl-0.24-GMP - - GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 - ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/15/include-fixed" - ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/15/../../../../x86_64-redhat-linux/include" - #include "..." search starts here: - #include <...> search starts here: - /usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15 - /usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15/x86_64-redhat-linux - /usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15/backward - /usr/lib/gcc/x86_64-redhat-linux/15/include - /usr/local/include - /usr/include - End of search list. - Compiler executable checksum: 44d1dd55fc102fce72af17272c8985e4 - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_364b2.dir/' - as -v --64 -o CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccGiHANk.s - GNU assembler version 2.44 (x86_64-redhat-linux) using BFD version version 2.44-12.fc42 - COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/15/:/usr/libexec/gcc/x86_64-redhat-linux/15/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/15/:/usr/lib/gcc/x86_64-redhat-linux/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-redhat-linux/15/:/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/15/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.' - Linking CXX executable cmTC_364b2 - /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_364b2.dir/link.txt --verbose=1 - Using built-in specs. - COLLECT_GCC=/usr/bin/c++ - COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/15/lto-wrapper - OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa - OFFLOAD_TARGET_DEFAULT=1 - Target: x86_64-redhat-linux - Configured with: ../configure --enable-bootstrap --enable-languages=c,c++,fortran,objc,obj-c++,ada,go,d,m2,cobol,lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --enable-libstdcxx-backtrace --with-libstdcxx-zoneinfo=/usr/share/zoneinfo --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-15.2.1-build/gcc-15.2.1-20251111/obj-x86_64-redhat-linux/isl-install --enable-offload-targets=nvptx-none,amdgcn-amdhsa --enable-offload-defaulted --without-cuda-driver --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux --with-build-config=bootstrap-lto --enable-link-serialization=1 - Thread model: posix - Supported LTO compression algorithms: zlib zstd - gcc version 15.2.1 20251111 (Red Hat 15.2.1-4) (GCC) - COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/15/:/usr/libexec/gcc/x86_64-redhat-linux/15/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/15/:/usr/lib/gcc/x86_64-redhat-linux/ - LIBRARY_PATH=/usr/lib/gcc/x86_64-redhat-linux/15/:/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/15/../../../:/lib/:/usr/lib/ - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_364b2' '-foffload-options=-l_GCC_stdc++' '-foffload-options=-l_GCC_m' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_364b2.' - /usr/libexec/gcc/x86_64-redhat-linux/15/collect2 -plugin /usr/libexec/gcc/x86_64-redhat-linux/15/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-redhat-linux/15/lto-wrapper -plugin-opt=-fresolution=/tmp/cct8AJjg.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_364b2 /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o -L/usr/lib/gcc/x86_64-redhat-linux/15 -L/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/15/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/15/crtend.o /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crtn.o - collect2 version 15.2.1 20251111 (Red Hat 15.2.1-4) - /usr/bin/ld -plugin /usr/libexec/gcc/x86_64-redhat-linux/15/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-redhat-linux/15/lto-wrapper -plugin-opt=-fresolution=/tmp/cct8AJjg.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_364b2 /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o -L/usr/lib/gcc/x86_64-redhat-linux/15 -L/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/15/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/15/crtend.o /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crtn.o - GNU ld version 2.44-12.fc42 - COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_364b2' '-foffload-options=-l_GCC_stdc++' '-foffload-options=-l_GCC_m' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_364b2.' - /usr/bin/c++ -v -Wl,-v CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_364b2 - gmake[1]: Leaving directory '/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-J1iRN4' - - exitCode: 0 - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" - - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:3 (project)" - message: | - Parsed CXX implicit include dir info: rv=done - found start of include info - found start of implicit include info - add: [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15] - add: [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15/x86_64-redhat-linux] - add: [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15/backward] - add: [/usr/lib/gcc/x86_64-redhat-linux/15/include] - add: [/usr/local/include] - add: [/usr/include] - end of search list found - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15] ==> [/usr/include/c++/15] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15/x86_64-redhat-linux] ==> [/usr/include/c++/15/x86_64-redhat-linux] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15/backward] ==> [/usr/include/c++/15/backward] - collapse include dir [/usr/lib/gcc/x86_64-redhat-linux/15/include] ==> [/usr/lib/gcc/x86_64-redhat-linux/15/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/include/c++/15;/usr/include/c++/15/x86_64-redhat-linux;/usr/include/c++/15/backward;/usr/lib/gcc/x86_64-redhat-linux/15/include;/usr/local/include;/usr/include] - - - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" - - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:3 (project)" - message: | - Parsed CXX implicit link information: - link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] - linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] - ignore line: [Change Dir: '/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-J1iRN4'] - ignore line: [] - ignore line: [Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_364b2/fast] - ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_364b2.dir/build.make CMakeFiles/cmTC_364b2.dir/build] - ignore line: [gmake[1]: Entering directory '/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-J1iRN4'] - ignore line: [Building CXX object CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-redhat-linux] - ignore line: [Configured with: ../configure --enable-bootstrap --enable-languages=c c++ fortran objc obj-c++ ada go d m2 cobol lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --enable-libstdcxx-backtrace --with-libstdcxx-zoneinfo=/usr/share/zoneinfo --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-15.2.1-build/gcc-15.2.1-20251111/obj-x86_64-redhat-linux/isl-install --enable-offload-targets=nvptx-none amdgcn-amdhsa --enable-offload-defaulted --without-cuda-driver --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux --with-build-config=bootstrap-lto --enable-link-serialization=1] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 15.2.1 20251111 (Red Hat 15.2.1-4) (GCC) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_364b2.dir/'] - ignore line: [ /usr/libexec/gcc/x86_64-redhat-linux/15/cc1plus -quiet -v -D_GNU_SOURCE /usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_364b2.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=generic -march=x86-64 -version -o /tmp/ccGiHANk.s] - ignore line: [GNU C++17 (GCC) version 15.2.1 20251111 (Red Hat 15.2.1-4) (x86_64-redhat-linux)] - ignore line: [ compiled by GNU C version 15.2.1 20251111 (Red Hat 15.2.1-4) GMP version 6.3.0 MPFR version 4.2.2 MPC version 1.3.1 isl version isl-0.24-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/15/include-fixed"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-redhat-linux/15/../../../../x86_64-redhat-linux/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15/x86_64-redhat-linux] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/15/../../../../include/c++/15/backward] - ignore line: [ /usr/lib/gcc/x86_64-redhat-linux/15/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [Compiler executable checksum: 44d1dd55fc102fce72af17272c8985e4] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_364b2.dir/'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccGiHANk.s] - ignore line: [GNU assembler version 2.44 (x86_64-redhat-linux) using BFD version version 2.44-12.fc42] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/15/:/usr/libexec/gcc/x86_64-redhat-linux/15/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/15/:/usr/lib/gcc/x86_64-redhat-linux/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-redhat-linux/15/:/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/15/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.'] - ignore line: [Linking CXX executable cmTC_364b2] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_364b2.dir/link.txt --verbose=1] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/15/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-redhat-linux] - ignore line: [Configured with: ../configure --enable-bootstrap --enable-languages=c c++ fortran objc obj-c++ ada go d m2 cobol lto --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-shared --enable-threads=posix --enable-checking=release --enable-multilib --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-gcc-major-version-only --enable-libstdcxx-backtrace --with-libstdcxx-zoneinfo=/usr/share/zoneinfo --with-linker-hash-style=gnu --enable-plugin --enable-initfini-array --with-isl=/builddir/build/BUILD/gcc-15.2.1-build/gcc-15.2.1-20251111/obj-x86_64-redhat-linux/isl-install --enable-offload-targets=nvptx-none amdgcn-amdhsa --enable-offload-defaulted --without-cuda-driver --enable-gnu-indirect-function --enable-cet --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux --with-build-config=bootstrap-lto --enable-link-serialization=1] - ignore line: [Thread model: posix] - ignore line: [Supported LTO compression algorithms: zlib zstd] - ignore line: [gcc version 15.2.1 20251111 (Red Hat 15.2.1-4) (GCC) ] - ignore line: [COMPILER_PATH=/usr/libexec/gcc/x86_64-redhat-linux/15/:/usr/libexec/gcc/x86_64-redhat-linux/15/:/usr/libexec/gcc/x86_64-redhat-linux/:/usr/lib/gcc/x86_64-redhat-linux/15/:/usr/lib/gcc/x86_64-redhat-linux/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-redhat-linux/15/:/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/:/lib/../lib64/:/usr/lib/../lib64/:/usr/lib/gcc/x86_64-redhat-linux/15/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_364b2' '-foffload-options=-l_GCC_stdc++' '-foffload-options=-l_GCC_m' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-dumpdir' 'cmTC_364b2.'] - link line: [ /usr/libexec/gcc/x86_64-redhat-linux/15/collect2 -plugin /usr/libexec/gcc/x86_64-redhat-linux/15/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-redhat-linux/15/lto-wrapper -plugin-opt=-fresolution=/tmp/cct8AJjg.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_364b2 /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o -L/usr/lib/gcc/x86_64-redhat-linux/15 -L/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/15/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/15/crtend.o /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crtn.o] - arg [/usr/libexec/gcc/x86_64-redhat-linux/15/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/libexec/gcc/x86_64-redhat-linux/15/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/libexec/gcc/x86_64-redhat-linux/15/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/cct8AJjg.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [--build-id] ==> ignore - arg [--no-add-needed] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-o] ==> ignore - arg [cmTC_364b2] ==> ignore - arg [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crt1.o] ==> obj [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crt1.o] - arg [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crti.o] ==> obj [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crti.o] - arg [/usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o] ==> obj [/usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/15] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/15] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64] - arg [-L/lib/../lib64] ==> dir [/lib/../lib64] - arg [-L/usr/lib/../lib64] ==> dir [/usr/lib/../lib64] - arg [-L/usr/lib/gcc/x86_64-redhat-linux/15/../../..] ==> dir [/usr/lib/gcc/x86_64-redhat-linux/15/../../..] - arg [-L/lib] ==> dir [/lib] - arg [-L/usr/lib] ==> dir [/usr/lib] - arg [-v] ==> ignore - arg [CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [/usr/lib/gcc/x86_64-redhat-linux/15/crtend.o] ==> obj [/usr/lib/gcc/x86_64-redhat-linux/15/crtend.o] - arg [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crtn.o] ==> obj [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crtn.o] - ignore line: [collect2 version 15.2.1 20251111 (Red Hat 15.2.1-4)] - ignore line: [/usr/bin/ld -plugin /usr/libexec/gcc/x86_64-redhat-linux/15/liblto_plugin.so -plugin-opt=/usr/libexec/gcc/x86_64-redhat-linux/15/lto-wrapper -plugin-opt=-fresolution=/tmp/cct8AJjg.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --no-add-needed --eh-frame-hdr --hash-style=gnu -m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_364b2 /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crt1.o /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crti.o /usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o -L/usr/lib/gcc/x86_64-redhat-linux/15 -L/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/15/../../.. -L/lib -L/usr/lib -v CMakeFiles/cmTC_364b2.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-redhat-linux/15/crtend.o /usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crtn.o] - linker tool for 'CXX': /usr/bin/ld - collapse obj [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crt1.o] ==> [/usr/lib64/crt1.o] - collapse obj [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crti.o] ==> [/usr/lib64/crti.o] - collapse obj [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64/crtn.o] ==> [/usr/lib64/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/15] ==> [/usr/lib/gcc/x86_64-redhat-linux/15] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/15/../../../../lib64] ==> [/usr/lib64] - collapse library dir [/lib/../lib64] ==> [/lib64] - collapse library dir [/usr/lib/../lib64] ==> [/usr/lib64] - collapse library dir [/usr/lib/gcc/x86_64-redhat-linux/15/../../..] ==> [/usr/lib] - collapse library dir [/lib] ==> [/lib] - collapse library dir [/usr/lib] ==> [/usr/lib] - implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] - implicit objs: [/usr/lib64/crt1.o;/usr/lib64/crti.o;/usr/lib/gcc/x86_64-redhat-linux/15/crtbegin.o;/usr/lib/gcc/x86_64-redhat-linux/15/crtend.o;/usr/lib64/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-redhat-linux/15;/usr/lib64;/lib64;/usr/lib;/lib] - implicit fwks: [] - - - - - kind: "message-v1" - backtrace: - - "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" - - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" - - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" - - "CMakeLists.txt:3 (project)" - message: | - Running the CXX compiler's linker: "/usr/bin/ld" "-v" - GNU ld version 2.44-12.fc42 - - - kind: "try_compile-v1" - backtrace: - - "/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:108 (try_compile)" - - "/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake:58 (cmake_check_source_compiles)" - - "/usr/share/cmake/Modules/FindThreads.cmake:99 (CHECK_CXX_SOURCE_COMPILES)" - - "/usr/share/cmake/Modules/FindThreads.cmake:163 (_threads_check_libc)" - - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" - - "/usr/lib64/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" - - "/usr/lib64/cmake/Qt6/Qt6Dependencies.cmake:35 (_qt_internal_find_third_party_dependencies)" - - "/usr/lib64/cmake/Qt6/Qt6Config.cmake:184 (include)" - - "CMakeLists.txt:8 (find_package)" - checks: - - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" - directories: - source: "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-4s6S3I" - binary: "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-4s6S3I" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - CMAKE_MODULE_PATH: "/usr/lib64/cmake/Qt6;/usr/lib64/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/usr/lib64/cmake/Qt6/3rdparty/kwin" - buildResult: - variable: "CMAKE_HAVE_LIBC_PTHREAD" - cached: true - stdout: | - Change Dir: '/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-4s6S3I' - - Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_26458/fast - /usr/bin/gmake -f CMakeFiles/cmTC_26458.dir/build.make CMakeFiles/cmTC_26458.dir/build - gmake[1]: Entering directory '/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-4s6S3I' - Building CXX object CMakeFiles/cmTC_26458.dir/src.cxx.o - /usr/bin/c++ -DCMAKE_HAVE_LIBC_PTHREAD -std=gnu++17 -o CMakeFiles/cmTC_26458.dir/src.cxx.o -c /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-4s6S3I/src.cxx - Linking CXX executable cmTC_26458 - /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_26458.dir/link.txt --verbose=1 - /usr/bin/c++ CMakeFiles/cmTC_26458.dir/src.cxx.o -o cmTC_26458 - gmake[1]: Leaving directory '/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-4s6S3I' - - exitCode: 0 - - - kind: "try_compile-v1" - backtrace: - - "/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake:108 (try_compile)" - - "/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake:58 (cmake_check_source_compiles)" - - "/usr/lib64/cmake/Qt6/FindWrapAtomic.cmake:36 (check_cxx_source_compiles)" - - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" - - "/usr/lib64/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" - - "/usr/lib64/cmake/Qt6Core/Qt6CoreDependencies.cmake:35 (_qt_internal_find_third_party_dependencies)" - - "/usr/lib64/cmake/Qt6Core/Qt6CoreConfig.cmake:55 (include)" - - "/usr/lib64/cmake/Qt6/Qt6Config.cmake:245 (find_package)" - - "CMakeLists.txt:8 (find_package)" - checks: - - "Performing Test HAVE_STDATOMIC" - directories: - source: "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aKtSjH" - binary: "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aKtSjH" - cmakeVariables: - CMAKE_CXX_FLAGS: "" - CMAKE_CXX_FLAGS_DEBUG: "-g" - CMAKE_EXE_LINKER_FLAGS: "" - CMAKE_MODULE_PATH: "/usr/lib64/cmake/Qt6;/usr/lib64/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;/usr/lib64/cmake/Qt6/3rdparty/kwin" - buildResult: - variable: "HAVE_STDATOMIC" - cached: true - stdout: | - Change Dir: '/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aKtSjH' - - Run Build Command(s): /usr/bin/cmake -E env VERBOSE=1 /usr/bin/gmake -f Makefile cmTC_e4e58/fast - /usr/bin/gmake -f CMakeFiles/cmTC_e4e58.dir/build.make CMakeFiles/cmTC_e4e58.dir/build - gmake[1]: Entering directory '/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aKtSjH' - Building CXX object CMakeFiles/cmTC_e4e58.dir/src.cxx.o - /usr/bin/c++ -DHAVE_STDATOMIC -std=gnu++17 -o CMakeFiles/cmTC_e4e58.dir/src.cxx.o -c /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aKtSjH/src.cxx - Linking CXX executable cmTC_e4e58 - /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e4e58.dir/link.txt --verbose=1 - /usr/bin/c++ CMakeFiles/cmTC_e4e58.dir/src.cxx.o -o cmTC_e4e58 - gmake[1]: Leaving directory '/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeScratch/TryCompile-aKtSjH' - - exitCode: 0 -... diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake deleted file mode 100644 index 3776d305..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake +++ /dev/null @@ -1,16 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.31 - -# Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug") - -# Force unix paths in dependencies. -set(CMAKE_FORCE_UNIX_PATHS 1) - - -# The C and CXX include file regular expressions for this directory. -set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") -set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") -set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) -set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeRuleHashes.txt b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeRuleHashes.txt deleted file mode 100644 index 750f2134..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/CMakeRuleHashes.txt +++ /dev/null @@ -1,5 +0,0 @@ -# Hashes of file build rules. -a5d99f39e2871fab804737a217a02c88 .qt/qml_imports/nearby_qml_tray_app_build.cmake -c4baab76b365e770493beb7e1339098c /home/lasan/.cache/bazel/_bazel_lasan/eab9f70275b204a945d17adc15bd41fd/execroot/_main/bazel-out/k8-fastbuild/bin/sharing/linux/libnearby_connections_service_linux_shared.so -c67c93ebe87746043e2fc39691bf5ed8 CMakeFiles/bazel_nearby_connections_service_linux -c67c93ebe87746043e2fc39691bf5ed8 CMakeFiles/nearby_qml_tray_app_qmlimportscan diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/Makefile.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/Makefile.cmake deleted file mode 100644 index e98e23bf..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/Makefile.cmake +++ /dev/null @@ -1,822 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.31 - -# The generator used is: -set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") - -# The top level Makefile was generated from the following files: -set(CMAKE_MAKEFILE_DEPENDS - "CMakeCache.txt" - "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/CMakeLists.txt" - ".qt/qml_imports/nearby_qml_tray_app_conf.cmake" - "CMakeFiles/3.31.6/CMakeCXXCompiler.cmake" - "CMakeFiles/3.31.6/CMakeSystem.cmake" - "/usr/lib64/cmake/Qt6/3rdparty/kwin/FindXKB.cmake" - "/usr/lib64/cmake/Qt6/FindWrapAtomic.cmake" - "/usr/lib64/cmake/Qt6/FindWrapOpenGL.cmake" - "/usr/lib64/cmake/Qt6/FindWrapVulkanHeaders.cmake" - "/usr/lib64/cmake/Qt6/Qt6Config.cmake" - "/usr/lib64/cmake/Qt6/Qt6ConfigExtras.cmake" - "/usr/lib64/cmake/Qt6/Qt6ConfigVersion.cmake" - "/usr/lib64/cmake/Qt6/Qt6ConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6/Qt6Dependencies.cmake" - "/usr/lib64/cmake/Qt6/Qt6Targets.cmake" - "/usr/lib64/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6/QtFeature.cmake" - "/usr/lib64/cmake/Qt6/QtFeatureCommon.cmake" - "/usr/lib64/cmake/Qt6/QtInstallPaths.cmake" - "/usr/lib64/cmake/Qt6/QtPublicAndroidHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicAppleHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicCMakeEarlyPolicyHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicCMakeHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicDependencyHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicFinalizerHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicFindPackageHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicGitHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicPluginHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicPluginHelpers_v2.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomAttributionHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomCpeHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomDepHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomFileHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomLicenseHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomOpsHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomPurlHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomPythonHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomQtEntityHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicSbomSystemDepHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicTargetHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicTestHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicToolHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" - "/usr/lib64/cmake/Qt6/QtPublicWindowsHelpers.cmake" - "/usr/lib64/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Core/Qt6CoreConfig.cmake" - "/usr/lib64/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" - "/usr/lib64/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" - "/usr/lib64/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6Core/Qt6CoreDependencies.cmake" - "/usr/lib64/cmake/Qt6Core/Qt6CoreMacros.cmake" - "/usr/lib64/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Core/Qt6CoreTargets.cmake" - "/usr/lib64/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6CorePrivate/Qt6CorePrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6CorePrivate/Qt6CorePrivateConfig.cmake" - "/usr/lib64/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6CorePrivate/Qt6CorePrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6CorePrivate/Qt6CorePrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6CorePrivate/Qt6CorePrivateTargets.cmake" - "/usr/lib64/cmake/Qt6CorePrivate/Qt6CorePrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" - "/usr/lib64/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" - "/usr/lib64/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" - "/usr/lib64/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" - "/usr/lib64/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" - "/usr/lib64/cmake/Qt6DBus/Qt6DBusAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6DBus/Qt6DBusConfig.cmake" - "/usr/lib64/cmake/Qt6DBus/Qt6DBusConfigVersion.cmake" - "/usr/lib64/cmake/Qt6DBus/Qt6DBusConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6DBus/Qt6DBusDependencies.cmake" - "/usr/lib64/cmake/Qt6DBus/Qt6DBusMacros.cmake" - "/usr/lib64/cmake/Qt6DBus/Qt6DBusTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6DBus/Qt6DBusTargets.cmake" - "/usr/lib64/cmake/Qt6DBus/Qt6DBusVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6DBusPrivate/Qt6DBusPrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfig.cmake" - "/usr/lib64/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6DBusPrivate/Qt6DBusPrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6DBusPrivate/Qt6DBusPrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6DBusPrivate/Qt6DBusPrivateTargets.cmake" - "/usr/lib64/cmake/Qt6DBusPrivate/Qt6DBusPrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6DBusTools/Qt6DBusToolsAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6DBusTools/Qt6DBusToolsConfig.cmake" - "/usr/lib64/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersion.cmake" - "/usr/lib64/cmake/Qt6DBusTools/Qt6DBusToolsConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6DBusTools/Qt6DBusToolsDependencies.cmake" - "/usr/lib64/cmake/Qt6DBusTools/Qt6DBusToolsTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6DBusTools/Qt6DBusToolsTargets.cmake" - "/usr/lib64/cmake/Qt6DBusTools/Qt6DBusToolsVersionlessTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6GuiConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6GuiDependencies.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6GuiPlugins.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6GuiTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QComposePlatformInputContextPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSEmulatorIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSKmsEglDeviceIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSKmsGbmIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEglFSX11IntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevKeyboardPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevMousePluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevMousePluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevMousePluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevTabletPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevTabletPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevTabletPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QEvdevTouchScreenPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QGtk3ThemePluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QGtk3ThemePluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QGtk3ThemePluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QIbusPlatformInputContextPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QJp2PluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QJp2PluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QJp2PluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QJp2PluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QLibInputPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QLibInputPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QLibInputPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QLibInputPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QLinuxFbIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMinimalEglIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMngPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMngPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMngPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QMngPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTsLibPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTsLibPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTsLibPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTsLibPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QVkKhrDisplayIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QVncIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QVncIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QVncIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbEglIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbGlxIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbIntegrationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbIntegrationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXcbIntegrationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginConfig.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Gui/Qt6QXdgDesktopPortalThemePluginTargets.cmake" - "/usr/lib64/cmake/Qt6GuiPrivate/Qt6GuiPrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfig.cmake" - "/usr/lib64/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6GuiPrivate/Qt6GuiPrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6GuiPrivate/Qt6GuiPrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6GuiPrivate/Qt6GuiPrivateTargets.cmake" - "/usr/lib64/cmake/Qt6GuiPrivate/Qt6GuiPrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" - "/usr/lib64/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" - "/usr/lib64/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" - "/usr/lib64/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" - "/usr/lib64/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6NetworkAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6NetworkConfig.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6NetworkConfigVersion.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6NetworkConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6NetworkDependencies.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6NetworkPlugins.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6NetworkTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6NetworkTargets.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6NetworkVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QGlibNetworkInformationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QNetworkManagerNetworkInformationPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QNetworkManagerNetworkInformationPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QNetworkManagerNetworkInformationPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QNetworkManagerNetworkInformationPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QTlsBackendCertOnlyPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Network/Qt6QTlsBackendOpenSSLPluginTargets.cmake" - "/usr/lib64/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateConfig.cmake" - "/usr/lib64/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateTargets.cmake" - "/usr/lib64/cmake/Qt6NetworkPrivate/Qt6NetworkPrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6OpenGL/Qt6OpenGLAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6OpenGL/Qt6OpenGLConfig.cmake" - "/usr/lib64/cmake/Qt6OpenGL/Qt6OpenGLConfigVersion.cmake" - "/usr/lib64/cmake/Qt6OpenGL/Qt6OpenGLConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6OpenGL/Qt6OpenGLDependencies.cmake" - "/usr/lib64/cmake/Qt6OpenGL/Qt6OpenGLTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6OpenGL/Qt6OpenGLTargets.cmake" - "/usr/lib64/cmake/Qt6OpenGL/Qt6OpenGLVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateConfig.cmake" - "/usr/lib64/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateTargets.cmake" - "/usr/lib64/cmake/Qt6OpenGLPrivate/Qt6OpenGLPrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6LabsPlatformpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6LabsPlatformpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6LabsPlatformpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6LabsPlatformpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QmlNetworkpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QuickControlsTestUtilsPrivatepluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6QuickTestpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6effectspluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6labsanimationpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6labsmodelspluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6modelspluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6particlespluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlfolderlistmodelpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmllocalstoragepluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlsettingspluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlshapespluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlwavefrontmeshpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qmlxmllistmodelpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qquicklayoutspluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qquickvectorimagepluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qquickvectorimagepluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qquickvectorimagepluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qquickvectorimagepluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtqmlcorepluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquick2pluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstyleimplpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2basicstylepluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3styleimplpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3styleimplpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3styleimplpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3styleimplpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3stylepluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3stylepluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3stylepluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fluentwinui3stylepluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstyleimplpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2fusionstylepluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestyleimplpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2imaginestylepluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2implpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstyleimplpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2materialstylepluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2pluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstyleimplpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickcontrols2universalstylepluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogs2quickimplpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquickdialogspluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6qtquicktemplates2pluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6quicktoolingTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6quickwindowTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6sharedimagepluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/QmlPlugins/Qt6workerscriptpluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QDebugMessageServiceFactoryPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QLocalClientConnectionFactoryPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlDebugServerFactoryPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlDebuggerServiceFactoryPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlInspectorServiceFactoryPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlNativeDebugConnectorFactoryPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlNativeDebugServiceFactoryPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlPreviewServiceFactoryPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQmlProfilerServiceFactoryPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QQuickProfilerAdapterFactoryPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QTcpServerConnectionFactoryPluginTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlConfig.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlConfigExtras.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlConfigVersion.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlDependencies.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlFindQmlscInternal.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlMacros.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlPlugins.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlPublicCMakeHelpers.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlTargets.cmake" - "/usr/lib64/cmake/Qt6Qml/Qt6QmlVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QmlIntegration/Qt6QmlIntegrationAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfig.cmake" - "/usr/lib64/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QmlIntegration/Qt6QmlIntegrationConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QmlIntegration/Qt6QmlIntegrationTargets.cmake" - "/usr/lib64/cmake/Qt6QmlIntegration/Qt6QmlIntegrationVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QmlIntegrationPrivate/Qt6QmlIntegrationPrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QmlIntegrationPrivate/Qt6QmlIntegrationPrivateConfig.cmake" - "/usr/lib64/cmake/Qt6QmlIntegrationPrivate/Qt6QmlIntegrationPrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QmlIntegrationPrivate/Qt6QmlIntegrationPrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QmlIntegrationPrivate/Qt6QmlIntegrationPrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6QmlIntegrationPrivate/Qt6QmlIntegrationPrivateTargets.cmake" - "/usr/lib64/cmake/Qt6QmlIntegrationPrivate/Qt6QmlIntegrationPrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QmlMeta/Qt6QmlMetaAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QmlMeta/Qt6QmlMetaConfig.cmake" - "/usr/lib64/cmake/Qt6QmlMeta/Qt6QmlMetaConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QmlMeta/Qt6QmlMetaConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QmlMeta/Qt6QmlMetaDependencies.cmake" - "/usr/lib64/cmake/Qt6QmlMeta/Qt6QmlMetaTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6QmlMeta/Qt6QmlMetaTargets.cmake" - "/usr/lib64/cmake/Qt6QmlMeta/Qt6QmlMetaVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QmlMetaPrivate/Qt6QmlMetaPrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QmlMetaPrivate/Qt6QmlMetaPrivateConfig.cmake" - "/usr/lib64/cmake/Qt6QmlMetaPrivate/Qt6QmlMetaPrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QmlMetaPrivate/Qt6QmlMetaPrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QmlMetaPrivate/Qt6QmlMetaPrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6QmlMetaPrivate/Qt6QmlMetaPrivateTargets.cmake" - "/usr/lib64/cmake/Qt6QmlMetaPrivate/Qt6QmlMetaPrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QmlModels/Qt6QmlModelsAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QmlModels/Qt6QmlModelsConfig.cmake" - "/usr/lib64/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QmlModels/Qt6QmlModelsConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QmlModels/Qt6QmlModelsDependencies.cmake" - "/usr/lib64/cmake/Qt6QmlModels/Qt6QmlModelsTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6QmlModels/Qt6QmlModelsTargets.cmake" - "/usr/lib64/cmake/Qt6QmlModels/Qt6QmlModelsVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QmlModelsPrivate/Qt6QmlModelsPrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QmlModelsPrivate/Qt6QmlModelsPrivateConfig.cmake" - "/usr/lib64/cmake/Qt6QmlModelsPrivate/Qt6QmlModelsPrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QmlModelsPrivate/Qt6QmlModelsPrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QmlModelsPrivate/Qt6QmlModelsPrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6QmlModelsPrivate/Qt6QmlModelsPrivateTargets.cmake" - "/usr/lib64/cmake/Qt6QmlModelsPrivate/Qt6QmlModelsPrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QmlPrivate/Qt6QmlPrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QmlPrivate/Qt6QmlPrivateConfig.cmake" - "/usr/lib64/cmake/Qt6QmlPrivate/Qt6QmlPrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QmlPrivate/Qt6QmlPrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QmlPrivate/Qt6QmlPrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6QmlPrivate/Qt6QmlPrivateTargets.cmake" - "/usr/lib64/cmake/Qt6QmlPrivate/Qt6QmlPrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QmlTools/Qt6QmlToolsAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QmlTools/Qt6QmlToolsConfig.cmake" - "/usr/lib64/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QmlTools/Qt6QmlToolsConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QmlTools/Qt6QmlToolsDependencies.cmake" - "/usr/lib64/cmake/Qt6QmlTools/Qt6QmlToolsTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6QmlTools/Qt6QmlToolsTargets.cmake" - "/usr/lib64/cmake/Qt6QmlTools/Qt6QmlToolsVersionlessTargets.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptConfig.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptDependencies.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptTargets.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScript/Qt6QmlWorkerScriptVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScriptPrivate/Qt6QmlWorkerScriptPrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScriptPrivate/Qt6QmlWorkerScriptPrivateConfig.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScriptPrivate/Qt6QmlWorkerScriptPrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScriptPrivate/Qt6QmlWorkerScriptPrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScriptPrivate/Qt6QmlWorkerScriptPrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScriptPrivate/Qt6QmlWorkerScriptPrivateTargets.cmake" - "/usr/lib64/cmake/Qt6QmlWorkerScriptPrivate/Qt6QmlWorkerScriptPrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6Quick/Qt6QuickAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Quick/Qt6QuickConfig.cmake" - "/usr/lib64/cmake/Qt6Quick/Qt6QuickConfigVersion.cmake" - "/usr/lib64/cmake/Qt6Quick/Qt6QuickConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6Quick/Qt6QuickDependencies.cmake" - "/usr/lib64/cmake/Qt6Quick/Qt6QuickPlugins.cmake" - "/usr/lib64/cmake/Qt6Quick/Qt6QuickTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Quick/Qt6QuickTargets.cmake" - "/usr/lib64/cmake/Qt6Quick/Qt6QuickVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QuickControls2/Qt6QuickControls2AdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QuickControls2/Qt6QuickControls2Config.cmake" - "/usr/lib64/cmake/Qt6QuickControls2/Qt6QuickControls2ConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QuickControls2/Qt6QuickControls2ConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QuickControls2/Qt6QuickControls2Dependencies.cmake" - "/usr/lib64/cmake/Qt6QuickControls2/Qt6QuickControls2Targets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6QuickControls2/Qt6QuickControls2Targets.cmake" - "/usr/lib64/cmake/Qt6QuickControls2/Qt6QuickControls2VersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QuickControls2Private/Qt6QuickControls2PrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QuickControls2Private/Qt6QuickControls2PrivateConfig.cmake" - "/usr/lib64/cmake/Qt6QuickControls2Private/Qt6QuickControls2PrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QuickControls2Private/Qt6QuickControls2PrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QuickControls2Private/Qt6QuickControls2PrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6QuickControls2Private/Qt6QuickControls2PrivateTargets.cmake" - "/usr/lib64/cmake/Qt6QuickControls2Private/Qt6QuickControls2PrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QuickPrivate/Qt6QuickPrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QuickPrivate/Qt6QuickPrivateConfig.cmake" - "/usr/lib64/cmake/Qt6QuickPrivate/Qt6QuickPrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QuickPrivate/Qt6QuickPrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QuickPrivate/Qt6QuickPrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6QuickPrivate/Qt6QuickPrivateTargets.cmake" - "/usr/lib64/cmake/Qt6QuickPrivate/Qt6QuickPrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2AdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2Config.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2ConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2ConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2Dependencies.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2Targets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2Targets.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2/Qt6QuickTemplates2VersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2Private/Qt6QuickTemplates2PrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2Private/Qt6QuickTemplates2PrivateConfig.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2Private/Qt6QuickTemplates2PrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2Private/Qt6QuickTemplates2PrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2Private/Qt6QuickTemplates2PrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2Private/Qt6QuickTemplates2PrivateTargets.cmake" - "/usr/lib64/cmake/Qt6QuickTemplates2Private/Qt6QuickTemplates2PrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6QuickTools/Qt6QuickToolsAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6QuickTools/Qt6QuickToolsConfig.cmake" - "/usr/lib64/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersion.cmake" - "/usr/lib64/cmake/Qt6QuickTools/Qt6QuickToolsConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6QuickTools/Qt6QuickToolsDependencies.cmake" - "/usr/lib64/cmake/Qt6QuickTools/Qt6QuickToolsTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6QuickTools/Qt6QuickToolsTargets.cmake" - "/usr/lib64/cmake/Qt6QuickTools/Qt6QuickToolsVersionlessTargets.cmake" - "/usr/lib64/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake" - "/usr/lib64/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake" - "/usr/lib64/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake" - "/usr/lib64/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake" - "/usr/lib64/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake" - "/usr/lib64/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake" - "/usr/lib64/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfig.cmake" - "/usr/lib64/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersion.cmake" - "/usr/lib64/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateDependencies.cmake" - "/usr/lib64/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateTargets.cmake" - "/usr/lib64/cmake/Qt6WidgetsPrivate/Qt6WidgetsPrivateVersionlessAliasTargets.cmake" - "/usr/lib64/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake" - "/usr/lib64/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake" - "/usr/lib64/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake" - "/usr/lib64/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake" - "/usr/lib64/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake" - "/usr/lib64/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake" - "/usr/lib64/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake" - "/usr/lib64/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake" - "/usr/share/cmake/Modules/CMakeCXXCompiler.cmake.in" - "/usr/share/cmake/Modules/CMakeCXXCompilerABI.cpp" - "/usr/share/cmake/Modules/CMakeCXXInformation.cmake" - "/usr/share/cmake/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" - "/usr/share/cmake/Modules/CMakeCommonLanguageInclude.cmake" - "/usr/share/cmake/Modules/CMakeCompilerIdDetection.cmake" - "/usr/share/cmake/Modules/CMakeDetermineCXXCompiler.cmake" - "/usr/share/cmake/Modules/CMakeDetermineCompiler.cmake" - "/usr/share/cmake/Modules/CMakeDetermineCompilerABI.cmake" - "/usr/share/cmake/Modules/CMakeDetermineCompilerId.cmake" - "/usr/share/cmake/Modules/CMakeDetermineCompilerSupport.cmake" - "/usr/share/cmake/Modules/CMakeDetermineSystem.cmake" - "/usr/share/cmake/Modules/CMakeFindBinUtils.cmake" - "/usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake" - "/usr/share/cmake/Modules/CMakeGenericSystem.cmake" - "/usr/share/cmake/Modules/CMakeInitializeConfigs.cmake" - "/usr/share/cmake/Modules/CMakeLanguageInformation.cmake" - "/usr/share/cmake/Modules/CMakeParseImplicitIncludeInfo.cmake" - "/usr/share/cmake/Modules/CMakeParseImplicitLinkInfo.cmake" - "/usr/share/cmake/Modules/CMakeParseLibraryArchitecture.cmake" - "/usr/share/cmake/Modules/CMakeSystem.cmake.in" - "/usr/share/cmake/Modules/CMakeSystemSpecificInformation.cmake" - "/usr/share/cmake/Modules/CMakeSystemSpecificInitialize.cmake" - "/usr/share/cmake/Modules/CMakeTestCXXCompiler.cmake" - "/usr/share/cmake/Modules/CMakeTestCompilerCommon.cmake" - "/usr/share/cmake/Modules/CMakeUnixFindMake.cmake" - "/usr/share/cmake/Modules/CheckCXXCompilerFlag.cmake" - "/usr/share/cmake/Modules/CheckCXXSourceCompiles.cmake" - "/usr/share/cmake/Modules/CheckIncludeFileCXX.cmake" - "/usr/share/cmake/Modules/CheckLibraryExists.cmake" - "/usr/share/cmake/Modules/Compiler/ADSP-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Borland-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/CMakeCommonCompilerMacros.cmake" - "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - "/usr/share/cmake/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Cray-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/CrayClang-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/GHS-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/GNU-CXX.cmake" - "/usr/share/cmake/Modules/Compiler/GNU-FindBinUtils.cmake" - "/usr/share/cmake/Modules/Compiler/GNU.cmake" - "/usr/share/cmake/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/IAR-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" - "/usr/share/cmake/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Intel-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/MSVC-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/NVHPC-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/OrangeC-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/PGI-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/PathScale-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/SCO-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/TI-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/TIClang-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Tasking-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/Watcom-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" - "/usr/share/cmake/Modules/FeatureSummary.cmake" - "/usr/share/cmake/Modules/FindOpenGL.cmake" - "/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake" - "/usr/share/cmake/Modules/FindPackageMessage.cmake" - "/usr/share/cmake/Modules/FindPkgConfig.cmake" - "/usr/share/cmake/Modules/FindThreads.cmake" - "/usr/share/cmake/Modules/FindVulkan.cmake" - "/usr/share/cmake/Modules/GNUInstallDirs.cmake" - "/usr/share/cmake/Modules/Internal/CMakeCXXLinkerInformation.cmake" - "/usr/share/cmake/Modules/Internal/CMakeCommonLinkerInformation.cmake" - "/usr/share/cmake/Modules/Internal/CMakeDetermineLinkerId.cmake" - "/usr/share/cmake/Modules/Internal/CheckCompilerFlag.cmake" - "/usr/share/cmake/Modules/Internal/CheckFlagCommonConfig.cmake" - "/usr/share/cmake/Modules/Internal/CheckSourceCompiles.cmake" - "/usr/share/cmake/Modules/Internal/FeatureTesting.cmake" - "/usr/share/cmake/Modules/Linker/GNU-CXX.cmake" - "/usr/share/cmake/Modules/Linker/GNU.cmake" - "/usr/share/cmake/Modules/MacroAddFileDependencies.cmake" - "/usr/share/cmake/Modules/Platform/Linker/GNU.cmake" - "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU-CXX.cmake" - "/usr/share/cmake/Modules/Platform/Linker/Linux-GNU.cmake" - "/usr/share/cmake/Modules/Platform/Linux-Determine-CXX.cmake" - "/usr/share/cmake/Modules/Platform/Linux-GNU-CXX.cmake" - "/usr/share/cmake/Modules/Platform/Linux-GNU.cmake" - "/usr/share/cmake/Modules/Platform/Linux-Initialize.cmake" - "/usr/share/cmake/Modules/Platform/Linux.cmake" - "/usr/share/cmake/Modules/Platform/UnixPaths.cmake" - ) - -# The corresponding makefile is: -set(CMAKE_MAKEFILE_OUTPUTS - "Makefile" - "CMakeFiles/cmake.check_cache" - ) - -# Byproducts of CMake generate step: -set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/3.31.6/CMakeSystem.cmake" - "CMakeFiles/3.31.6/CMakeCXXCompiler.cmake" - "CMakeFiles/3.31.6/CMakeCXXCompiler.cmake" - ".qt/QtDeploySupport.cmake" - ".qt/QtDeployTargets.cmake" - ".qt/deploy_qml_imports/nearby_qml_tray_app.cmake" - "CMakeFiles/CMakeDirectoryInformation.cmake" - ) - -# Dependency information for all targets: -set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/bazel_nearby_connections_service_linux.dir/DependInfo.cmake" - "CMakeFiles/nearby_qml_tray_app.dir/DependInfo.cmake" - "CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/DependInfo.cmake" - ) diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/Makefile2 b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/Makefile2 deleted file mode 100644 index 29fae1bc..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/Makefile2 +++ /dev/null @@ -1,190 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.31 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug - -#============================================================================= -# Directory level rules for the build root directory - -# The main recursive "all" target. -all: CMakeFiles/nearby_qml_tray_app.dir/all -.PHONY : all - -# The main recursive "codegen" target. -codegen: CMakeFiles/nearby_qml_tray_app.dir/codegen -.PHONY : codegen - -# The main recursive "preinstall" target. -preinstall: -.PHONY : preinstall - -# The main recursive "clean" target. -clean: CMakeFiles/bazel_nearby_connections_service_linux.dir/clean -clean: CMakeFiles/nearby_qml_tray_app.dir/clean -clean: CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/clean -.PHONY : clean - -#============================================================================= -# Target rules for target CMakeFiles/bazel_nearby_connections_service_linux.dir - -# All Build rule for target. -CMakeFiles/bazel_nearby_connections_service_linux.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/bazel_nearby_connections_service_linux.dir/build.make CMakeFiles/bazel_nearby_connections_service_linux.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/bazel_nearby_connections_service_linux.dir/build.make CMakeFiles/bazel_nearby_connections_service_linux.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles --progress-num=1 "Built target bazel_nearby_connections_service_linux" -.PHONY : CMakeFiles/bazel_nearby_connections_service_linux.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/bazel_nearby_connections_service_linux.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/bazel_nearby_connections_service_linux.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles 0 -.PHONY : CMakeFiles/bazel_nearby_connections_service_linux.dir/rule - -# Convenience name for target. -bazel_nearby_connections_service_linux: CMakeFiles/bazel_nearby_connections_service_linux.dir/rule -.PHONY : bazel_nearby_connections_service_linux - -# codegen rule for target. -CMakeFiles/bazel_nearby_connections_service_linux.dir/codegen: - $(MAKE) $(MAKESILENT) -f CMakeFiles/bazel_nearby_connections_service_linux.dir/build.make CMakeFiles/bazel_nearby_connections_service_linux.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles --progress-num=1 "Finished codegen for target bazel_nearby_connections_service_linux" -.PHONY : CMakeFiles/bazel_nearby_connections_service_linux.dir/codegen - -# clean rule for target. -CMakeFiles/bazel_nearby_connections_service_linux.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/bazel_nearby_connections_service_linux.dir/build.make CMakeFiles/bazel_nearby_connections_service_linux.dir/clean -.PHONY : CMakeFiles/bazel_nearby_connections_service_linux.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/nearby_qml_tray_app.dir - -# All Build rule for target. -CMakeFiles/nearby_qml_tray_app.dir/all: CMakeFiles/bazel_nearby_connections_service_linux.dir/all -CMakeFiles/nearby_qml_tray_app.dir/all: CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app.dir/build.make CMakeFiles/nearby_qml_tray_app.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app.dir/build.make CMakeFiles/nearby_qml_tray_app.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles --progress-num=2,3,4 "Built target nearby_qml_tray_app" -.PHONY : CMakeFiles/nearby_qml_tray_app.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/nearby_qml_tray_app.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles 5 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/nearby_qml_tray_app.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles 0 -.PHONY : CMakeFiles/nearby_qml_tray_app.dir/rule - -# Convenience name for target. -nearby_qml_tray_app: CMakeFiles/nearby_qml_tray_app.dir/rule -.PHONY : nearby_qml_tray_app - -# codegen rule for target. -CMakeFiles/nearby_qml_tray_app.dir/codegen: CMakeFiles/bazel_nearby_connections_service_linux.dir/all -CMakeFiles/nearby_qml_tray_app.dir/codegen: CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/all - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app.dir/build.make CMakeFiles/nearby_qml_tray_app.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles --progress-num=2,3,4 "Finished codegen for target nearby_qml_tray_app" -.PHONY : CMakeFiles/nearby_qml_tray_app.dir/codegen - -# clean rule for target. -CMakeFiles/nearby_qml_tray_app.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app.dir/build.make CMakeFiles/nearby_qml_tray_app.dir/clean -.PHONY : CMakeFiles/nearby_qml_tray_app.dir/clean - -#============================================================================= -# Target rules for target CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir - -# All Build rule for target. -CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/all: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build.make CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/depend - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build.make CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles --progress-num=5 "Built target nearby_qml_tray_app_qmlimportscan" -.PHONY : CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/all - -# Build rule for subdir invocation for target. -CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles 1 - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles 0 -.PHONY : CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/rule - -# Convenience name for target. -nearby_qml_tray_app_qmlimportscan: CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/rule -.PHONY : nearby_qml_tray_app_qmlimportscan - -# codegen rule for target. -CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/codegen: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build.make CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/codegen - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles --progress-num=5 "Finished codegen for target nearby_qml_tray_app_qmlimportscan" -.PHONY : CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/codegen - -# clean rule for target. -CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build.make CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/clean -.PHONY : CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/clean - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/TargetDirectories.txt b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 01167b68..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,5 +0,0 @@ -/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir -/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir -/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir -/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/edit_cache.dir -/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/rebuild_cache.dir diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/DependInfo.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/DependInfo.cmake deleted file mode 100644 index 29b95a51..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/build.make b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/build.make deleted file mode 100644 index e92cd536..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/build.make +++ /dev/null @@ -1,94 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.31 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug - -# Utility rule file for bazel_nearby_connections_service_linux. - -# Include any custom commands dependencies for this target. -include CMakeFiles/bazel_nearby_connections_service_linux.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/bazel_nearby_connections_service_linux.dir/progress.make - -CMakeFiles/bazel_nearby_connections_service_linux: /home/lasan/.cache/bazel/_bazel_lasan/eab9f70275b204a945d17adc15bd41fd/execroot/_main/bazel-out/k8-fastbuild/bin/sharing/linux/libnearby_connections_service_linux_shared.so - -/home/lasan/.cache/bazel/_bazel_lasan/eab9f70275b204a945d17adc15bd41fd/execroot/_main/bazel-out/k8-fastbuild/bin/sharing/linux/libnearby_connections_service_linux_shared.so: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building //sharing/linux:nearby_connections_service_linux_shared with Bazel" - /usr/bin/cmake -DOUTPUT_SO=/home/lasan/.cache/bazel/_bazel_lasan/eab9f70275b204a945d17adc15bd41fd/execroot/_main/bazel-out/k8-fastbuild/bin/sharing/linux/libnearby_connections_service_linux_shared.so -DBAZEL_EXECUTABLE=bazel -DBAZEL_TARGET=//sharing/linux:nearby_connections_service_linux_shared "-DBAZEL_BUILD_OPTIONS=-s --check_visibility=false --spawn_strategy=standalone --verbose_failures --cxxopt=-std=c++20 --host_cxxopt=-std=c++20" -DREPO_ROOT=/home/lasan/Dev/nearby_latest -P /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/cmake/BuildNearbySoIfMissing.cmake - -CMakeFiles/bazel_nearby_connections_service_linux.dir/codegen: -.PHONY : CMakeFiles/bazel_nearby_connections_service_linux.dir/codegen - -bazel_nearby_connections_service_linux: /home/lasan/.cache/bazel/_bazel_lasan/eab9f70275b204a945d17adc15bd41fd/execroot/_main/bazel-out/k8-fastbuild/bin/sharing/linux/libnearby_connections_service_linux_shared.so -bazel_nearby_connections_service_linux: CMakeFiles/bazel_nearby_connections_service_linux -bazel_nearby_connections_service_linux: CMakeFiles/bazel_nearby_connections_service_linux.dir/build.make -.PHONY : bazel_nearby_connections_service_linux - -# Rule to build all files generated by this target. -CMakeFiles/bazel_nearby_connections_service_linux.dir/build: bazel_nearby_connections_service_linux -.PHONY : CMakeFiles/bazel_nearby_connections_service_linux.dir/build - -CMakeFiles/bazel_nearby_connections_service_linux.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/bazel_nearby_connections_service_linux.dir/cmake_clean.cmake -.PHONY : CMakeFiles/bazel_nearby_connections_service_linux.dir/clean - -CMakeFiles/bazel_nearby_connections_service_linux.dir/depend: - cd /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/bazel_nearby_connections_service_linux.dir/depend - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/cmake_clean.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/cmake_clean.cmake deleted file mode 100644 index a2971387..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - "/home/lasan/.cache/bazel/_bazel_lasan/eab9f70275b204a945d17adc15bd41fd/execroot/_main/bazel-out/k8-fastbuild/bin/sharing/linux/libnearby_connections_service_linux_shared.so" - "CMakeFiles/bazel_nearby_connections_service_linux" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/bazel_nearby_connections_service_linux.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/compiler_depend.make b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/compiler_depend.make deleted file mode 100644 index 62f847e4..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for bazel_nearby_connections_service_linux. -# This may be replaced when dependencies are built. diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/compiler_depend.ts b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/compiler_depend.ts deleted file mode 100644 index 492dc518..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for bazel_nearby_connections_service_linux. diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/progress.make b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/progress.make deleted file mode 100644 index 781c7de2..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/bazel_nearby_connections_service_linux.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 1 - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/cmake.check_cache b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd731..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/DependInfo.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/DependInfo.cmake deleted file mode 100644 index 4caa758a..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/DependInfo.cmake +++ /dev/null @@ -1,25 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/main.cpp" "CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o" "gcc" "CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o.d" - "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/nearby_tray_controller.cc" "CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o" "gcc" "CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o.d" - "" "nearby_qml_tray_app" "gcc" "CMakeFiles/nearby_qml_tray_app.dir/link.d" - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/build.make b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/build.make deleted file mode 100644 index 1ae5f890..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/build.make +++ /dev/null @@ -1,144 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.31 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug - -# Include any dependencies generated for this target. -include CMakeFiles/nearby_qml_tray_app.dir/depend.make -# Include any dependencies generated by the compiler for this target. -include CMakeFiles/nearby_qml_tray_app.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/nearby_qml_tray_app.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/nearby_qml_tray_app.dir/flags.make - -CMakeFiles/nearby_qml_tray_app.dir/codegen: -.PHONY : CMakeFiles/nearby_qml_tray_app.dir/codegen - -CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o: CMakeFiles/nearby_qml_tray_app.dir/flags.make -CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o: /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/main.cpp -CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o: CMakeFiles/nearby_qml_tray_app.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o -MF CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o.d -o CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o -c /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/main.cpp - -CMakeFiles/nearby_qml_tray_app.dir/main.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/nearby_qml_tray_app.dir/main.cpp.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/main.cpp > CMakeFiles/nearby_qml_tray_app.dir/main.cpp.i - -CMakeFiles/nearby_qml_tray_app.dir/main.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/nearby_qml_tray_app.dir/main.cpp.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/main.cpp -o CMakeFiles/nearby_qml_tray_app.dir/main.cpp.s - -CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o: CMakeFiles/nearby_qml_tray_app.dir/flags.make -CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o: /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/nearby_tray_controller.cc -CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o: CMakeFiles/nearby_qml_tray_app.dir/compiler_depend.ts - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o -MF CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o.d -o CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o -c /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/nearby_tray_controller.cc - -CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.i" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/nearby_tray_controller.cc > CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.i - -CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.s" - /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/nearby_tray_controller.cc -o CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.s - -# Object files for target nearby_qml_tray_app -nearby_qml_tray_app_OBJECTS = \ -"CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o" \ -"CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o" - -# External object files for target nearby_qml_tray_app -nearby_qml_tray_app_EXTERNAL_OBJECTS = - -nearby_qml_tray_app: CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o -nearby_qml_tray_app: CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o -nearby_qml_tray_app: CMakeFiles/nearby_qml_tray_app.dir/build.make -nearby_qml_tray_app: CMakeFiles/nearby_qml_tray_app.dir/compiler_depend.ts -nearby_qml_tray_app: /usr/lib64/libQt6Widgets.so.6.9.3 -nearby_qml_tray_app: /usr/lib64/libQt6QuickControls2.so.6.9.3 -nearby_qml_tray_app: /home/lasan/.cache/bazel/_bazel_lasan/eab9f70275b204a945d17adc15bd41fd/execroot/_main/bazel-out/k8-fastbuild/bin/sharing/linux/libnearby_connections_service_linux_shared.so -nearby_qml_tray_app: /usr/lib64/libQt6Quick.so.6.9.3 -nearby_qml_tray_app: /usr/lib64/libQt6QmlMeta.so.6.9.3 -nearby_qml_tray_app: /usr/lib64/libQt6QmlWorkerScript.so.6.9.3 -nearby_qml_tray_app: /usr/lib64/libQt6OpenGL.so.6.9.3 -nearby_qml_tray_app: /usr/lib64/libQt6Gui.so.6.9.3 -nearby_qml_tray_app: /usr/lib64/libGLX.so -nearby_qml_tray_app: /usr/lib64/libOpenGL.so -nearby_qml_tray_app: /usr/lib64/libQt6QmlModels.so.6.9.3 -nearby_qml_tray_app: /usr/lib64/libQt6Qml.so.6.9.3 -nearby_qml_tray_app: /usr/lib64/libQt6Network.so.6.9.3 -nearby_qml_tray_app: /usr/lib64/libQt6Core.so.6.9.3 -nearby_qml_tray_app: CMakeFiles/nearby_qml_tray_app.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking CXX executable nearby_qml_tray_app" - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/nearby_qml_tray_app.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/nearby_qml_tray_app.dir/build: nearby_qml_tray_app -.PHONY : CMakeFiles/nearby_qml_tray_app.dir/build - -CMakeFiles/nearby_qml_tray_app.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/nearby_qml_tray_app.dir/cmake_clean.cmake -.PHONY : CMakeFiles/nearby_qml_tray_app.dir/clean - -CMakeFiles/nearby_qml_tray_app.dir/depend: - cd /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/nearby_qml_tray_app.dir/depend - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/cmake_clean.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/cmake_clean.cmake deleted file mode 100644 index 56036394..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/cmake_clean.cmake +++ /dev/null @@ -1,14 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/nearby_qml_tray_app.dir/link.d" - "CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o" - "CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o.d" - "CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o" - "CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o.d" - "nearby_qml_tray_app" - "nearby_qml_tray_app.pdb" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/nearby_qml_tray_app.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/compiler_depend.make b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/compiler_depend.make deleted file mode 100644 index 1fc71cc0..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty compiler generated dependencies file for nearby_qml_tray_app. -# This may be replaced when dependencies are built. diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/compiler_depend.ts b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/compiler_depend.ts deleted file mode 100644 index 1361f6e0..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for compiler generated dependencies management for nearby_qml_tray_app. diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/depend.make b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/depend.make deleted file mode 100644 index 4fdbc7e7..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty dependencies file for nearby_qml_tray_app. -# This may be replaced when dependencies are built. diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/flags.make b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/flags.make deleted file mode 100644 index 4386e211..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.31 - -# compile CXX with /usr/bin/c++ -CXX_DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_QMLINTEGRATION_LIB -DQT_QMLMETA_LIB -DQT_QMLMODELS_LIB -DQT_QMLWORKERSCRIPT_LIB -DQT_QML_LIB -DQT_QUICKCONTROLS2_LIB -DQT_QUICK_LIB -DQT_WIDGETS_LIB - -CXX_INCLUDES = -isystem /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root -isystem /usr/include/qt6/QtCore -isystem /usr/include/qt6 -isystem /usr/lib64/qt6/mkspecs/linux-g++ -isystem /usr/include/qt6/QtGui -isystem /usr/include/qt6/QtWidgets -isystem /usr/include/qt6/QtQml -isystem /usr/include/qt6/QtQmlIntegration -isystem /usr/include/qt6/QtNetwork -isystem /usr/include/qt6/QtQuick -isystem /usr/include/qt6/QtQmlMeta -isystem /usr/include/qt6/QtQmlModels -isystem /usr/include/qt6/QtQmlWorkerScript -isystem /usr/include/qt6/QtOpenGL -isystem /usr/include/qt6/QtQuickControls2 - -CXX_FLAGS = -std=gnu++17 - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/link.txt b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/link.txt deleted file mode 100644 index c8729c3d..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/link.txt +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/c++ -Wl,--dependency-file=CMakeFiles/nearby_qml_tray_app.dir/link.d CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o -o nearby_qml_tray_app -Wl,-rpath,/home/lasan/.cache/bazel/_bazel_lasan/eab9f70275b204a945d17adc15bd41fd/execroot/_main/bazel-out/k8-fastbuild/bin/sharing/linux /usr/lib64/libQt6Widgets.so.6.9.3 /usr/lib64/libQt6QuickControls2.so.6.9.3 /home/lasan/.cache/bazel/_bazel_lasan/eab9f70275b204a945d17adc15bd41fd/execroot/_main/bazel-out/k8-fastbuild/bin/sharing/linux/libnearby_connections_service_linux_shared.so /usr/lib64/libQt6Quick.so.6.9.3 /usr/lib64/libQt6QmlMeta.so.6.9.3 /usr/lib64/libQt6QmlWorkerScript.so.6.9.3 /usr/lib64/libQt6OpenGL.so.6.9.3 /usr/lib64/libQt6Gui.so.6.9.3 /usr/lib64/libGLX.so /usr/lib64/libOpenGL.so /usr/lib64/libQt6QmlModels.so.6.9.3 /usr/lib64/libQt6Qml.so.6.9.3 /usr/lib64/libQt6Network.so.6.9.3 /usr/lib64/libQt6Core.so.6.9.3 diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/progress.make b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/progress.make deleted file mode 100644 index 4b14cc1d..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app.dir/progress.make +++ /dev/null @@ -1,4 +0,0 @@ -CMAKE_PROGRESS_1 = 2 -CMAKE_PROGRESS_2 = 3 -CMAKE_PROGRESS_3 = 4 - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/DependInfo.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/DependInfo.cmake deleted file mode 100644 index 29b95a51..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/DependInfo.cmake +++ /dev/null @@ -1,22 +0,0 @@ - -# Consider dependencies only in project. -set(CMAKE_DEPENDS_IN_PROJECT_ONLY OFF) - -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - ) - -# The set of dependency files which are needed: -set(CMAKE_DEPENDS_DEPENDENCY_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_LINKED_INFO_FILES - ) - -# Targets to which this target links which contain Fortran sources. -set(CMAKE_Fortran_TARGET_FORWARD_LINKED_INFO_FILES - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build.make b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build.make deleted file mode 100644 index a3f05693..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build.make +++ /dev/null @@ -1,94 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.31 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug - -# Utility rule file for nearby_qml_tray_app_qmlimportscan. - -# Include any custom commands dependencies for this target. -include CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/compiler_depend.make - -# Include the progress variables for this target. -include CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/progress.make - -CMakeFiles/nearby_qml_tray_app_qmlimportscan: .qt/qml_imports/nearby_qml_tray_app_build.cmake - -.qt/qml_imports/nearby_qml_tray_app_build.cmake: /usr/lib64/qt6/libexec/qmlimportscanner - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --blue --bold --progress-dir=/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Running qmlimportscanner for nearby_qml_tray_app" - cd /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app && /usr/lib64/qt6/libexec/qmlimportscanner @/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/.qt/qml_imports/nearby_qml_tray_app_build.rsp - -CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/codegen: -.PHONY : CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/codegen - -nearby_qml_tray_app_qmlimportscan: .qt/qml_imports/nearby_qml_tray_app_build.cmake -nearby_qml_tray_app_qmlimportscan: CMakeFiles/nearby_qml_tray_app_qmlimportscan -nearby_qml_tray_app_qmlimportscan: CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build.make -.PHONY : nearby_qml_tray_app_qmlimportscan - -# Rule to build all files generated by this target. -CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build: nearby_qml_tray_app_qmlimportscan -.PHONY : CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build - -CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/cmake_clean.cmake -.PHONY : CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/clean - -CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/depend: - cd /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/DependInfo.cmake "--color=$(COLOR)" -.PHONY : CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/depend - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/cmake_clean.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/cmake_clean.cmake deleted file mode 100644 index 70008a17..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/cmake_clean.cmake +++ /dev/null @@ -1,9 +0,0 @@ -file(REMOVE_RECURSE - ".qt/qml_imports/nearby_qml_tray_app_build.cmake" - "CMakeFiles/nearby_qml_tray_app_qmlimportscan" -) - -# Per-language clean rules from dependency scanning. -foreach(lang ) - include(CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/compiler_depend.make b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/compiler_depend.make deleted file mode 100644 index 45eacc01..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/compiler_depend.make +++ /dev/null @@ -1,2 +0,0 @@ -# Empty custom commands generated dependencies file for nearby_qml_tray_app_qmlimportscan. -# This may be replaced when dependencies are built. diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/compiler_depend.ts b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/compiler_depend.ts deleted file mode 100644 index 230537df..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/compiler_depend.ts +++ /dev/null @@ -1,2 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Timestamp file for custom commands dependencies management for nearby_qml_tray_app_qmlimportscan. diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/progress.make b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/progress.make deleted file mode 100644 index b9ea7bd5..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/progress.make +++ /dev/null @@ -1,2 +0,0 @@ -CMAKE_PROGRESS_1 = 5 - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/progress.marks b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/progress.marks deleted file mode 100644 index 7ed6ff82..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles/progress.marks +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/Makefile b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/Makefile deleted file mode 100644 index f7c2fe18..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/Makefile +++ /dev/null @@ -1,236 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.31 - -# Default target executed when no arguments are given to make. -default_target: all -.PHONY : default_target - -# Allow only one "make -f Makefile2" at a time, but pass parallelism. -.NOTPARALLEL: - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - -# Disable VCS-based implicit rules. -% : %,v - -# Disable VCS-based implicit rules. -% : RCS/% - -# Disable VCS-based implicit rules. -% : RCS/%,v - -# Disable VCS-based implicit rules. -% : SCCS/s.% - -# Disable VCS-based implicit rules. -% : s.% - -.SUFFIXES: .hpux_make_needs_suffix_list - -# Command-line flag to silence nested $(MAKE). -$(VERBOSE)MAKESILENT = -s - -#Suppress display of executed commands. -$(VERBOSE).SILENT: - -# A target that is always out of date. -cmake_force: -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E rm -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug - -#============================================================================= -# Targets provided globally by CMake. - -# Special rule for the target edit_cache -edit_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake cache editor..." - /usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : edit_cache - -# Special rule for the target edit_cache -edit_cache/fast: edit_cache -.PHONY : edit_cache/fast - -# Special rule for the target rebuild_cache -rebuild_cache: - @$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --cyan "Running CMake to regenerate build system..." - /usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) -.PHONY : rebuild_cache - -# Special rule for the target rebuild_cache -rebuild_cache/fast: rebuild_cache -.PHONY : rebuild_cache/fast - -# The main all target -all: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug//CMakeFiles/progress.marks - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all - $(CMAKE_COMMAND) -E cmake_progress_start /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/CMakeFiles 0 -.PHONY : all - -# The main clean target -clean: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 clean -.PHONY : clean - -# The main clean target -clean/fast: clean -.PHONY : clean/fast - -# Prepare targets for installation. -preinstall: all - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall - -# Prepare targets for installation. -preinstall/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 preinstall -.PHONY : preinstall/fast - -# clear depends -depend: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 -.PHONY : depend - -#============================================================================= -# Target rules for targets named bazel_nearby_connections_service_linux - -# Build rule for target. -bazel_nearby_connections_service_linux: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 bazel_nearby_connections_service_linux -.PHONY : bazel_nearby_connections_service_linux - -# fast build rule for target. -bazel_nearby_connections_service_linux/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/bazel_nearby_connections_service_linux.dir/build.make CMakeFiles/bazel_nearby_connections_service_linux.dir/build -.PHONY : bazel_nearby_connections_service_linux/fast - -#============================================================================= -# Target rules for targets named nearby_qml_tray_app - -# Build rule for target. -nearby_qml_tray_app: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 nearby_qml_tray_app -.PHONY : nearby_qml_tray_app - -# fast build rule for target. -nearby_qml_tray_app/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app.dir/build.make CMakeFiles/nearby_qml_tray_app.dir/build -.PHONY : nearby_qml_tray_app/fast - -#============================================================================= -# Target rules for targets named nearby_qml_tray_app_qmlimportscan - -# Build rule for target. -nearby_qml_tray_app_qmlimportscan: cmake_check_build_system - $(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 nearby_qml_tray_app_qmlimportscan -.PHONY : nearby_qml_tray_app_qmlimportscan - -# fast build rule for target. -nearby_qml_tray_app_qmlimportscan/fast: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build.make CMakeFiles/nearby_qml_tray_app_qmlimportscan.dir/build -.PHONY : nearby_qml_tray_app_qmlimportscan/fast - -main.o: main.cpp.o -.PHONY : main.o - -# target to build an object file -main.cpp.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app.dir/build.make CMakeFiles/nearby_qml_tray_app.dir/main.cpp.o -.PHONY : main.cpp.o - -main.i: main.cpp.i -.PHONY : main.i - -# target to preprocess a source file -main.cpp.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app.dir/build.make CMakeFiles/nearby_qml_tray_app.dir/main.cpp.i -.PHONY : main.cpp.i - -main.s: main.cpp.s -.PHONY : main.s - -# target to generate assembly for a file -main.cpp.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app.dir/build.make CMakeFiles/nearby_qml_tray_app.dir/main.cpp.s -.PHONY : main.cpp.s - -nearby_tray_controller.o: nearby_tray_controller.cc.o -.PHONY : nearby_tray_controller.o - -# target to build an object file -nearby_tray_controller.cc.o: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app.dir/build.make CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.o -.PHONY : nearby_tray_controller.cc.o - -nearby_tray_controller.i: nearby_tray_controller.cc.i -.PHONY : nearby_tray_controller.i - -# target to preprocess a source file -nearby_tray_controller.cc.i: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app.dir/build.make CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.i -.PHONY : nearby_tray_controller.cc.i - -nearby_tray_controller.s: nearby_tray_controller.cc.s -.PHONY : nearby_tray_controller.s - -# target to generate assembly for a file -nearby_tray_controller.cc.s: - $(MAKE) $(MAKESILENT) -f CMakeFiles/nearby_qml_tray_app.dir/build.make CMakeFiles/nearby_qml_tray_app.dir/nearby_tray_controller.cc.s -.PHONY : nearby_tray_controller.cc.s - -# Help Target -help: - @echo "The following are some of the valid targets for this Makefile:" - @echo "... all (the default if no target is provided)" - @echo "... clean" - @echo "... depend" - @echo "... edit_cache" - @echo "... rebuild_cache" - @echo "... bazel_nearby_connections_service_linux" - @echo "... nearby_qml_tray_app_qmlimportscan" - @echo "... nearby_qml_tray_app" - @echo "... main.o" - @echo "... main.i" - @echo "... main.s" - @echo "... nearby_tray_controller.o" - @echo "... nearby_tray_controller.i" - @echo "... nearby_tray_controller.s" -.PHONY : help - - - -#============================================================================= -# Special targets to cleanup operation of make. - -# Special rule to run CMake to check the build system integrity. -# No rule that depends on this can have commands that come from listfiles -# because they might be regenerated. -cmake_check_build_system: - $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 -.PHONY : cmake_check_build_system - diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/cmake_install.cmake b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/cmake_install.cmake deleted file mode 100644 index 39356d81..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/cmake_install.cmake +++ /dev/null @@ -1,66 +0,0 @@ -# Install script for directory: /home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/usr/local") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Install shared libraries without execute permission? -if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) - set(CMAKE_INSTALL_SO_NO_EXE "0") -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set path to fallback-tool for dependency-resolution. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/usr/bin/objdump") -endif() - -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") -if(CMAKE_INSTALL_LOCAL_ONLY) - file(WRITE "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/install_local_manifest.txt" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") -endif() -if(CMAKE_INSTALL_COMPONENT) - if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") - else() - string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") - unset(CMAKE_INST_COMP_HASH) - endif() -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - file(WRITE "/home/lasan/Dev/nearby_latest/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") -endif() diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/compiled_proto b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/compiled_proto deleted file mode 120000 index 567ce57a..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/compiled_proto +++ /dev/null @@ -1 +0,0 @@ -/home/lasan/Dev/nearby_latest/compiled_proto \ No newline at end of file diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/connections b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/connections deleted file mode 120000 index bb9b2025..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/connections +++ /dev/null @@ -1 +0,0 @@ -/home/lasan/Dev/nearby_latest/connections \ No newline at end of file diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/internal b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/internal deleted file mode 120000 index e225ada0..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/internal +++ /dev/null @@ -1 +0,0 @@ -/home/lasan/Dev/nearby_latest/internal \ No newline at end of file diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/proto b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/proto deleted file mode 120000 index 23707aa3..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/proto +++ /dev/null @@ -1 +0,0 @@ -/home/lasan/Dev/nearby_latest/proto \ No newline at end of file diff --git a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/sharing b/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/sharing deleted file mode 120000 index 31458859..00000000 --- a/sharing/linux/qml_tray_app/sharing/linux/qml_tray_app/cmake-build-debug/nearby_include_root/sharing +++ /dev/null @@ -1 +0,0 @@ -/home/lasan/Dev/nearby_latest/sharing \ No newline at end of file