mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
refractored file share tray app. improved UI. UI looks better but is probably broken. AI commit
This commit is contained in:
@@ -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 {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
@@ -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()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,11 @@
|
||||
<RCC>
|
||||
<qresource prefix="/qml">
|
||||
<file>FileShareTray.qml</file>
|
||||
<file>components/AppHeader.qml</file>
|
||||
<file>components/SideBar.qml</file>
|
||||
<file>components/AnimatedBlob.qml</file>
|
||||
<file>components/DeviceCard.qml</file>
|
||||
<file>components/TransferCard.qml</file>
|
||||
</qresource>
|
||||
<qresource prefix="/icons">
|
||||
<file>tray_icon.png</file>
|
||||
|
||||
-70
@@ -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)
|
||||
-2
@@ -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)
|
||||
-20
@@ -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()
|
||||
-9
@@ -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
|
||||
-30
@@ -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;")
|
||||
|
||||
-9
@@ -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
|
||||
-1656
File diff suppressed because it is too large
Load Diff
-105
@@ -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")
|
||||
|
||||
|
||||
|
||||
BIN
Binary file not shown.
-15
@@ -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)
|
||||
-919
@@ -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;
|
||||
}
|
||||
BIN
Binary file not shown.
-357
@@ -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
|
||||
...
|
||||
-16
@@ -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})
|
||||
-5
@@ -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
|
||||
-822
@@ -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"
|
||||
)
|
||||
-190
@@ -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
|
||||
|
||||
-5
@@ -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
|
||||
-22
@@ -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 "")
|
||||
-94
@@ -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
|
||||
|
||||
-9
@@ -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()
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
# Empty custom commands generated dependencies file for bazel_nearby_connections_service_linux.
|
||||
# This may be replaced when dependencies are built.
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for custom commands dependencies management for bazel_nearby_connections_service_linux.
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
CMAKE_PROGRESS_1 = 1
|
||||
|
||||
-1
@@ -1 +0,0 @@
|
||||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file
|
||||
-25
@@ -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 "")
|
||||
-144
@@ -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
|
||||
|
||||
-14
@@ -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()
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
# Empty compiler generated dependencies file for nearby_qml_tray_app.
|
||||
# This may be replaced when dependencies are built.
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for compiler generated dependencies management for nearby_qml_tray_app.
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
# Empty dependencies file for nearby_qml_tray_app.
|
||||
# This may be replaced when dependencies are built.
|
||||
-10
@@ -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
|
||||
|
||||
-1
@@ -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
|
||||
-4
@@ -1,4 +0,0 @@
|
||||
CMAKE_PROGRESS_1 = 2
|
||||
CMAKE_PROGRESS_2 = 3
|
||||
CMAKE_PROGRESS_3 = 4
|
||||
|
||||
-22
@@ -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 "")
|
||||
-94
@@ -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
|
||||
|
||||
-9
@@ -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()
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
# Empty custom commands generated dependencies file for nearby_qml_tray_app_qmlimportscan.
|
||||
# This may be replaced when dependencies are built.
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Timestamp file for custom commands dependencies management for nearby_qml_tray_app_qmlimportscan.
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
CMAKE_PROGRESS_1 = 5
|
||||
|
||||
-1
@@ -1 +0,0 @@
|
||||
5
|
||||
@@ -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
|
||||
|
||||
-66
@@ -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()
|
||||
-1
@@ -1 +0,0 @@
|
||||
/home/lasan/Dev/nearby_latest/compiled_proto
|
||||
-1
@@ -1 +0,0 @@
|
||||
/home/lasan/Dev/nearby_latest/connections
|
||||
-1
@@ -1 +0,0 @@
|
||||
/home/lasan/Dev/nearby_latest/internal
|
||||
-1
@@ -1 +0,0 @@
|
||||
/home/lasan/Dev/nearby_latest/proto
|
||||
-1
@@ -1 +0,0 @@
|
||||
/home/lasan/Dev/nearby_latest/sharing
|
||||
Reference in New Issue
Block a user