@@ -77,7 +77,7 @@ add_custom_target(InterfacesIDE SOURCES | |||
# 修改 qt_add_executable 部分 | |||
qt_add_executable(AuseftDDSPlugTest | |||
main.cpp | |||
PluginLoader.cpp | |||
PluginLoader.cxx | |||
PluginLoader.hpp | |||
MANUAL_FINALIZATION | |||
) | |||
@@ -1,6 +1,6 @@ | |||
<?xml version="1.0" encoding="UTF-8"?> | |||
<!DOCTYPE QtCreatorProject> | |||
<!-- Written by QtCreator 15.0.0, 2025-01-12T15:12:45. --> | |||
<!-- Written by QtCreator 15.0.0, 2025-01-12T17:18:02. --> | |||
<qtcreator> | |||
<data> | |||
<variable>EnvironmentId</variable> | |||
@@ -254,12 +254,14 @@ | |||
<valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/> | |||
<value type="bool" key="PE.EnvironmentAspect.PrintOnRun">false</value> | |||
<value type="QString" key="PerfRecordArgsId">-e cpu-cycles --call-graph "dwarf,4096" -F 250</value> | |||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value> | |||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.CustomExecutableRunConfiguration</value> | |||
<value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey"></value> | |||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">AuseftDDSPlugTest</value> | |||
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeRunConfiguration.</value> | |||
<value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">AuseftDDSPlugTest</value> | |||
<value type="bool" key="ProjectExplorer.RunConfiguration.Customized">false</value> | |||
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value> | |||
<value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value> | |||
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value> | |||
<value type="QString" key="RunConfiguration.WorkingDirectory.default">D:/FastDDSTest/AuseftDDSPlugins/build/Desktop_Qt_6_8_1_MSVC2022_64bit-Debug/bin</value> | |||
</valuemap> | |||
<value type="qlonglong" key="ProjectExplorer.Target.RunConfigurationCount">1</value> | |||
</valuemap> | |||
@@ -1,5 +1,6 @@ | |||
import QtQuick | |||
import QtQuick.Controls | |||
import QtQuick.Dialogs | |||
import QtQuick.Layouts | |||
Window { | |||
@@ -14,42 +15,31 @@ Window { | |||
anchors.centerIn: parent | |||
spacing: 20 | |||
// Sample Machine Plugin | |||
// Load Plugin Button | |||
Button { | |||
text: "Load Sample Machine Plugin" | |||
onClicked: { | |||
currentPlugin = pluginLoader.loadPlugin("/home/suzj/AuseftDDSPlugins/build/bin/AQTSampleMachinePlug.so") | |||
if (currentPlugin) { | |||
if (currentPlugin.init()) { | |||
statusText.text = "Sample Machine Plugin loaded" | |||
} else { | |||
statusText.text = "Failed to initialize Sample Machine Plugin" | |||
} | |||
} | |||
} | |||
text: "Load Plugin" | |||
onClicked: fileDialog.open() | |||
} | |||
// Package Machine Plugin | |||
Button { | |||
text: "Load Package Machine Plugin" | |||
onClicked: { | |||
currentPlugin = pluginLoader.loadPlugin("/home/suzj/AuseftDDSPlugins/build/bin/AQTPackageMachinePlug.so") | |||
if (currentPlugin) { | |||
if (currentPlugin.init()) { | |||
statusText.text = "Package Machine Plugin loaded" | |||
} else { | |||
statusText.text = "Failed to initialize Package Machine Plugin" | |||
} | |||
} | |||
} | |||
} | |||
// Configure Plugin Button | |||
// Button { | |||
// text: "Configure Plugin" | |||
// enabled: currentPlugin !== null | |||
// onClicked: { | |||
// if (currentPlugin) { | |||
// currentPlugin.config() | |||
// } else { | |||
// statusText.text = "No plugin loaded" | |||
// } | |||
// } | |||
// } | |||
// Send Data Button | |||
Button { | |||
text: "Send Data" | |||
onClicked: { | |||
if (currentPlugin) { | |||
currentPlugin.publishOnce() // 调用当前插件的 publishOnce 方法 | |||
currentPlugin.publishOnce() | |||
} else { | |||
statusText.text = "No plugin loaded" | |||
} | |||
@@ -64,6 +54,25 @@ Window { | |||
} | |||
} | |||
FileDialog { | |||
id: fileDialog | |||
title: "选择插件文件" | |||
nameFilters: ["插件文件 (*.dll *.so)"] | |||
onAccepted: { | |||
var filePath = decodeURIComponent(selectedFile) | |||
currentPlugin = pluginLoader.loadPlugin(filePath) | |||
if (currentPlugin) { | |||
if (currentPlugin.init()) { | |||
statusText.text = "Plugin loaded: " + filePath | |||
} else { | |||
statusText.text = "Failed to initialize plugin" | |||
} | |||
} | |||
} | |||
} | |||
// 处理插件加载错误 | |||
Connections { | |||
target: pluginLoader | |||
@@ -1,75 +0,0 @@ | |||
#include "PluginLoader.hpp" | |||
#include <QDebug> | |||
#include <QDir> | |||
#include <QFileInfo> | |||
#include <QCoreApplication> | |||
#include "interfaces/plugin_interface.hpp" | |||
PluginLoader::PluginLoader(QObject *parent) | |||
: QObject(parent) | |||
{ | |||
} | |||
QObject* PluginLoader::loadPlugin(const QString& path) | |||
{ | |||
if (m_loader.isLoaded()) { | |||
m_loader.unload(); | |||
} | |||
// 添加当前工作目录的调试输出 | |||
qDebug() << "当前工作:" << path; | |||
// 处理相对路径和绝对路径 | |||
QString absolutePath = path; | |||
// 确保路径以 "/" 开头 | |||
if (!absolutePath.startsWith('/')) { | |||
absolutePath = "/" + absolutePath; | |||
} | |||
qDebug() << "原始路径:" << path; | |||
qDebug() << "处理后的路径:" << absolutePath; | |||
// 检查文件是否存在 | |||
if (!QFileInfo::exists(absolutePath)) { | |||
qDebug() << "插件文件不存在:" << absolutePath; | |||
return nullptr; | |||
} | |||
m_loader.setFileName(absolutePath); // 使用处理后的绝对路径 | |||
if (!m_loader.load()) { | |||
qDebug() << "插件加载失败:" << m_loader.errorString()<<path; | |||
qDebug() << "库加载错误代码:" << m_loader.loadHints(); | |||
qDebug() << "库搜索路径:" << QCoreApplication::libraryPaths(); | |||
return nullptr; | |||
} | |||
QObject* plugin = m_loader.instance(); | |||
if (!plugin) { | |||
qDebug() << "无法获取插件实例"; | |||
return nullptr; | |||
} | |||
AuseftDDSPluginInterface* pluginInterface = qobject_cast<AuseftDDSPluginInterface*>(plugin); | |||
if (!pluginInterface) { | |||
qDebug() << "插件不是有效的 AuseftDDSPluginInterface"; | |||
return nullptr; | |||
} | |||
// 连接插件的信号到加载器 | |||
connect(plugin, SIGNAL(messagePublished(QString,int)), | |||
this, SIGNAL(messagePublished(QString,int))); | |||
return plugin; | |||
} | |||
bool PluginLoader::unloadPlugin() | |||
{ | |||
return m_loader.unload(); | |||
} | |||
QString PluginLoader::errorString() const | |||
{ | |||
return m_loader.errorString(); | |||
} |
@@ -1,4 +1,9 @@ | |||
#include "PluginLoader.hpp" | |||
#include <QDebug> | |||
#include <QDir> | |||
#include <QFileInfo> | |||
#include <QCoreApplication> | |||
#include "interfaces/plugin_interface.hpp" | |||
PluginLoader::PluginLoader(QObject *parent) | |||
: QObject(parent) | |||
@@ -11,8 +16,63 @@ QObject* PluginLoader::loadPlugin(const QString& path) | |||
m_loader.unload(); | |||
} | |||
m_loader.setFileName(path); | |||
return m_loader.instance(); | |||
// 处理文件路径 | |||
QString cleanPath = path; | |||
if (cleanPath.startsWith("file:///")) { | |||
cleanPath = cleanPath.mid(8); // 移除 "file:///" | |||
} | |||
// 确保使用正确的路径分隔符 | |||
cleanPath = QDir::toNativeSeparators(cleanPath); | |||
qDebug() << "处理后的路径:" << cleanPath; | |||
// 检查文件是否存在 | |||
QFileInfo fileInfo(cleanPath); | |||
if (!fileInfo.exists()) { | |||
qDebug() << "插件文件不存在:" << cleanPath; | |||
return nullptr; | |||
} | |||
// 获取插件所在目录的绝对路径 | |||
QString pluginDir = fileInfo.absolutePath(); | |||
// 添加插件目录到库搜索路径 | |||
if (!QCoreApplication::libraryPaths().contains(pluginDir)) { | |||
QCoreApplication::addLibraryPath(pluginDir); | |||
qDebug() << "添加库搜索路径:" << pluginDir; | |||
} | |||
// 使用绝对路径加载插件 | |||
QString absolutePath = fileInfo.absoluteFilePath(); | |||
m_loader.setFileName(absolutePath); | |||
qDebug() << "尝试加载插件:" << absolutePath; | |||
qDebug() << "当前库搜索路径:" << QCoreApplication::libraryPaths(); | |||
if (!m_loader.load()) { | |||
qDebug() << "插件加载失败:" << m_loader.errorString(); | |||
qDebug() << "完整路径:" << absolutePath; | |||
return nullptr; | |||
} | |||
QObject* plugin = m_loader.instance(); | |||
if (!plugin) { | |||
qDebug() << "无法获取插件实例"; | |||
return nullptr; | |||
} | |||
AuseftDDSPluginInterface* pluginInterface = qobject_cast<AuseftDDSPluginInterface*>(plugin); | |||
if (!pluginInterface) { | |||
qDebug() << "插件不是有效的 AuseftDDSPluginInterface"; | |||
return nullptr; | |||
} | |||
// 连接插件的信号到加载器 | |||
connect(plugin, SIGNAL(messagePublished(QString,int)), | |||
this, SIGNAL(messagePublished(QString,int))); | |||
return plugin; | |||
} | |||
bool PluginLoader::unloadPlugin() | |||
@@ -1,312 +0,0 @@ | |||
{ | |||
"configurations" : | |||
[ | |||
{ | |||
"directories" : | |||
[ | |||
{ | |||
"build" : ".", | |||
"childIndexes" : | |||
[ | |||
1, | |||
2 | |||
], | |||
"hasInstallRule" : true, | |||
"jsonFile" : "directory-.-Debug-ae1e59abaa0594b3b77f.json", | |||
"minimumCMakeVersion" : | |||
{ | |||
"string" : "3.16" | |||
}, | |||
"projectIndex" : 0, | |||
"source" : ".", | |||
"targetIndexes" : | |||
[ | |||
6, | |||
7, | |||
8, | |||
9, | |||
10, | |||
11, | |||
12, | |||
13, | |||
14, | |||
15, | |||
16, | |||
17, | |||
18, | |||
19, | |||
20, | |||
21 | |||
] | |||
}, | |||
{ | |||
"build" : "BEFORE", | |||
"hasInstallRule" : true, | |||
"jsonFile" : "directory-BEFORE-Debug-5573ca9910698f7c31fe.json", | |||
"minimumCMakeVersion" : | |||
{ | |||
"string" : "3.16" | |||
}, | |||
"parentIndex" : 0, | |||
"projectIndex" : 1, | |||
"source" : "plugins/AQTSampleMachinePlug", | |||
"targetIndexes" : | |||
[ | |||
3, | |||
4, | |||
5 | |||
] | |||
}, | |||
{ | |||
"build" : "plugins/AQTPackageMachinePlug", | |||
"hasInstallRule" : true, | |||
"jsonFile" : "directory-plugins.AQTPackageMachinePlug-Debug-682b328367b31e88b71a.json", | |||
"minimumCMakeVersion" : | |||
{ | |||
"string" : "3.16" | |||
}, | |||
"parentIndex" : 0, | |||
"projectIndex" : 2, | |||
"source" : "plugins/AQTPackageMachinePlug", | |||
"targetIndexes" : | |||
[ | |||
0, | |||
1, | |||
2 | |||
] | |||
} | |||
], | |||
"name" : "Debug", | |||
"projects" : | |||
[ | |||
{ | |||
"childIndexes" : | |||
[ | |||
1, | |||
2 | |||
], | |||
"directoryIndexes" : | |||
[ | |||
0 | |||
], | |||
"name" : "AuseftDDSPlugTest", | |||
"targetIndexes" : | |||
[ | |||
6, | |||
7, | |||
8, | |||
9, | |||
10, | |||
11, | |||
12, | |||
13, | |||
14, | |||
15, | |||
16, | |||
17, | |||
18, | |||
19, | |||
20, | |||
21 | |||
] | |||
}, | |||
{ | |||
"directoryIndexes" : | |||
[ | |||
1 | |||
], | |||
"name" : "AQTSampleMachinePlug", | |||
"parentIndex" : 0, | |||
"targetIndexes" : | |||
[ | |||
3, | |||
4, | |||
5 | |||
] | |||
}, | |||
{ | |||
"directoryIndexes" : | |||
[ | |||
2 | |||
], | |||
"name" : "AQTPackageMachinePlug", | |||
"parentIndex" : 0, | |||
"targetIndexes" : | |||
[ | |||
0, | |||
1, | |||
2 | |||
] | |||
} | |||
], | |||
"targets" : | |||
[ | |||
{ | |||
"directoryIndex" : 2, | |||
"id" : "AQTPackageMachinePlug::@0c403a209dee21a7c072", | |||
"jsonFile" : "target-AQTPackageMachinePlug-Debug-ecf3abdf18ea0165b048.json", | |||
"name" : "AQTPackageMachinePlug", | |||
"projectIndex" : 2 | |||
}, | |||
{ | |||
"directoryIndex" : 2, | |||
"id" : "AQTPackageMachinePlug_autogen::@0c403a209dee21a7c072", | |||
"jsonFile" : "target-AQTPackageMachinePlug_autogen-Debug-5a96c3c6fbe69ec5bec2.json", | |||
"name" : "AQTPackageMachinePlug_autogen", | |||
"projectIndex" : 2 | |||
}, | |||
{ | |||
"directoryIndex" : 2, | |||
"id" : "AQTPackageMachinePlug_autogen_timestamp_deps::@0c403a209dee21a7c072", | |||
"jsonFile" : "target-AQTPackageMachinePlug_autogen_timestamp_deps-Debug-28200b22f98a04d1d4b0.json", | |||
"name" : "AQTPackageMachinePlug_autogen_timestamp_deps", | |||
"projectIndex" : 2 | |||
}, | |||
{ | |||
"directoryIndex" : 1, | |||
"id" : "AQTSampleMachinePlug::@c2faa55591805e60c9f2", | |||
"jsonFile" : "target-AQTSampleMachinePlug-Debug-680c718fc0e26852e71c.json", | |||
"name" : "AQTSampleMachinePlug", | |||
"projectIndex" : 1 | |||
}, | |||
{ | |||
"directoryIndex" : 1, | |||
"id" : "AQTSampleMachinePlug_autogen::@c2faa55591805e60c9f2", | |||
"jsonFile" : "target-AQTSampleMachinePlug_autogen-Debug-96f8d2e3fd10ef45bee2.json", | |||
"name" : "AQTSampleMachinePlug_autogen", | |||
"projectIndex" : 1 | |||
}, | |||
{ | |||
"directoryIndex" : 1, | |||
"id" : "AQTSampleMachinePlug_autogen_timestamp_deps::@c2faa55591805e60c9f2", | |||
"jsonFile" : "target-AQTSampleMachinePlug_autogen_timestamp_deps-Debug-acbd9a9c5d20c6f062c9.json", | |||
"name" : "AQTSampleMachinePlug_autogen_timestamp_deps", | |||
"projectIndex" : 1 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest-Debug-615908b30827faa1f659.json", | |||
"name" : "AuseftDDSPlugTest", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_autogen::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_autogen-Debug-6fc1b9414ee7a12fa8bc.json", | |||
"name" : "AuseftDDSPlugTest_autogen", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_autogen_timestamp_deps-Debug-f6a8a676fcabd4cdb860.json", | |||
"name" : "AuseftDDSPlugTest_autogen_timestamp_deps", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_qmlimportscan::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_qmlimportscan-Debug-fe8687bcc88fd37f6ba4.json", | |||
"name" : "AuseftDDSPlugTest_qmlimportscan", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_qmllint::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_qmllint-Debug-c8beafcd49039e05b37a.json", | |||
"name" : "AuseftDDSPlugTest_qmllint", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_qmllint_json::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_qmllint_json-Debug-7f7b5b58bac26b48318f.json", | |||
"name" : "AuseftDDSPlugTest_qmllint_json", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_qmllint_module::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_qmllint_module-Debug-7f62529908226fdb7c3e.json", | |||
"name" : "AuseftDDSPlugTest_qmllint_module", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_qmltyperegistration::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_qmltyperegistration-Debug-6589009d1be82f6ae793.json", | |||
"name" : "AuseftDDSPlugTest_qmltyperegistration", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_tooling::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_tooling-Debug-e89d6090fd713b55e098.json", | |||
"name" : "AuseftDDSPlugTest_tooling", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "InterfacesIDE::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-InterfacesIDE-Debug-176c347e815832c58d9d.json", | |||
"name" : "InterfacesIDE", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "all_aotstats::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-all_aotstats-Debug-afaeea305b1ee25d9b72.json", | |||
"name" : "all_aotstats", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "all_qmllint::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-all_qmllint-Debug-8b702b1d28d53e5f9dfa.json", | |||
"name" : "all_qmllint", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "all_qmllint_json::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-all_qmllint_json-Debug-fb8e51cd207c9aa89328.json", | |||
"name" : "all_qmllint_json", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "all_qmllint_module::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-all_qmllint_module-Debug-92a00dc1c016ba8ede21.json", | |||
"name" : "all_qmllint_module", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-all_qmltyperegistrations-Debug-c24837fa208f0079949c.json", | |||
"name" : "all_qmltyperegistrations", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "module_AuseftDDSPlugTest_aotstats_target::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-module_AuseftDDSPlugTest_aotstats_target-Debug-f6d1fb19029b5cc42b52.json", | |||
"name" : "module_AuseftDDSPlugTest_aotstats_target", | |||
"projectIndex" : 0 | |||
} | |||
] | |||
} | |||
], | |||
"kind" : "codemodel", | |||
"paths" : | |||
{ | |||
"build" : "/home/suzj/AuseftDDSPlugins/build", | |||
"source" : "/home/suzj/AuseftDDSPlugins" | |||
}, | |||
"version" : | |||
{ | |||
"major" : 2, | |||
"minor" : 7 | |||
} | |||
} |
@@ -1,45 +0,0 @@ | |||
{ | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"install" | |||
], | |||
"files" : | |||
[ | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 107, | |||
"parent" : 0 | |||
} | |||
] | |||
}, | |||
"installers" : | |||
[ | |||
{ | |||
"backtrace" : 1, | |||
"component" : "Unspecified", | |||
"destination" : "bin", | |||
"paths" : | |||
[ | |||
"bin/AuseftDDSPlugTest" | |||
], | |||
"targetId" : "AuseftDDSPlugTest::@6890427a1f51a3e7e1df", | |||
"targetIndex" : 6, | |||
"type" : "target" | |||
} | |||
], | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
} | |||
} |
@@ -1,60 +0,0 @@ | |||
{ | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"install" | |||
], | |||
"files" : | |||
[ | |||
"plugins/AQTSampleMachinePlug/CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 139, | |||
"parent" : 0 | |||
} | |||
] | |||
}, | |||
"installers" : | |||
[ | |||
{ | |||
"backtrace" : 1, | |||
"component" : "Unspecified", | |||
"destination" : "bin", | |||
"paths" : | |||
[ | |||
"bin/AQTSampleMachinePlug.so.1.0.0", | |||
"bin/AQTSampleMachinePlug.so.1" | |||
], | |||
"targetId" : "AQTSampleMachinePlug::@c2faa55591805e60c9f2", | |||
"targetIndex" : 3, | |||
"targetInstallNamelink" : "skip", | |||
"type" : "target" | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"component" : "Unspecified", | |||
"destination" : "bin", | |||
"paths" : | |||
[ | |||
"bin/AQTSampleMachinePlug.so" | |||
], | |||
"targetId" : "AQTSampleMachinePlug::@c2faa55591805e60c9f2", | |||
"targetIndex" : 3, | |||
"targetInstallNamelink" : "only", | |||
"type" : "target" | |||
} | |||
], | |||
"paths" : | |||
{ | |||
"build" : "BEFORE", | |||
"source" : "plugins/AQTSampleMachinePlug" | |||
} | |||
} |
@@ -1,45 +0,0 @@ | |||
{ | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"install" | |||
], | |||
"files" : | |||
[ | |||
"plugins/AQTPackageMachinePlug/CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 104, | |||
"parent" : 0 | |||
} | |||
] | |||
}, | |||
"installers" : | |||
[ | |||
{ | |||
"backtrace" : 1, | |||
"component" : "Unspecified", | |||
"destination" : "bin", | |||
"paths" : | |||
[ | |||
"bin/AQTPackageMachinePlug.so" | |||
], | |||
"targetId" : "AQTPackageMachinePlug::@0c403a209dee21a7c072", | |||
"targetIndex" : 0, | |||
"type" : "target" | |||
} | |||
], | |||
"paths" : | |||
{ | |||
"build" : "plugins/AQTPackageMachinePlug", | |||
"source" : "plugins/AQTPackageMachinePlug" | |||
} | |||
} |
@@ -1,89 +0,0 @@ | |||
{ | |||
"cmake" : | |||
{ | |||
"generator" : | |||
{ | |||
"multiConfig" : false, | |||
"name" : "Unix Makefiles" | |||
}, | |||
"paths" : | |||
{ | |||
"cmake" : "/home/suzj/Qt/Tools/CMake/bin/cmake", | |||
"cpack" : "/home/suzj/Qt/Tools/CMake/bin/cpack", | |||
"ctest" : "/home/suzj/Qt/Tools/CMake/bin/ctest", | |||
"root" : "/home/suzj/Qt/Tools/CMake/share/cmake-3.29" | |||
}, | |||
"version" : | |||
{ | |||
"isDirty" : false, | |||
"major" : 3, | |||
"minor" : 29, | |||
"patch" : 3, | |||
"string" : "3.29.3", | |||
"suffix" : "" | |||
} | |||
}, | |||
"objects" : | |||
[ | |||
{ | |||
"jsonFile" : "codemodel-v2-a22e5081e3bc50d16130.json", | |||
"kind" : "codemodel", | |||
"version" : | |||
{ | |||
"major" : 2, | |||
"minor" : 7 | |||
} | |||
}, | |||
{ | |||
"jsonFile" : "cache-v2-35005c16fa33fa275763.json", | |||
"kind" : "cache", | |||
"version" : | |||
{ | |||
"major" : 2, | |||
"minor" : 0 | |||
} | |||
}, | |||
{ | |||
"jsonFile" : "cmakeFiles-v1-2a860ef666034c9d9e24.json", | |||
"kind" : "cmakeFiles", | |||
"version" : | |||
{ | |||
"major" : 1, | |||
"minor" : 0 | |||
} | |||
} | |||
], | |||
"reply" : | |||
{ | |||
"cache-v2" : | |||
{ | |||
"jsonFile" : "cache-v2-35005c16fa33fa275763.json", | |||
"kind" : "cache", | |||
"version" : | |||
{ | |||
"major" : 2, | |||
"minor" : 0 | |||
} | |||
}, | |||
"cmakeFiles-v1" : | |||
{ | |||
"jsonFile" : "cmakeFiles-v1-2a860ef666034c9d9e24.json", | |||
"kind" : "cmakeFiles", | |||
"version" : | |||
{ | |||
"major" : 1, | |||
"minor" : 0 | |||
} | |||
}, | |||
"codemodel-v2" : | |||
{ | |||
"jsonFile" : "codemodel-v2-a22e5081e3bc50d16130.json", | |||
"kind" : "codemodel", | |||
"version" : | |||
{ | |||
"major" : 2, | |||
"minor" : 7 | |||
} | |||
} | |||
} | |||
} |
@@ -1,801 +0,0 @@ | |||
{ | |||
"artifacts" : | |||
[ | |||
{ | |||
"path" : "bin/AQTPackageMachinePlug.so" | |||
} | |||
], | |||
"backtrace" : 1, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_library", | |||
"install", | |||
"target_link_libraries", | |||
"set_target_properties", | |||
"include", | |||
"find_package", | |||
"find_dependency", | |||
"_qt_internal_find_qt_dependencies", | |||
"set_property", | |||
"_qt_internal_find_third_party_dependencies", | |||
"fastdds_load_targets", | |||
"target_compile_options", | |||
"target_compile_definitions", | |||
"include_directories", | |||
"target_include_directories" | |||
], | |||
"files" : | |||
[ | |||
"plugins/AQTPackageMachinePlug/CMakeLists.txt", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/Qt6Config.cmake", | |||
"CMakeLists.txt", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaTargets.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfig.cmake", | |||
"/home/suzj/Qt/Tools/CMake/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake", | |||
"/home/suzj/Qt/Tools/CMake/share/cmake-3.29/Modules/FindOpenGL.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", | |||
"/home/suzj/Qt/Tools/CMake/share/cmake-3.29/Modules/FindThreads.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/Qt6Dependencies.cmake", | |||
"/usr/local/share/fastdds/cmake/fastdds-shared-targets.cmake", | |||
"/usr/local/share/fastdds/cmake/fastdds-config.cmake" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 37, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 104, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 60, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"file" : 4 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 4, | |||
"line" : 43, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"file" : 3, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 3, | |||
"line" : 181, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"file" : 2, | |||
"parent" : 7 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 2, | |||
"line" : 55, | |||
"parent" : 8 | |||
}, | |||
{ | |||
"file" : 1, | |||
"parent" : 9 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 61, | |||
"parent" : 10 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 2, | |||
"line" : 43, | |||
"parent" : 8 | |||
}, | |||
{ | |||
"file" : 9, | |||
"parent" : 12 | |||
}, | |||
{ | |||
"command" : 7, | |||
"file" : 9, | |||
"line" : 43, | |||
"parent" : 13 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 8, | |||
"line" : 143, | |||
"parent" : 14 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 7, | |||
"line" : 76, | |||
"parent" : 15 | |||
}, | |||
{ | |||
"file" : 6, | |||
"parent" : 16 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 6, | |||
"line" : 55, | |||
"parent" : 17 | |||
}, | |||
{ | |||
"file" : 5, | |||
"parent" : 18 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 5, | |||
"line" : 61, | |||
"parent" : 19 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 4, | |||
"line" : 39, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"file" : 10, | |||
"parent" : 21 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 10, | |||
"line" : 712, | |||
"parent" : 22 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 10, | |||
"line" : 710, | |||
"parent" : 22 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 8, | |||
"line" : 143, | |||
"parent" : 14 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 7, | |||
"line" : 76, | |||
"parent" : 25 | |||
}, | |||
{ | |||
"file" : 12, | |||
"parent" : 26 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 12, | |||
"line" : 58, | |||
"parent" : 27 | |||
}, | |||
{ | |||
"file" : 11, | |||
"parent" : 28 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 11, | |||
"line" : 61, | |||
"parent" : 29 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 3, | |||
"line" : 136, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"file" : 14, | |||
"parent" : 31 | |||
}, | |||
{ | |||
"command" : 9, | |||
"file" : 14, | |||
"line" : 34, | |||
"parent" : 32 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 8, | |||
"line" : 36, | |||
"parent" : 33 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 7, | |||
"line" : 76, | |||
"parent" : 34 | |||
}, | |||
{ | |||
"file" : 13, | |||
"parent" : 35 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 13, | |||
"line" : 238, | |||
"parent" : 36 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 0, | |||
"line" : 22, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"file" : 16, | |||
"parent" : 38 | |||
}, | |||
{ | |||
"command" : 10, | |||
"file" : 16, | |||
"line" : 112, | |||
"parent" : 39 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 16, | |||
"line" : 91, | |||
"parent" : 40 | |||
}, | |||
{ | |||
"file" : 15, | |||
"parent" : 41 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 15, | |||
"line" : 61, | |||
"parent" : 42 | |||
}, | |||
{ | |||
"command" : 11, | |||
"file" : 0, | |||
"line" : 92, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 12, | |||
"file" : 0, | |||
"line" : 43, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 13, | |||
"file" : 4, | |||
"line" : 50, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"command" : 14, | |||
"file" : 0, | |||
"line" : 55, | |||
"parent" : 0 | |||
} | |||
] | |||
}, | |||
"compileGroups" : | |||
[ | |||
{ | |||
"compileCommandFragments" : | |||
[ | |||
{ | |||
"fragment" : "-g -g -O0 -Wall -Wextra -std=gnu++17 -fPIC -fdiagnostics-color=always" | |||
}, | |||
{ | |||
"backtrace" : 44, | |||
"fragment" : "-g" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "-fPIC" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "-pthread" | |||
} | |||
], | |||
"defines" : | |||
[ | |||
{ | |||
"backtrace" : 45, | |||
"define" : "AQTPACKAGEMACHINEPLUG_LIBRARY" | |||
}, | |||
{ | |||
"define" : "AQTPackageMachinePlug_EXPORTS" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FASTCDR_DYN_LINK" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FASTDDS_DYN_LINK" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY=1" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY_VERSION_MAJOR=0" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY_VERSION_MINOR=7" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY_VERSION_PATCH=3" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_CORE_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_GUI_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_NETWORK_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_OPENGL_LIB" | |||
}, | |||
{ | |||
"backtrace" : 45, | |||
"define" : "QT_PLUGIN" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLINTEGRATION_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLMETA_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLMODELS_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLWORKERSCRIPT_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QML_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QUICK_LIB" | |||
} | |||
], | |||
"includes" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"path" : "/home/suzj/AuseftDDSPlugins/build/plugins/AQTPackageMachinePlug/AQTPackageMachinePlug_autogen/include" | |||
}, | |||
{ | |||
"backtrace" : 46, | |||
"path" : "/home/suzj/AuseftDDSPlugins" | |||
}, | |||
{ | |||
"backtrace" : 47, | |||
"path" : "/home/suzj/AuseftDDSPlugins/plugins/AQTPackageMachinePlug" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtCore" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/mkspecs/linux-g++" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQuick" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtGui" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQml" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlIntegration" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtNetwork" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlMeta" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlModels" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlWorkerScript" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtOpenGL" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/usr/local/include/foonathan_memory" | |||
} | |||
], | |||
"language" : "CXX", | |||
"languageStandard" : | |||
{ | |||
"backtraces" : | |||
[ | |||
3, | |||
3, | |||
3 | |||
], | |||
"standard" : "17" | |||
}, | |||
"sourceIndexes" : | |||
[ | |||
0, | |||
1, | |||
2, | |||
3, | |||
4 | |||
] | |||
} | |||
], | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "AQTPackageMachinePlug_autogen_timestamp_deps::@0c403a209dee21a7c072" | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"id" : "AQTPackageMachinePlug_autogen::@0c403a209dee21a7c072" | |||
} | |||
], | |||
"id" : "AQTPackageMachinePlug::@0c403a209dee21a7c072", | |||
"install" : | |||
{ | |||
"destinations" : | |||
[ | |||
{ | |||
"backtrace" : 2, | |||
"path" : "bin" | |||
}, | |||
{ | |||
"backtrace" : 2, | |||
"path" : "bin" | |||
} | |||
], | |||
"prefix" : | |||
{ | |||
"path" : "/usr/local" | |||
} | |||
}, | |||
"link" : | |||
{ | |||
"commandFragments" : | |||
[ | |||
{ | |||
"fragment" : "", | |||
"role" : "flags" | |||
}, | |||
{ | |||
"fragment" : "-Wl,-rpath,/home/suzj/Qt/6.8.1/gcc_64/lib::::::::::::::::::::::::::::::::::::::", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Quick.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/usr/local/lib/libfastdds.so.3.1.0", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/usr/local/lib/libfastcdr.so.2.2.6", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6QmlMeta.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 20, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6QmlWorkerScript.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6QmlModels.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Qml.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6OpenGL.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Gui.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 23, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libGLX.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 24, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libOpenGL.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 30, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Network.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Core.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 37, | |||
"fragment" : "-pthread", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/local/lib/libfoonathan_memory-0.7.3.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-lpthread", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-ldl", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libtinyxml2.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-lpthread", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-ldl", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libtinyxml2.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libssl.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libcrypto.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-lrt", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"fragment" : "-Wl,-rpath-link,/home/suzj/Qt/6.8.1/gcc_64/lib", | |||
"role" : "libraries" | |||
} | |||
], | |||
"language" : "CXX" | |||
}, | |||
"name" : "AQTPackageMachinePlug", | |||
"nameOnDisk" : "AQTPackageMachinePlug.so", | |||
"paths" : | |||
{ | |||
"build" : "plugins/AQTPackageMachinePlug", | |||
"source" : "plugins/AQTPackageMachinePlug" | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "Source Files", | |||
"sourceIndexes" : | |||
[ | |||
0, | |||
1, | |||
2, | |||
3, | |||
4 | |||
] | |||
}, | |||
{ | |||
"name" : "Header Files", | |||
"sourceIndexes" : | |||
[ | |||
5, | |||
6, | |||
7, | |||
8, | |||
9, | |||
10 | |||
] | |||
}, | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
11 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
12 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"compileGroupIndex" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/plugins/AQTPackageMachinePlug/AQTPackageMachinePlug_autogen/mocs_compilation.cpp", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"compileGroupIndex" : 0, | |||
"path" : "plugins/AQTPackageMachinePlug/AQTPackageMachinePlug.cxx", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"compileGroupIndex" : 0, | |||
"path" : "plugins/AQTPackageMachinePlug/HelloWorldPubSubTypes.cxx", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"compileGroupIndex" : 0, | |||
"path" : "plugins/AQTPackageMachinePlug/HelloWorldTypeObjectSupport.cxx", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"compileGroupIndex" : 0, | |||
"path" : "plugins/AQTPackageMachinePlug/hello_world_publisher.cxx", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTPackageMachinePlug/AQTPackageMachinePlug.hpp", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTPackageMachinePlug/HelloWorld.hpp", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTPackageMachinePlug/HelloWorldCdrAux.hpp", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTPackageMachinePlug/HelloWorldPubSubTypes.hpp", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTPackageMachinePlug/HelloWorldTypeObjectSupport.hpp", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTPackageMachinePlug/hello_world_publisher.hpp", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/plugins/AQTPackageMachinePlug/AQTPackageMachinePlug_autogen/timestamp", | |||
"sourceGroupIndex" : 2 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/plugins/AQTPackageMachinePlug/AQTPackageMachinePlug_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 3 | |||
} | |||
], | |||
"type" : "SHARED_LIBRARY" | |||
} |
@@ -1,71 +0,0 @@ | |||
{ | |||
"backtrace" : 0, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : [], | |||
"files" : | |||
[ | |||
"plugins/AQTPackageMachinePlug/CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "AQTPackageMachinePlug_autogen_timestamp_deps::@0c403a209dee21a7c072" | |||
} | |||
], | |||
"id" : "AQTPackageMachinePlug_autogen::@0c403a209dee21a7c072", | |||
"isGeneratorProvided" : true, | |||
"name" : "AQTPackageMachinePlug_autogen", | |||
"paths" : | |||
{ | |||
"build" : "plugins/AQTPackageMachinePlug", | |||
"source" : "plugins/AQTPackageMachinePlug" | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/plugins/AQTPackageMachinePlug/CMakeFiles/AQTPackageMachinePlug_autogen", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/plugins/AQTPackageMachinePlug/CMakeFiles/AQTPackageMachinePlug_autogen.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/plugins/AQTPackageMachinePlug/AQTPackageMachinePlug_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,27 +0,0 @@ | |||
{ | |||
"backtrace" : 0, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : [], | |||
"files" : | |||
[ | |||
"plugins/AQTPackageMachinePlug/CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
} | |||
] | |||
}, | |||
"id" : "AQTPackageMachinePlug_autogen_timestamp_deps::@0c403a209dee21a7c072", | |||
"isGeneratorProvided" : true, | |||
"name" : "AQTPackageMachinePlug_autogen_timestamp_deps", | |||
"paths" : | |||
{ | |||
"build" : "plugins/AQTPackageMachinePlug", | |||
"source" : "plugins/AQTPackageMachinePlug" | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,823 +0,0 @@ | |||
{ | |||
"artifacts" : | |||
[ | |||
{ | |||
"path" : "bin/AQTSampleMachinePlug.so" | |||
} | |||
], | |||
"backtrace" : 1, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_library", | |||
"install", | |||
"target_link_libraries", | |||
"set_target_properties", | |||
"include", | |||
"find_package", | |||
"find_dependency", | |||
"_qt_internal_find_qt_dependencies", | |||
"set_property", | |||
"_qt_internal_find_third_party_dependencies", | |||
"fastdds_load_targets", | |||
"target_compile_options", | |||
"target_compile_definitions", | |||
"include_directories", | |||
"target_include_directories" | |||
], | |||
"files" : | |||
[ | |||
"plugins/AQTSampleMachinePlug/CMakeLists.txt", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/Qt6Config.cmake", | |||
"CMakeLists.txt", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaTargets.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfig.cmake", | |||
"/home/suzj/Qt/Tools/CMake/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake", | |||
"/home/suzj/Qt/Tools/CMake/share/cmake-3.29/Modules/FindOpenGL.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", | |||
"/home/suzj/Qt/Tools/CMake/share/cmake-3.29/Modules/FindThreads.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/Qt6Dependencies.cmake", | |||
"/usr/local/share/fastdds/cmake/fastdds-shared-targets.cmake", | |||
"/usr/local/share/fastdds/cmake/fastdds-config.cmake" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 71, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 139, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 93, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"file" : 4 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 4, | |||
"line" : 43, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"file" : 3, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 3, | |||
"line" : 181, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"file" : 2, | |||
"parent" : 7 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 2, | |||
"line" : 55, | |||
"parent" : 8 | |||
}, | |||
{ | |||
"file" : 1, | |||
"parent" : 9 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 61, | |||
"parent" : 10 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 2, | |||
"line" : 43, | |||
"parent" : 8 | |||
}, | |||
{ | |||
"file" : 9, | |||
"parent" : 12 | |||
}, | |||
{ | |||
"command" : 7, | |||
"file" : 9, | |||
"line" : 43, | |||
"parent" : 13 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 8, | |||
"line" : 143, | |||
"parent" : 14 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 7, | |||
"line" : 76, | |||
"parent" : 15 | |||
}, | |||
{ | |||
"file" : 6, | |||
"parent" : 16 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 6, | |||
"line" : 55, | |||
"parent" : 17 | |||
}, | |||
{ | |||
"file" : 5, | |||
"parent" : 18 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 5, | |||
"line" : 61, | |||
"parent" : 19 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 4, | |||
"line" : 39, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"file" : 10, | |||
"parent" : 21 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 10, | |||
"line" : 712, | |||
"parent" : 22 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 10, | |||
"line" : 710, | |||
"parent" : 22 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 8, | |||
"line" : 143, | |||
"parent" : 14 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 7, | |||
"line" : 76, | |||
"parent" : 25 | |||
}, | |||
{ | |||
"file" : 12, | |||
"parent" : 26 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 12, | |||
"line" : 58, | |||
"parent" : 27 | |||
}, | |||
{ | |||
"file" : 11, | |||
"parent" : 28 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 11, | |||
"line" : 61, | |||
"parent" : 29 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 3, | |||
"line" : 136, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"file" : 14, | |||
"parent" : 31 | |||
}, | |||
{ | |||
"command" : 9, | |||
"file" : 14, | |||
"line" : 34, | |||
"parent" : 32 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 8, | |||
"line" : 36, | |||
"parent" : 33 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 7, | |||
"line" : 76, | |||
"parent" : 34 | |||
}, | |||
{ | |||
"file" : 13, | |||
"parent" : 35 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 13, | |||
"line" : 238, | |||
"parent" : 36 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 0, | |||
"line" : 29, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"file" : 16, | |||
"parent" : 38 | |||
}, | |||
{ | |||
"command" : 10, | |||
"file" : 16, | |||
"line" : 112, | |||
"parent" : 39 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 16, | |||
"line" : 91, | |||
"parent" : 40 | |||
}, | |||
{ | |||
"file" : 15, | |||
"parent" : 41 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 15, | |||
"line" : 61, | |||
"parent" : 42 | |||
}, | |||
{ | |||
"command" : 11, | |||
"file" : 0, | |||
"line" : 127, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 12, | |||
"file" : 0, | |||
"line" : 77, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 13, | |||
"file" : 4, | |||
"line" : 50, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"command" : 14, | |||
"file" : 0, | |||
"line" : 85, | |||
"parent" : 0 | |||
} | |||
] | |||
}, | |||
"compileGroups" : | |||
[ | |||
{ | |||
"compileCommandFragments" : | |||
[ | |||
{ | |||
"fragment" : "-g -g -O0 -Wall -Wextra -std=gnu++17 -fPIC -fdiagnostics-color=always" | |||
}, | |||
{ | |||
"backtrace" : 44, | |||
"fragment" : "-g" | |||
}, | |||
{ | |||
"backtrace" : 44, | |||
"fragment" : "-Wall" | |||
}, | |||
{ | |||
"backtrace" : 44, | |||
"fragment" : "-Wextra" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "-fPIC" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "-pthread" | |||
} | |||
], | |||
"defines" : | |||
[ | |||
{ | |||
"backtrace" : 45, | |||
"define" : "AQTSAMPLEMACHINEPLUG_LIBRARY" | |||
}, | |||
{ | |||
"define" : "AQTSampleMachinePlug_EXPORTS" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FASTCDR_DYN_LINK" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FASTDDS_DYN_LINK" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY=1" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY_VERSION_MAJOR=0" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY_VERSION_MINOR=7" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY_VERSION_PATCH=3" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_CORE_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_GUI_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_NETWORK_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_OPENGL_LIB" | |||
}, | |||
{ | |||
"backtrace" : 45, | |||
"define" : "QT_PLUGIN" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLINTEGRATION_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLMETA_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLMODELS_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLWORKERSCRIPT_LIB" | |||
}, | |||
{ | |||
"backtrace" : 45, | |||
"define" : "QT_QML_DEBUG" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QML_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QUICK_LIB" | |||
} | |||
], | |||
"includes" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"path" : "/home/suzj/AuseftDDSPlugins/build/BEFORE/AQTSampleMachinePlug_autogen/include" | |||
}, | |||
{ | |||
"backtrace" : 46, | |||
"path" : "/home/suzj/AuseftDDSPlugins" | |||
}, | |||
{ | |||
"backtrace" : 47, | |||
"path" : "/home/suzj/AuseftDDSPlugins/plugins/AQTSampleMachinePlug" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtCore" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/mkspecs/linux-g++" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQuick" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtGui" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQml" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlIntegration" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtNetwork" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlMeta" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlModels" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlWorkerScript" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtOpenGL" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/usr/local/include/foonathan_memory" | |||
} | |||
], | |||
"language" : "CXX", | |||
"languageStandard" : | |||
{ | |||
"backtraces" : | |||
[ | |||
3, | |||
3, | |||
3 | |||
], | |||
"standard" : "17" | |||
}, | |||
"sourceIndexes" : | |||
[ | |||
0, | |||
1, | |||
4, | |||
5 | |||
] | |||
} | |||
], | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "AQTSampleMachinePlug_autogen_timestamp_deps::@c2faa55591805e60c9f2" | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"id" : "AQTSampleMachinePlug_autogen::@c2faa55591805e60c9f2" | |||
} | |||
], | |||
"id" : "AQTSampleMachinePlug::@c2faa55591805e60c9f2", | |||
"install" : | |||
{ | |||
"destinations" : | |||
[ | |||
{ | |||
"backtrace" : 2, | |||
"path" : "bin" | |||
}, | |||
{ | |||
"backtrace" : 2, | |||
"path" : "bin" | |||
} | |||
], | |||
"prefix" : | |||
{ | |||
"path" : "/usr/local" | |||
} | |||
}, | |||
"link" : | |||
{ | |||
"commandFragments" : | |||
[ | |||
{ | |||
"fragment" : "", | |||
"role" : "flags" | |||
}, | |||
{ | |||
"fragment" : "-Wl,-rpath,/home/suzj/Qt/6.8.1/gcc_64/lib::::::::::::::::::::::::::::::::::::::", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Quick.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/usr/local/lib/libfastdds.so.3.1.0", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/usr/local/lib/libfastcdr.so.2.2.6", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6QmlMeta.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 20, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6QmlWorkerScript.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6QmlModels.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Qml.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6OpenGL.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Gui.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 23, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libGLX.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 24, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libOpenGL.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 30, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Network.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Core.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 37, | |||
"fragment" : "-pthread", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/local/lib/libfoonathan_memory-0.7.3.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-lpthread", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-ldl", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libtinyxml2.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-lpthread", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-ldl", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libtinyxml2.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libssl.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libcrypto.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-lrt", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"fragment" : "-Wl,-rpath-link,/home/suzj/Qt/6.8.1/gcc_64/lib", | |||
"role" : "libraries" | |||
} | |||
], | |||
"language" : "CXX" | |||
}, | |||
"name" : "AQTSampleMachinePlug", | |||
"nameOnDisk" : "AQTSampleMachinePlug.so", | |||
"paths" : | |||
{ | |||
"build" : "BEFORE", | |||
"source" : "plugins/AQTSampleMachinePlug" | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "Source Files", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "Plugin Files", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2 | |||
] | |||
}, | |||
{ | |||
"name" : "DDS Files", | |||
"sourceIndexes" : | |||
[ | |||
3 | |||
] | |||
}, | |||
{ | |||
"name" : "DDS Generated", | |||
"sourceIndexes" : | |||
[ | |||
4, | |||
5, | |||
6, | |||
7, | |||
8, | |||
9 | |||
] | |||
}, | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
10, | |||
11 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
12 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"compileGroupIndex" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/AQTSampleMachinePlug_autogen/mocs_compilation.cpp", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"compileGroupIndex" : 0, | |||
"path" : "plugins/AQTSampleMachinePlug/AQTSampleMachinePlug.cxx", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/AQTSampleMachinePlug.hpp", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachine.IDL", | |||
"sourceGroupIndex" : 2 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"compileGroupIndex" : 0, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachinePubSubTypes.cxx", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"compileGroupIndex" : 0, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachineTypeObjectSupport.cxx", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachine.hpp", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachineCdrAux.hpp", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachinePubSubTypes.hpp", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachineTypeObjectSupport.hpp", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/AQTSampleMachinePlug.json", | |||
"sourceGroupIndex" : 4 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/AQTSampleMachinePlug_autogen/timestamp", | |||
"sourceGroupIndex" : 4 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/AQTSampleMachinePlug_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 5 | |||
} | |||
], | |||
"type" : "SHARED_LIBRARY" | |||
} |
@@ -1,71 +0,0 @@ | |||
{ | |||
"backtrace" : 0, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : [], | |||
"files" : | |||
[ | |||
"plugins/AQTSampleMachinePlug/CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "AQTSampleMachinePlug_autogen_timestamp_deps::@c2faa55591805e60c9f2" | |||
} | |||
], | |||
"id" : "AQTSampleMachinePlug_autogen::@c2faa55591805e60c9f2", | |||
"isGeneratorProvided" : true, | |||
"name" : "AQTSampleMachinePlug_autogen", | |||
"paths" : | |||
{ | |||
"build" : "BEFORE", | |||
"source" : "plugins/AQTSampleMachinePlug" | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/CMakeFiles/AQTSampleMachinePlug_autogen", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/CMakeFiles/AQTSampleMachinePlug_autogen.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/AQTSampleMachinePlug_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,27 +0,0 @@ | |||
{ | |||
"backtrace" : 0, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : [], | |||
"files" : | |||
[ | |||
"plugins/AQTSampleMachinePlug/CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
} | |||
] | |||
}, | |||
"id" : "AQTSampleMachinePlug_autogen_timestamp_deps::@c2faa55591805e60c9f2", | |||
"isGeneratorProvided" : true, | |||
"name" : "AQTSampleMachinePlug_autogen_timestamp_deps", | |||
"paths" : | |||
{ | |||
"build" : "BEFORE", | |||
"source" : "plugins/AQTSampleMachinePlug" | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,71 +0,0 @@ | |||
{ | |||
"backtrace" : 0, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : [], | |||
"files" : | |||
[ | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "AuseftDDSPlugTest_autogen::@6890427a1f51a3e7e1df", | |||
"isGeneratorProvided" : true, | |||
"name" : "AuseftDDSPlugTest_autogen", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_autogen", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_autogen.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,38 +0,0 @@ | |||
{ | |||
"backtrace" : 0, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : [], | |||
"files" : | |||
[ | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"id" : "AuseftDDSPlugTest_tooling::@6890427a1f51a3e7e1df" | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"id" : "AuseftDDSPlugTest_qmlimportscan::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df", | |||
"isGeneratorProvided" : true, | |||
"name" : "AuseftDDSPlugTest_autogen_timestamp_deps", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,116 +0,0 @@ | |||
{ | |||
"backtrace" : 7, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_scan_qml_imports", | |||
"_qt_internal_generate_deploy_qml_imports_script", | |||
"cmake_language", | |||
"_qt_internal_finalize_executable", | |||
"qt6_finalize_target" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:792:EVAL", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 3 | |||
}, | |||
{ | |||
"file" : 3, | |||
"line" : -1, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 2, | |||
"line" : 1, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 823, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 745, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 1, | |||
"line" : 745, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 4102, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 3913, | |||
"parent" : 6 | |||
} | |||
] | |||
}, | |||
"id" : "AuseftDDSPlugTest_qmlimportscan::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_qmlimportscan", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 7, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmlimportscan", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmlimportscan.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.qt/qml_imports/AuseftDDSPlugTest_build.cmake.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,105 +0,0 @@ | |||
{ | |||
"backtrace" : 5, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 1449, | |||
"parent" : 4 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "AuseftDDSPlugTest_qmllint::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_qmllint", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 5, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,105 +0,0 @@ | |||
{ | |||
"backtrace" : 5, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 1476, | |||
"parent" : 4 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "AuseftDDSPlugTest_qmllint_json::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_qmllint_json", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 5, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint_json", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint_json.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,105 +0,0 @@ | |||
{ | |||
"backtrace" : 5, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 1514, | |||
"parent" : 4 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "AuseftDDSPlugTest_qmllint_module::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_qmllint_module", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 5, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint_module", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint_module.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,129 +0,0 @@ | |||
{ | |||
"backtrace" : 4, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_qml_type_registration", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 785, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 3604, | |||
"parent" : 3 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "AuseftDDSPlugTest_qmltyperegistration::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_qmltyperegistration", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2, | |||
3, | |||
4, | |||
5, | |||
6 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 4, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmltyperegistration", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmltyperegistration.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/auseftddsplugtest_qmltyperegistrations.cpp.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.gen.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/AuseftDDSPlugTest_json_file_list.txt.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,95 +0,0 @@ | |||
{ | |||
"backtrace" : 4, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_library", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module", | |||
"target_sources" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 3262, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 0, | |||
"line" : 3266, | |||
"parent" : 3 | |||
} | |||
] | |||
}, | |||
"id" : "AuseftDDSPlugTest_tooling::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_tooling", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 5, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest/Main.qml", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest/Main.qml.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "INTERFACE_LIBRARY" | |||
} |
@@ -1,52 +0,0 @@ | |||
{ | |||
"backtrace" : 1, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target" | |||
], | |||
"files" : | |||
[ | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 65, | |||
"parent" : 0 | |||
} | |||
] | |||
}, | |||
"id" : "InterfacesIDE::@6890427a1f51a3e7e1df", | |||
"name" : "InterfacesIDE", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "Header Files", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 1, | |||
"path" : "interfaces/plugin_interface.hpp", | |||
"sourceGroupIndex" : 0 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,145 +0,0 @@ | |||
{ | |||
"backtrace" : 3, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_deferred_aotstats_setup" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake:1081:EVAL", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 2 | |||
}, | |||
{ | |||
"file" : 2, | |||
"line" : -1, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 1, | |||
"line" : 1, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 1195, | |||
"parent" : 2 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "module_AuseftDDSPlugTest_aotstats_target::@6890427a1f51a3e7e1df" | |||
}, | |||
{ | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "all_aotstats::@6890427a1f51a3e7e1df", | |||
"name" : "all_aotstats", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2, | |||
3, | |||
4, | |||
5, | |||
6, | |||
7, | |||
8, | |||
9 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 3, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/all_aotstats", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/all_aotstats.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.rcc/qmlcache/all_aotstats.aotstats.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.rcc/qmlcache/module_AuseftDDSPlugTest.aotstats.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.rcc/qmlcache/AuseftDDSPlugTest_Main_qml.cpp.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/auseftddsplugtest_qmltyperegistrations.cpp.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.gen.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/AuseftDDSPlugTest_json_file_list.txt.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,104 +0,0 @@ | |||
{ | |||
"backtrace" : 7, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_add_phony_target", | |||
"_qt_internal_add_all_qmllint_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module", | |||
"add_dependencies", | |||
"_qt_internal_add_phony_target_dependencies" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 2 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 2, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 1, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 1, | |||
"line" : 1530, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 1, | |||
"line" : 1595, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 299, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 1, | |||
"line" : 1599, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 7, | |||
"file" : 0, | |||
"line" : 328, | |||
"parent" : 8 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 9, | |||
"id" : "AuseftDDSPlugTest_qmllint::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "all_qmllint::@6890427a1f51a3e7e1df", | |||
"name" : "all_qmllint", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,104 +0,0 @@ | |||
{ | |||
"backtrace" : 7, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_add_phony_target", | |||
"_qt_internal_add_all_qmllint_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module", | |||
"add_dependencies", | |||
"_qt_internal_add_phony_target_dependencies" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 2 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 2, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 1, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 1, | |||
"line" : 1532, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 1, | |||
"line" : 1595, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 299, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 1, | |||
"line" : 1599, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 7, | |||
"file" : 0, | |||
"line" : 328, | |||
"parent" : 8 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 9, | |||
"id" : "AuseftDDSPlugTest_qmllint_json::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "all_qmllint_json::@6890427a1f51a3e7e1df", | |||
"name" : "all_qmllint_json", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,104 +0,0 @@ | |||
{ | |||
"backtrace" : 7, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_add_phony_target", | |||
"_qt_internal_add_all_qmllint_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module", | |||
"add_dependencies", | |||
"_qt_internal_add_phony_target_dependencies" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 2 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 2, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 1, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 1, | |||
"line" : 1534, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 1, | |||
"line" : 1595, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 299, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 1, | |||
"line" : 1599, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 7, | |||
"file" : 0, | |||
"line" : 328, | |||
"parent" : 8 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 9, | |||
"id" : "AuseftDDSPlugTest_qmllint_module::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "all_qmllint_module::@6890427a1f51a3e7e1df", | |||
"name" : "all_qmllint_module", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,71 +0,0 @@ | |||
{ | |||
"backtrace" : 4, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_qml_type_registration", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module", | |||
"add_dependencies" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 785, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 3611, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 0, | |||
"line" : 3614, | |||
"parent" : 3 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 5, | |||
"id" : "AuseftDDSPlugTest_qmltyperegistration::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df", | |||
"name" : "all_qmltyperegistrations", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,146 +0,0 @@ | |||
{ | |||
"backtrace" : 3, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_deferred_aotstats_setup", | |||
"add_dependencies" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake:1081:EVAL", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 2 | |||
}, | |||
{ | |||
"file" : 2, | |||
"line" : -1, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 1, | |||
"line" : 1, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 1134, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 1139, | |||
"parent" : 2 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 4, | |||
"id" : "AuseftDDSPlugTest_qmltyperegistration::@6890427a1f51a3e7e1df" | |||
}, | |||
{ | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "module_AuseftDDSPlugTest_aotstats_target::@6890427a1f51a3e7e1df", | |||
"name" : "module_AuseftDDSPlugTest_aotstats_target", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2, | |||
3, | |||
4, | |||
5, | |||
6, | |||
7, | |||
8 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 3, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/module_AuseftDDSPlugTest_aotstats_target", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/module_AuseftDDSPlugTest_aotstats_target.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.rcc/qmlcache/module_AuseftDDSPlugTest.aotstats.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.rcc/qmlcache/AuseftDDSPlugTest_Main_qml.cpp.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/auseftddsplugtest_qmltyperegistrations.cpp.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.gen.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/AuseftDDSPlugTest_json_file_list.txt.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,257 +0,0 @@ | |||
{ | |||
"configurations" : | |||
[ | |||
{ | |||
"directories" : | |||
[ | |||
{ | |||
"build" : ".", | |||
"childIndexes" : | |||
[ | |||
1 | |||
], | |||
"hasInstallRule" : true, | |||
"jsonFile" : "directory-.-Debug-8dfc10c7de947747abd8.json", | |||
"minimumCMakeVersion" : | |||
{ | |||
"string" : "3.16" | |||
}, | |||
"projectIndex" : 0, | |||
"source" : ".", | |||
"targetIndexes" : | |||
[ | |||
3, | |||
4, | |||
5, | |||
6, | |||
7, | |||
8, | |||
9, | |||
10, | |||
11, | |||
12, | |||
13, | |||
14, | |||
15, | |||
16, | |||
17, | |||
18 | |||
] | |||
}, | |||
{ | |||
"build" : "BEFORE", | |||
"hasInstallRule" : true, | |||
"jsonFile" : "directory-BEFORE-Debug-20761af8b4ec3d88405b.json", | |||
"minimumCMakeVersion" : | |||
{ | |||
"string" : "3.16" | |||
}, | |||
"parentIndex" : 0, | |||
"projectIndex" : 1, | |||
"source" : "plugins/AQTSampleMachinePlug", | |||
"targetIndexes" : | |||
[ | |||
0, | |||
1, | |||
2 | |||
] | |||
} | |||
], | |||
"name" : "Debug", | |||
"projects" : | |||
[ | |||
{ | |||
"childIndexes" : | |||
[ | |||
1 | |||
], | |||
"directoryIndexes" : | |||
[ | |||
0 | |||
], | |||
"name" : "AuseftDDSPlugTest", | |||
"targetIndexes" : | |||
[ | |||
3, | |||
4, | |||
5, | |||
6, | |||
7, | |||
8, | |||
9, | |||
10, | |||
11, | |||
12, | |||
13, | |||
14, | |||
15, | |||
16, | |||
17, | |||
18 | |||
] | |||
}, | |||
{ | |||
"directoryIndexes" : | |||
[ | |||
1 | |||
], | |||
"name" : "AQTSampleMachinePlug", | |||
"parentIndex" : 0, | |||
"targetIndexes" : | |||
[ | |||
0, | |||
1, | |||
2 | |||
] | |||
} | |||
], | |||
"targets" : | |||
[ | |||
{ | |||
"directoryIndex" : 1, | |||
"id" : "AQTSampleMachinePlug::@c2faa55591805e60c9f2", | |||
"jsonFile" : "target-AQTSampleMachinePlug-Debug-680c718fc0e26852e71c.json", | |||
"name" : "AQTSampleMachinePlug", | |||
"projectIndex" : 1 | |||
}, | |||
{ | |||
"directoryIndex" : 1, | |||
"id" : "AQTSampleMachinePlug_autogen::@c2faa55591805e60c9f2", | |||
"jsonFile" : "target-AQTSampleMachinePlug_autogen-Debug-96f8d2e3fd10ef45bee2.json", | |||
"name" : "AQTSampleMachinePlug_autogen", | |||
"projectIndex" : 1 | |||
}, | |||
{ | |||
"directoryIndex" : 1, | |||
"id" : "AQTSampleMachinePlug_autogen_timestamp_deps::@c2faa55591805e60c9f2", | |||
"jsonFile" : "target-AQTSampleMachinePlug_autogen_timestamp_deps-Debug-acbd9a9c5d20c6f062c9.json", | |||
"name" : "AQTSampleMachinePlug_autogen_timestamp_deps", | |||
"projectIndex" : 1 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest-Debug-615908b30827faa1f659.json", | |||
"name" : "AuseftDDSPlugTest", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_autogen::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_autogen-Debug-6fc1b9414ee7a12fa8bc.json", | |||
"name" : "AuseftDDSPlugTest_autogen", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_autogen_timestamp_deps-Debug-f6a8a676fcabd4cdb860.json", | |||
"name" : "AuseftDDSPlugTest_autogen_timestamp_deps", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_qmlimportscan::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_qmlimportscan-Debug-fe8687bcc88fd37f6ba4.json", | |||
"name" : "AuseftDDSPlugTest_qmlimportscan", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_qmllint::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_qmllint-Debug-c8beafcd49039e05b37a.json", | |||
"name" : "AuseftDDSPlugTest_qmllint", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_qmllint_json::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_qmllint_json-Debug-7f7b5b58bac26b48318f.json", | |||
"name" : "AuseftDDSPlugTest_qmllint_json", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_qmllint_module::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_qmllint_module-Debug-7f62529908226fdb7c3e.json", | |||
"name" : "AuseftDDSPlugTest_qmllint_module", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_qmltyperegistration::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_qmltyperegistration-Debug-6589009d1be82f6ae793.json", | |||
"name" : "AuseftDDSPlugTest_qmltyperegistration", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "AuseftDDSPlugTest_tooling::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-AuseftDDSPlugTest_tooling-Debug-e89d6090fd713b55e098.json", | |||
"name" : "AuseftDDSPlugTest_tooling", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "InterfacesIDE::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-InterfacesIDE-Debug-176c347e815832c58d9d.json", | |||
"name" : "InterfacesIDE", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "all_aotstats::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-all_aotstats-Debug-afaeea305b1ee25d9b72.json", | |||
"name" : "all_aotstats", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "all_qmllint::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-all_qmllint-Debug-8b702b1d28d53e5f9dfa.json", | |||
"name" : "all_qmllint", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "all_qmllint_json::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-all_qmllint_json-Debug-fb8e51cd207c9aa89328.json", | |||
"name" : "all_qmllint_json", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "all_qmllint_module::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-all_qmllint_module-Debug-92a00dc1c016ba8ede21.json", | |||
"name" : "all_qmllint_module", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-all_qmltyperegistrations-Debug-c24837fa208f0079949c.json", | |||
"name" : "all_qmltyperegistrations", | |||
"projectIndex" : 0 | |||
}, | |||
{ | |||
"directoryIndex" : 0, | |||
"id" : "module_AuseftDDSPlugTest_aotstats_target::@6890427a1f51a3e7e1df", | |||
"jsonFile" : "target-module_AuseftDDSPlugTest_aotstats_target-Debug-f6d1fb19029b5cc42b52.json", | |||
"name" : "module_AuseftDDSPlugTest_aotstats_target", | |||
"projectIndex" : 0 | |||
} | |||
] | |||
} | |||
], | |||
"kind" : "codemodel", | |||
"paths" : | |||
{ | |||
"build" : "/home/suzj/AuseftDDSPlugins/build", | |||
"source" : "/home/suzj/AuseftDDSPlugins" | |||
}, | |||
"version" : | |||
{ | |||
"major" : 2, | |||
"minor" : 7 | |||
} | |||
} |
@@ -1,45 +0,0 @@ | |||
{ | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"install" | |||
], | |||
"files" : | |||
[ | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 107, | |||
"parent" : 0 | |||
} | |||
] | |||
}, | |||
"installers" : | |||
[ | |||
{ | |||
"backtrace" : 1, | |||
"component" : "Unspecified", | |||
"destination" : "bin", | |||
"paths" : | |||
[ | |||
"bin/AuseftDDSPlugTest" | |||
], | |||
"targetId" : "AuseftDDSPlugTest::@6890427a1f51a3e7e1df", | |||
"targetIndex" : 3, | |||
"type" : "target" | |||
} | |||
], | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
} | |||
} |
@@ -1,60 +0,0 @@ | |||
{ | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"install" | |||
], | |||
"files" : | |||
[ | |||
"plugins/AQTSampleMachinePlug/CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 139, | |||
"parent" : 0 | |||
} | |||
] | |||
}, | |||
"installers" : | |||
[ | |||
{ | |||
"backtrace" : 1, | |||
"component" : "Unspecified", | |||
"destination" : "bin", | |||
"paths" : | |||
[ | |||
"bin/AQTSampleMachinePlug.so.1.0.0", | |||
"bin/AQTSampleMachinePlug.so.1" | |||
], | |||
"targetId" : "AQTSampleMachinePlug::@c2faa55591805e60c9f2", | |||
"targetIndex" : 0, | |||
"targetInstallNamelink" : "skip", | |||
"type" : "target" | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"component" : "Unspecified", | |||
"destination" : "bin", | |||
"paths" : | |||
[ | |||
"bin/AQTSampleMachinePlug.so" | |||
], | |||
"targetId" : "AQTSampleMachinePlug::@c2faa55591805e60c9f2", | |||
"targetIndex" : 0, | |||
"targetInstallNamelink" : "only", | |||
"type" : "target" | |||
} | |||
], | |||
"paths" : | |||
{ | |||
"build" : "BEFORE", | |||
"source" : "plugins/AQTSampleMachinePlug" | |||
} | |||
} |
@@ -1,89 +0,0 @@ | |||
{ | |||
"cmake" : | |||
{ | |||
"generator" : | |||
{ | |||
"multiConfig" : false, | |||
"name" : "Unix Makefiles" | |||
}, | |||
"paths" : | |||
{ | |||
"cmake" : "/home/suzj/Qt/Tools/CMake/bin/cmake", | |||
"cpack" : "/home/suzj/Qt/Tools/CMake/bin/cpack", | |||
"ctest" : "/home/suzj/Qt/Tools/CMake/bin/ctest", | |||
"root" : "/home/suzj/Qt/Tools/CMake/share/cmake-3.29" | |||
}, | |||
"version" : | |||
{ | |||
"isDirty" : false, | |||
"major" : 3, | |||
"minor" : 29, | |||
"patch" : 3, | |||
"string" : "3.29.3", | |||
"suffix" : "" | |||
} | |||
}, | |||
"objects" : | |||
[ | |||
{ | |||
"jsonFile" : "codemodel-v2-aaeb0bd9e2e5cdd02cb4.json", | |||
"kind" : "codemodel", | |||
"version" : | |||
{ | |||
"major" : 2, | |||
"minor" : 7 | |||
} | |||
}, | |||
{ | |||
"jsonFile" : "cache-v2-98b5f7ddcc558490a204.json", | |||
"kind" : "cache", | |||
"version" : | |||
{ | |||
"major" : 2, | |||
"minor" : 0 | |||
} | |||
}, | |||
{ | |||
"jsonFile" : "cmakeFiles-v1-18a2ae28ca029f8f8ac9.json", | |||
"kind" : "cmakeFiles", | |||
"version" : | |||
{ | |||
"major" : 1, | |||
"minor" : 0 | |||
} | |||
} | |||
], | |||
"reply" : | |||
{ | |||
"cache-v2" : | |||
{ | |||
"jsonFile" : "cache-v2-98b5f7ddcc558490a204.json", | |||
"kind" : "cache", | |||
"version" : | |||
{ | |||
"major" : 2, | |||
"minor" : 0 | |||
} | |||
}, | |||
"cmakeFiles-v1" : | |||
{ | |||
"jsonFile" : "cmakeFiles-v1-18a2ae28ca029f8f8ac9.json", | |||
"kind" : "cmakeFiles", | |||
"version" : | |||
{ | |||
"major" : 1, | |||
"minor" : 0 | |||
} | |||
}, | |||
"codemodel-v2" : | |||
{ | |||
"jsonFile" : "codemodel-v2-aaeb0bd9e2e5cdd02cb4.json", | |||
"kind" : "codemodel", | |||
"version" : | |||
{ | |||
"major" : 2, | |||
"minor" : 7 | |||
} | |||
} | |||
} | |||
} |
@@ -1,823 +0,0 @@ | |||
{ | |||
"artifacts" : | |||
[ | |||
{ | |||
"path" : "bin/AQTSampleMachinePlug.so" | |||
} | |||
], | |||
"backtrace" : 1, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_library", | |||
"install", | |||
"target_link_libraries", | |||
"set_target_properties", | |||
"include", | |||
"find_package", | |||
"find_dependency", | |||
"_qt_internal_find_qt_dependencies", | |||
"set_property", | |||
"_qt_internal_find_third_party_dependencies", | |||
"fastdds_load_targets", | |||
"target_compile_options", | |||
"target_compile_definitions", | |||
"include_directories", | |||
"target_include_directories" | |||
], | |||
"files" : | |||
[ | |||
"plugins/AQTSampleMachinePlug/CMakeLists.txt", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Quick/Qt6QuickTargets.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Quick/Qt6QuickConfig.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/Qt6Config.cmake", | |||
"CMakeLists.txt", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaTargets.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6QmlMeta/Qt6QmlMetaConfig.cmake", | |||
"/home/suzj/Qt/Tools/CMake/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Quick/Qt6QuickDependencies.cmake", | |||
"/home/suzj/Qt/Tools/CMake/share/cmake-3.29/Modules/FindOpenGL.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlTargets.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlConfig.cmake", | |||
"/home/suzj/Qt/Tools/CMake/share/cmake-3.29/Modules/FindThreads.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/Qt6Dependencies.cmake", | |||
"/usr/local/share/fastdds/cmake/fastdds-shared-targets.cmake", | |||
"/usr/local/share/fastdds/cmake/fastdds-config.cmake" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 71, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 139, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 93, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"file" : 4 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 4, | |||
"line" : 43, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"file" : 3, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 3, | |||
"line" : 181, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"file" : 2, | |||
"parent" : 7 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 2, | |||
"line" : 55, | |||
"parent" : 8 | |||
}, | |||
{ | |||
"file" : 1, | |||
"parent" : 9 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 61, | |||
"parent" : 10 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 2, | |||
"line" : 43, | |||
"parent" : 8 | |||
}, | |||
{ | |||
"file" : 9, | |||
"parent" : 12 | |||
}, | |||
{ | |||
"command" : 7, | |||
"file" : 9, | |||
"line" : 43, | |||
"parent" : 13 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 8, | |||
"line" : 143, | |||
"parent" : 14 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 7, | |||
"line" : 76, | |||
"parent" : 15 | |||
}, | |||
{ | |||
"file" : 6, | |||
"parent" : 16 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 6, | |||
"line" : 55, | |||
"parent" : 17 | |||
}, | |||
{ | |||
"file" : 5, | |||
"parent" : 18 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 5, | |||
"line" : 61, | |||
"parent" : 19 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 4, | |||
"line" : 39, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"file" : 10, | |||
"parent" : 21 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 10, | |||
"line" : 712, | |||
"parent" : 22 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 10, | |||
"line" : 710, | |||
"parent" : 22 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 8, | |||
"line" : 143, | |||
"parent" : 14 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 7, | |||
"line" : 76, | |||
"parent" : 25 | |||
}, | |||
{ | |||
"file" : 12, | |||
"parent" : 26 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 12, | |||
"line" : 58, | |||
"parent" : 27 | |||
}, | |||
{ | |||
"file" : 11, | |||
"parent" : 28 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 11, | |||
"line" : 61, | |||
"parent" : 29 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 3, | |||
"line" : 136, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"file" : 14, | |||
"parent" : 31 | |||
}, | |||
{ | |||
"command" : 9, | |||
"file" : 14, | |||
"line" : 34, | |||
"parent" : 32 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 8, | |||
"line" : 36, | |||
"parent" : 33 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 7, | |||
"line" : 76, | |||
"parent" : 34 | |||
}, | |||
{ | |||
"file" : 13, | |||
"parent" : 35 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 13, | |||
"line" : 238, | |||
"parent" : 36 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 0, | |||
"line" : 29, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"file" : 16, | |||
"parent" : 38 | |||
}, | |||
{ | |||
"command" : 10, | |||
"file" : 16, | |||
"line" : 112, | |||
"parent" : 39 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 16, | |||
"line" : 91, | |||
"parent" : 40 | |||
}, | |||
{ | |||
"file" : 15, | |||
"parent" : 41 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 15, | |||
"line" : 61, | |||
"parent" : 42 | |||
}, | |||
{ | |||
"command" : 11, | |||
"file" : 0, | |||
"line" : 127, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 12, | |||
"file" : 0, | |||
"line" : 77, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 13, | |||
"file" : 4, | |||
"line" : 50, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"command" : 14, | |||
"file" : 0, | |||
"line" : 85, | |||
"parent" : 0 | |||
} | |||
] | |||
}, | |||
"compileGroups" : | |||
[ | |||
{ | |||
"compileCommandFragments" : | |||
[ | |||
{ | |||
"fragment" : "-g -g -O0 -Wall -Wextra -std=gnu++17 -fPIC -fdiagnostics-color=always" | |||
}, | |||
{ | |||
"backtrace" : 44, | |||
"fragment" : "-g" | |||
}, | |||
{ | |||
"backtrace" : 44, | |||
"fragment" : "-Wall" | |||
}, | |||
{ | |||
"backtrace" : 44, | |||
"fragment" : "-Wextra" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "-fPIC" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "-pthread" | |||
} | |||
], | |||
"defines" : | |||
[ | |||
{ | |||
"backtrace" : 45, | |||
"define" : "AQTSAMPLEMACHINEPLUG_LIBRARY" | |||
}, | |||
{ | |||
"define" : "AQTSampleMachinePlug_EXPORTS" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FASTCDR_DYN_LINK" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FASTDDS_DYN_LINK" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY=1" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY_VERSION_MAJOR=0" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY_VERSION_MINOR=7" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "FOONATHAN_MEMORY_VERSION_PATCH=3" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_CORE_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_GUI_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_NETWORK_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_OPENGL_LIB" | |||
}, | |||
{ | |||
"backtrace" : 45, | |||
"define" : "QT_PLUGIN" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLINTEGRATION_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLMETA_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLMODELS_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QMLWORKERSCRIPT_LIB" | |||
}, | |||
{ | |||
"backtrace" : 45, | |||
"define" : "QT_QML_DEBUG" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QML_LIB" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"define" : "QT_QUICK_LIB" | |||
} | |||
], | |||
"includes" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"path" : "/home/suzj/AuseftDDSPlugins/build/BEFORE/AQTSampleMachinePlug_autogen/include" | |||
}, | |||
{ | |||
"backtrace" : 46, | |||
"path" : "/home/suzj/AuseftDDSPlugins" | |||
}, | |||
{ | |||
"backtrace" : 47, | |||
"path" : "/home/suzj/AuseftDDSPlugins/plugins/AQTSampleMachinePlug" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtCore" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/mkspecs/linux-g++" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQuick" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtGui" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQml" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlIntegration" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtNetwork" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlMeta" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlModels" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtQmlWorkerScript" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/home/suzj/Qt/6.8.1/gcc_64/include/QtOpenGL" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"isSystem" : true, | |||
"path" : "/usr/local/include/foonathan_memory" | |||
} | |||
], | |||
"language" : "CXX", | |||
"languageStandard" : | |||
{ | |||
"backtraces" : | |||
[ | |||
3, | |||
3, | |||
3 | |||
], | |||
"standard" : "17" | |||
}, | |||
"sourceIndexes" : | |||
[ | |||
0, | |||
1, | |||
4, | |||
5 | |||
] | |||
} | |||
], | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "AQTSampleMachinePlug_autogen_timestamp_deps::@c2faa55591805e60c9f2" | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"id" : "AQTSampleMachinePlug_autogen::@c2faa55591805e60c9f2" | |||
} | |||
], | |||
"id" : "AQTSampleMachinePlug::@c2faa55591805e60c9f2", | |||
"install" : | |||
{ | |||
"destinations" : | |||
[ | |||
{ | |||
"backtrace" : 2, | |||
"path" : "bin" | |||
}, | |||
{ | |||
"backtrace" : 2, | |||
"path" : "bin" | |||
} | |||
], | |||
"prefix" : | |||
{ | |||
"path" : "/usr/local" | |||
} | |||
}, | |||
"link" : | |||
{ | |||
"commandFragments" : | |||
[ | |||
{ | |||
"fragment" : "", | |||
"role" : "flags" | |||
}, | |||
{ | |||
"fragment" : "-Wl,-rpath,/home/suzj/Qt/6.8.1/gcc_64/lib::::::::::::::::::::::::::::::::::::::", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Quick.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/usr/local/lib/libfastdds.so.3.1.0", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/usr/local/lib/libfastcdr.so.2.2.6", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6QmlMeta.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 20, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6QmlWorkerScript.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6QmlModels.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Qml.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6OpenGL.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 11, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Gui.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 23, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libGLX.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 24, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libOpenGL.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 30, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Network.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 3, | |||
"fragment" : "/home/suzj/Qt/6.8.1/gcc_64/lib/libQt6Core.so.6.8.1", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 37, | |||
"fragment" : "-pthread", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/local/lib/libfoonathan_memory-0.7.3.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-lpthread", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-ldl", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libtinyxml2.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-lpthread", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-ldl", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libtinyxml2.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libssl.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "/usr/lib/x86_64-linux-gnu/libcrypto.so", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"backtrace" : 43, | |||
"fragment" : "-lrt", | |||
"role" : "libraries" | |||
}, | |||
{ | |||
"fragment" : "-Wl,-rpath-link,/home/suzj/Qt/6.8.1/gcc_64/lib", | |||
"role" : "libraries" | |||
} | |||
], | |||
"language" : "CXX" | |||
}, | |||
"name" : "AQTSampleMachinePlug", | |||
"nameOnDisk" : "AQTSampleMachinePlug.so", | |||
"paths" : | |||
{ | |||
"build" : "BEFORE", | |||
"source" : "plugins/AQTSampleMachinePlug" | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "Source Files", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "Plugin Files", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2 | |||
] | |||
}, | |||
{ | |||
"name" : "DDS Files", | |||
"sourceIndexes" : | |||
[ | |||
3 | |||
] | |||
}, | |||
{ | |||
"name" : "DDS Generated", | |||
"sourceIndexes" : | |||
[ | |||
4, | |||
5, | |||
6, | |||
7, | |||
8, | |||
9 | |||
] | |||
}, | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
10, | |||
11 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
12 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"compileGroupIndex" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/AQTSampleMachinePlug_autogen/mocs_compilation.cpp", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"compileGroupIndex" : 0, | |||
"path" : "plugins/AQTSampleMachinePlug/AQTSampleMachinePlug.cxx", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/AQTSampleMachinePlug.hpp", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachine.IDL", | |||
"sourceGroupIndex" : 2 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"compileGroupIndex" : 0, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachinePubSubTypes.cxx", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"compileGroupIndex" : 0, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachineTypeObjectSupport.cxx", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachine.hpp", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachineCdrAux.hpp", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachinePubSubTypes.hpp", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/DDSSampleMachineTypeObjectSupport.hpp", | |||
"sourceGroupIndex" : 3 | |||
}, | |||
{ | |||
"backtrace" : 1, | |||
"path" : "plugins/AQTSampleMachinePlug/AQTSampleMachinePlug.json", | |||
"sourceGroupIndex" : 4 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/AQTSampleMachinePlug_autogen/timestamp", | |||
"sourceGroupIndex" : 4 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/AQTSampleMachinePlug_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 5 | |||
} | |||
], | |||
"type" : "SHARED_LIBRARY" | |||
} |
@@ -1,71 +0,0 @@ | |||
{ | |||
"backtrace" : 0, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : [], | |||
"files" : | |||
[ | |||
"plugins/AQTSampleMachinePlug/CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "AQTSampleMachinePlug_autogen_timestamp_deps::@c2faa55591805e60c9f2" | |||
} | |||
], | |||
"id" : "AQTSampleMachinePlug_autogen::@c2faa55591805e60c9f2", | |||
"isGeneratorProvided" : true, | |||
"name" : "AQTSampleMachinePlug_autogen", | |||
"paths" : | |||
{ | |||
"build" : "BEFORE", | |||
"source" : "plugins/AQTSampleMachinePlug" | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/CMakeFiles/AQTSampleMachinePlug_autogen", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/CMakeFiles/AQTSampleMachinePlug_autogen.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/BEFORE/AQTSampleMachinePlug_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,27 +0,0 @@ | |||
{ | |||
"backtrace" : 0, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : [], | |||
"files" : | |||
[ | |||
"plugins/AQTSampleMachinePlug/CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
} | |||
] | |||
}, | |||
"id" : "AQTSampleMachinePlug_autogen_timestamp_deps::@c2faa55591805e60c9f2", | |||
"isGeneratorProvided" : true, | |||
"name" : "AQTSampleMachinePlug_autogen_timestamp_deps", | |||
"paths" : | |||
{ | |||
"build" : "BEFORE", | |||
"source" : "plugins/AQTSampleMachinePlug" | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,71 +0,0 @@ | |||
{ | |||
"backtrace" : 0, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : [], | |||
"files" : | |||
[ | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "AuseftDDSPlugTest_autogen::@6890427a1f51a3e7e1df", | |||
"isGeneratorProvided" : true, | |||
"name" : "AuseftDDSPlugTest_autogen", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_autogen", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_autogen.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,38 +0,0 @@ | |||
{ | |||
"backtrace" : 0, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : [], | |||
"files" : | |||
[ | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 0, | |||
"id" : "AuseftDDSPlugTest_tooling::@6890427a1f51a3e7e1df" | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"id" : "AuseftDDSPlugTest_qmlimportscan::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df", | |||
"isGeneratorProvided" : true, | |||
"name" : "AuseftDDSPlugTest_autogen_timestamp_deps", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,116 +0,0 @@ | |||
{ | |||
"backtrace" : 7, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_scan_qml_imports", | |||
"_qt_internal_generate_deploy_qml_imports_script", | |||
"cmake_language", | |||
"_qt_internal_finalize_executable", | |||
"qt6_finalize_target" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:792:EVAL", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 3 | |||
}, | |||
{ | |||
"file" : 3, | |||
"line" : -1, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 2, | |||
"line" : 1, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 823, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 745, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 1, | |||
"line" : 745, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 4102, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 3913, | |||
"parent" : 6 | |||
} | |||
] | |||
}, | |||
"id" : "AuseftDDSPlugTest_qmlimportscan::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_qmlimportscan", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 7, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmlimportscan", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmlimportscan.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.qt/qml_imports/AuseftDDSPlugTest_build.cmake.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,105 +0,0 @@ | |||
{ | |||
"backtrace" : 5, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 1449, | |||
"parent" : 4 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "AuseftDDSPlugTest_qmllint::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_qmllint", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 5, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,105 +0,0 @@ | |||
{ | |||
"backtrace" : 5, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 1476, | |||
"parent" : 4 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "AuseftDDSPlugTest_qmllint_json::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_qmllint_json", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 5, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint_json", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint_json.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,105 +0,0 @@ | |||
{ | |||
"backtrace" : 5, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 1514, | |||
"parent" : 4 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "AuseftDDSPlugTest_qmllint_module::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_qmllint_module", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 5, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint_module", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmllint_module.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,129 +0,0 @@ | |||
{ | |||
"backtrace" : 4, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_qml_type_registration", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 785, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 3604, | |||
"parent" : 3 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "AuseftDDSPlugTest_qmltyperegistration::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_qmltyperegistration", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2, | |||
3, | |||
4, | |||
5, | |||
6 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 4, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmltyperegistration", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/AuseftDDSPlugTest_qmltyperegistration.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/auseftddsplugtest_qmltyperegistrations.cpp.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.gen.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/AuseftDDSPlugTest_json_file_list.txt.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,95 +0,0 @@ | |||
{ | |||
"backtrace" : 4, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_library", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module", | |||
"target_sources" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 3262, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 0, | |||
"line" : 3266, | |||
"parent" : 3 | |||
} | |||
] | |||
}, | |||
"id" : "AuseftDDSPlugTest_tooling::@6890427a1f51a3e7e1df", | |||
"name" : "AuseftDDSPlugTest_tooling", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 5, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest/Main.qml", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest/Main.qml.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "INTERFACE_LIBRARY" | |||
} |
@@ -1,52 +0,0 @@ | |||
{ | |||
"backtrace" : 1, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target" | |||
], | |||
"files" : | |||
[ | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 0 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 65, | |||
"parent" : 0 | |||
} | |||
] | |||
}, | |||
"id" : "InterfacesIDE::@6890427a1f51a3e7e1df", | |||
"name" : "InterfacesIDE", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "Header Files", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 1, | |||
"path" : "interfaces/plugin_interface.hpp", | |||
"sourceGroupIndex" : 0 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,145 +0,0 @@ | |||
{ | |||
"backtrace" : 3, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_deferred_aotstats_setup" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake:1081:EVAL", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 2 | |||
}, | |||
{ | |||
"file" : 2, | |||
"line" : -1, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 1, | |||
"line" : 1, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 1195, | |||
"parent" : 2 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"id" : "module_AuseftDDSPlugTest_aotstats_target::@6890427a1f51a3e7e1df" | |||
}, | |||
{ | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "all_aotstats::@6890427a1f51a3e7e1df", | |||
"name" : "all_aotstats", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2, | |||
3, | |||
4, | |||
5, | |||
6, | |||
7, | |||
8, | |||
9 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 3, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/all_aotstats", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/all_aotstats.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.rcc/qmlcache/all_aotstats.aotstats.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.rcc/qmlcache/module_AuseftDDSPlugTest.aotstats.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.rcc/qmlcache/AuseftDDSPlugTest_Main_qml.cpp.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/auseftddsplugtest_qmltyperegistrations.cpp.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.gen.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/AuseftDDSPlugTest_json_file_list.txt.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -1,104 +0,0 @@ | |||
{ | |||
"backtrace" : 7, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_add_phony_target", | |||
"_qt_internal_add_all_qmllint_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module", | |||
"add_dependencies", | |||
"_qt_internal_add_phony_target_dependencies" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 2 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 2, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 1, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 1, | |||
"line" : 1530, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 1, | |||
"line" : 1595, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 299, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 1, | |||
"line" : 1599, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 7, | |||
"file" : 0, | |||
"line" : 328, | |||
"parent" : 8 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 9, | |||
"id" : "AuseftDDSPlugTest_qmllint::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "all_qmllint::@6890427a1f51a3e7e1df", | |||
"name" : "all_qmllint", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,104 +0,0 @@ | |||
{ | |||
"backtrace" : 7, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_add_phony_target", | |||
"_qt_internal_add_all_qmllint_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module", | |||
"add_dependencies", | |||
"_qt_internal_add_phony_target_dependencies" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 2 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 2, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 1, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 1, | |||
"line" : 1532, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 1, | |||
"line" : 1595, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 299, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 1, | |||
"line" : 1599, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 7, | |||
"file" : 0, | |||
"line" : 328, | |||
"parent" : 8 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 9, | |||
"id" : "AuseftDDSPlugTest_qmllint_json::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "all_qmllint_json::@6890427a1f51a3e7e1df", | |||
"name" : "all_qmllint_json", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,104 +0,0 @@ | |||
{ | |||
"backtrace" : 7, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_add_phony_target", | |||
"_qt_internal_add_all_qmllint_target", | |||
"_qt_internal_target_enable_qmllint", | |||
"qt6_target_qml_sources", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module", | |||
"add_dependencies", | |||
"_qt_internal_add_phony_target_dependencies" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 2 | |||
}, | |||
{ | |||
"command" : 6, | |||
"file" : 2, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 5, | |||
"file" : 1, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 1, | |||
"line" : 896, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 3021, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 1, | |||
"line" : 1534, | |||
"parent" : 4 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 1, | |||
"line" : 1595, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 299, | |||
"parent" : 6 | |||
}, | |||
{ | |||
"command" : 8, | |||
"file" : 1, | |||
"line" : 1599, | |||
"parent" : 5 | |||
}, | |||
{ | |||
"command" : 7, | |||
"file" : 0, | |||
"line" : 328, | |||
"parent" : 8 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 9, | |||
"id" : "AuseftDDSPlugTest_qmllint_module::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"folder" : | |||
{ | |||
"name" : "/QmlLinter" | |||
}, | |||
"id" : "all_qmllint_module::@6890427a1f51a3e7e1df", | |||
"name" : "all_qmllint_module", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,71 +0,0 @@ | |||
{ | |||
"backtrace" : 4, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_qml_type_registration", | |||
"qt6_add_qml_module", | |||
"qt_add_qml_module", | |||
"add_dependencies" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 1 | |||
}, | |||
{ | |||
"command" : 3, | |||
"file" : 1, | |||
"line" : 79, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 1232, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 0, | |||
"line" : 785, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 3611, | |||
"parent" : 3 | |||
}, | |||
{ | |||
"command" : 4, | |||
"file" : 0, | |||
"line" : 3614, | |||
"parent" : 3 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 5, | |||
"id" : "AuseftDDSPlugTest_qmltyperegistration::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "all_qmltyperegistrations::@6890427a1f51a3e7e1df", | |||
"name" : "all_qmltyperegistrations", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sources" : [], | |||
"type" : "UTILITY" | |||
} |
@@ -1,146 +0,0 @@ | |||
{ | |||
"backtrace" : 3, | |||
"backtraceGraph" : | |||
{ | |||
"commands" : | |||
[ | |||
"add_custom_target", | |||
"_qt_internal_deferred_aotstats_setup", | |||
"add_dependencies" | |||
], | |||
"files" : | |||
[ | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake", | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Qml/Qt6QmlMacros.cmake:1081:EVAL", | |||
"CMakeLists.txt" | |||
], | |||
"nodes" : | |||
[ | |||
{ | |||
"file" : 2 | |||
}, | |||
{ | |||
"file" : 2, | |||
"line" : -1, | |||
"parent" : 0 | |||
}, | |||
{ | |||
"command" : 1, | |||
"file" : 1, | |||
"line" : 1, | |||
"parent" : 1 | |||
}, | |||
{ | |||
"command" : 0, | |||
"file" : 0, | |||
"line" : 1134, | |||
"parent" : 2 | |||
}, | |||
{ | |||
"command" : 2, | |||
"file" : 0, | |||
"line" : 1139, | |||
"parent" : 2 | |||
} | |||
] | |||
}, | |||
"dependencies" : | |||
[ | |||
{ | |||
"backtrace" : 4, | |||
"id" : "AuseftDDSPlugTest_qmltyperegistration::@6890427a1f51a3e7e1df" | |||
}, | |||
{ | |||
"id" : "AuseftDDSPlugTest_autogen_timestamp_deps::@6890427a1f51a3e7e1df" | |||
} | |||
], | |||
"id" : "module_AuseftDDSPlugTest_aotstats_target::@6890427a1f51a3e7e1df", | |||
"name" : "module_AuseftDDSPlugTest_aotstats_target", | |||
"paths" : | |||
{ | |||
"build" : ".", | |||
"source" : "." | |||
}, | |||
"sourceGroups" : | |||
[ | |||
{ | |||
"name" : "", | |||
"sourceIndexes" : | |||
[ | |||
0 | |||
] | |||
}, | |||
{ | |||
"name" : "CMake Rules", | |||
"sourceIndexes" : | |||
[ | |||
1, | |||
2, | |||
3, | |||
4, | |||
5, | |||
6, | |||
7, | |||
8 | |||
] | |||
} | |||
], | |||
"sources" : | |||
[ | |||
{ | |||
"backtrace" : 3, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/module_AuseftDDSPlugTest_aotstats_target", | |||
"sourceGroupIndex" : 0 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/CMakeFiles/module_AuseftDDSPlugTest_aotstats_target.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.rcc/qmlcache/module_AuseftDDSPlugTest.aotstats.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/.rcc/qmlcache/AuseftDDSPlugTest_Main_qml.cpp.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/auseftddsplugtest_qmltyperegistrations.cpp.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/qt6auseftddsplugtest_debug_metatypes.json.gen.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/meta_types/AuseftDDSPlugTest_json_file_list.txt.rule", | |||
"sourceGroupIndex" : 1 | |||
}, | |||
{ | |||
"backtrace" : 0, | |||
"isGenerated" : true, | |||
"path" : "build/AuseftDDSPlugTest_autogen/timestamp.rule", | |||
"sourceGroupIndex" : 1 | |||
} | |||
], | |||
"type" : "UTILITY" | |||
} |
@@ -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 "lib") | |||
endif() | |||
if(NOT QT_DEPLOY_PLUGINS_DIR) | |||
set(QT_DEPLOY_PLUGINS_DIR "plugins") | |||
endif() | |||
if(NOT QT_DEPLOY_QML_DIR) | |||
set(QT_DEPLOY_QML_DIR "qml") | |||
endif() | |||
if(NOT QT_DEPLOY_TRANSLATIONS_DIR) | |||
set(QT_DEPLOY_TRANSLATIONS_DIR "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 "/usr/local/lib/gcc/x86_64-pc-linux-gnu/10.5.0;/usr/local/lib64;/lib/x86_64-linux-gnu;/lib64;/usr/lib/x86_64-linux-gnu;/usr/lib64;/usr/local/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/suzj/AuseftDDSPlugins/build/.qt") | |||
set(__QT_DEPLOY_VERBOSE "") | |||
set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6") | |||
set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0") | |||
set(__QT_DEPLOY_ACTIVE_CONFIG "Debug") | |||
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 "/home/suzj/Qt/6.8.1/gcc_64") | |||
set(__QT_DEPLOY_QT_INSTALL_BINS "bin") | |||
set(__QT_DEPLOY_QT_INSTALL_DATA ".") | |||
set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "libexec") | |||
set(__QT_DEPLOY_QT_INSTALL_PLUGINS "plugins") | |||
set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "translations") | |||
set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "/home/suzj/Qt/6.8.1/gcc_64/bin/qtpaths6") | |||
set(__QT_DEPLOY_PLUGINS "") | |||
set(__QT_DEPLOY_MUST_ADJUST_PLUGINS_RPATH "") | |||
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/suzj/AuseftDDSPlugins/build/.qt/QtDeployTargets.cmake" | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake" | |||
"/home/suzj/Qt/6.8.1/gcc_64/lib/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) |
@@ -1,4 +0,0 @@ | |||
set(__QT_DEPLOY_TARGET_AQTSampleMachinePlug_FILE /home/suzj/AuseftDDSPlugins/build/bin/AQTSampleMachinePlug.so.1.0.0) | |||
set(__QT_DEPLOY_TARGET_AQTSampleMachinePlug_TYPE SHARED_LIBRARY) | |||
set(__QT_DEPLOY_TARGET_AuseftDDSPlugTest_FILE /home/suzj/AuseftDDSPlugins/build/bin/AuseftDDSPlugTest) | |||
set(__QT_DEPLOY_TARGET_AuseftDDSPlugTest_TYPE EXECUTABLE) |
@@ -1,20 +0,0 @@ | |||
# Auto-generated deploy QML imports script for target "AuseftDDSPlugTest". | |||
# 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/suzj/AuseftDDSPlugins/build/.qt/qml_imports/AuseftDDSPlugTest_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() |
@@ -1,29 +0,0 @@ | |||
set(qml_import_scanner_imports_count 27) | |||
set(qml_import_scanner_import_0 "CLASSNAME;QtQuick2Plugin;LINKTARGET;Qt6::qtquick2plugin;NAME;QtQuick;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQml;PLUGIN;qmlplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/;RELATIVEPATH;QtQml;TYPE;module;") | |||
set(qml_import_scanner_import_2 "NAME;QML;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Dial.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Drawer.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/HorizontalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Label.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/MenuBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/MenuBarItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Page.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Pane.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ScrollBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ScrollIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ScrollView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/SelectionRectangle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/SplitView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ToolTip.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/TreeViewDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Tumbler.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2fusionstyleplugin;NAME;QtQuick.Controls.Fusion;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Dial.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Drawer.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/HorizontalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Label.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/MenuBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/MenuBarItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Page.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Pane.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ScrollBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ScrollIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ScrollView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SelectionRectangle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SplitView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/StackView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SwipeView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ToolTip.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/TreeViewDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Tumbler.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2materialstyleplugin;NAME;QtQuick.Controls.Material;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Dial.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Drawer.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/HorizontalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Label.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Page.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Pane.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ScrollBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ScrollIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ScrollView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SelectionRectangle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SplitView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/StackView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SwipeView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ToolTip.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Tumbler.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2imaginestyleplugin;NAME;QtQuick.Controls.Imagine;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Dial.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Drawer.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/HorizontalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Label.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/MenuBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/MenuBarItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Page.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Pane.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ScrollBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ScrollIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ScrollView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/SelectionRectangle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/SplitView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/StackView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ToolTip.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Tumbler.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2universalstyleplugin;NAME;QtQuick.Controls.Universal;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Config.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/FocusFrame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/MenuBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/MenuBarItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/StyleImage.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ToolTip.qml;LINKTARGET;Qt6::qtquickcontrols2fluentwinui3styleplugin;NAME;QtQuick.Controls.FluentWinUI3;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/AbstractButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Action.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ActionGroup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ButtonGroup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Calendar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/CalendarModel.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Container.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Control.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/DayOfWeekRow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Dial.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Drawer.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/HorizontalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Label.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/MenuBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/MenuBarItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/MonthGrid.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Page.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Pane.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ScrollBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ScrollIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ScrollView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SelectionRectangle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SplitView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/StackView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SwipeView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ToolTip.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/TreeViewDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Tumbler.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/VerticalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/WeekNumberColumn.qml;LINKTARGET;Qt6::qtquickcontrols2basicstyleplugin;NAME;QtQuick.Controls.Basic;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/ButtonPanel.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/CheckIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/RadioIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/SliderGroove.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/SliderHandle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2fusionstyleimplplugin;NAME;QtQuick.Controls.Fusion.impl;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/BoxShadow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/CheckIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/CursorDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/ElevationEffect.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/RadioIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/RectangularGlow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/RoundedElevationEffect.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/SliderHandle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2materialstyleimplplugin;NAME;QtQuick.Controls.Material.impl;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/impl/OpacityMask.qml;LINKTARGET;Qt6::qtquickcontrols2imaginestyleimplplugin;NAME;QtQuick.Controls.Imagine.impl;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/impl/CheckIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/impl/RadioIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2universalstyleimplplugin;NAME;QtQuick.Controls.Universal.impl;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/impl/ButtonBackground.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/impl/CheckIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/impl/RadioIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2fluentwinui3styleimplplugin;NAME;QtQuick.Controls.FluentWinUI3.impl;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/impl;PLUGIN;qtquickcontrols2basicstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Basic/impl/;RELATIVEPATH;QtQuick/Controls/Basic/impl;TYPE;module;") | |||
@@ -1,14 +0,0 @@ | |||
-rootPath | |||
/home/suzj/AuseftDDSPlugins | |||
-cmake-output | |||
-output-file | |||
/home/suzj/AuseftDDSPlugins/build/.qt/qml_imports/AuseftDDSPlugTest_build.cmake | |||
-importPath | |||
/home/suzj/AuseftDDSPlugins/build/AuseftDDSPlugTest | |||
-importPath | |||
/home/suzj/AuseftDDSPlugins/build | |||
-importPath | |||
/home/suzj/Qt/6.8.1/gcc_64/qml | |||
-qrcFiles | |||
/home/suzj/AuseftDDSPlugins/build/.qt/rcc/qmake_AuseftDDSPlugTest.qrc | |||
/home/suzj/AuseftDDSPlugins/build/.qt/rcc/AuseftDDSPlugTest_raw_qml_0.qrc |
@@ -1,29 +0,0 @@ | |||
set(qml_import_scanner_imports_count 27) | |||
set(qml_import_scanner_import_0 "CLASSNAME;QtQuick2Plugin;LINKTARGET;Qt6::qtquick2plugin;NAME;QtQuick;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQml;PLUGIN;qmlplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQml/;RELATIVEPATH;QtQml;TYPE;module;") | |||
set(qml_import_scanner_import_2 "NAME;QML;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Dial.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Drawer.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/HorizontalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Label.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/MenuBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/MenuBarItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Page.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Pane.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ScrollBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ScrollIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ScrollView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/SelectionRectangle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/SplitView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/ToolTip.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/TreeViewDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/Tumbler.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2fusionstyleplugin;NAME;QtQuick.Controls.Fusion;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Dial.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Drawer.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/HorizontalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Label.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/MenuBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/MenuBarItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Page.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Pane.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ScrollBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ScrollIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ScrollView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SelectionRectangle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SplitView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/StackView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SwipeView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/ToolTip.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/TreeViewDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/Tumbler.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2materialstyleplugin;NAME;QtQuick.Controls.Material;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Dial.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Drawer.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/HorizontalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Label.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Page.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Pane.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ScrollBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ScrollIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ScrollView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SelectionRectangle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SplitView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/StackView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SwipeView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/ToolTip.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/Tumbler.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2imaginestyleplugin;NAME;QtQuick.Controls.Imagine;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Dial.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Drawer.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/HorizontalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Label.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/MenuBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/MenuBarItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Page.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Pane.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ScrollBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ScrollIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ScrollView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/SelectionRectangle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/SplitView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/StackView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/ToolTip.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/Tumbler.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/VerticalHeaderView.qml;LINKTARGET;Qt6::qtquickcontrols2universalstyleplugin;NAME;QtQuick.Controls.Universal;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Config.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/FocusFrame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/MenuBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/MenuBarItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/StyleImage.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/ToolTip.qml;LINKTARGET;Qt6::qtquickcontrols2fluentwinui3styleplugin;NAME;QtQuick.Controls.FluentWinUI3;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/AbstractButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Action.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ActionGroup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ApplicationWindow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/BusyIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Button.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ButtonGroup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Calendar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/CalendarModel.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/CheckBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/CheckDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ComboBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Container.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Control.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/DayOfWeekRow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/DelayButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Dial.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Dialog.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/DialogButtonBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Drawer.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Frame.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/GroupBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/HorizontalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ItemDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Label.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Menu.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/MenuBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/MenuBarItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/MenuItem.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/MenuSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/MonthGrid.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Page.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/PageIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Pane.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Popup.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ProgressBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/RadioButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/RadioDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/RangeSlider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/RoundButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ScrollBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ScrollIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ScrollView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SelectionRectangle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Slider.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SpinBox.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SplitView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/StackView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SwipeDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SwipeView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Switch.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/SwitchDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/TabBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/TabButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/TextArea.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/TextField.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ToolBar.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ToolButton.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ToolSeparator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/ToolTip.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/TreeViewDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/Tumbler.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/VerticalHeaderView.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/WeekNumberColumn.qml;LINKTARGET;Qt6::qtquickcontrols2basicstyleplugin;NAME;QtQuick.Controls.Basic;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/ButtonPanel.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/CheckIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/RadioIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/SliderGroove.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/SliderHandle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Fusion/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2fusionstyleimplplugin;NAME;QtQuick.Controls.Fusion.impl;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/BoxShadow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/CheckIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/CursorDelegate.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/ElevationEffect.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/RadioIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/RectangularGlow.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/RoundedElevationEffect.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/SliderHandle.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Material/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2materialstyleimplplugin;NAME;QtQuick.Controls.Material.impl;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Imagine/impl/OpacityMask.qml;LINKTARGET;Qt6::qtquickcontrols2imaginestyleimplplugin;NAME;QtQuick.Controls.Imagine.impl;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/impl/CheckIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/impl/RadioIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Universal/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2universalstyleimplplugin;NAME;QtQuick.Controls.Universal.impl;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/impl/ButtonBackground.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/impl/CheckIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/impl/RadioIndicator.qml;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/FluentWinUI3/impl/SwitchIndicator.qml;LINKTARGET;Qt6::qtquickcontrols2fluentwinui3styleimplplugin;NAME;QtQuick.Controls.FluentWinUI3.impl;PATH;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/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;/home/suzj/Qt/6.8.1/gcc_64/qml/QtQuick/Controls/Basic/impl;PLUGIN;qtquickcontrols2basicstyleimplplugin;PLUGINISOPTIONAL;;PREFER;:/qt-project.org/imports/QtQuick/Controls/Basic/impl/;RELATIVEPATH;QtQuick/Controls/Basic/impl;TYPE;module;") | |||
@@ -1,14 +0,0 @@ | |||
-rootPath | |||
/home/suzj/AuseftDDSPlugins | |||
-cmake-output | |||
-output-file | |||
/home/suzj/AuseftDDSPlugins/build/.qt/qml_imports/AuseftDDSPlugTest_conf.cmake | |||
-importPath | |||
/home/suzj/AuseftDDSPlugins/build/AuseftDDSPlugTest | |||
-importPath | |||
/home/suzj/AuseftDDSPlugins/build | |||
-importPath | |||
/home/suzj/Qt/6.8.1/gcc_64/qml | |||
-qrcFiles | |||
/home/suzj/AuseftDDSPlugins/build/.qt/rcc/qmake_AuseftDDSPlugTest.qrc | |||
/home/suzj/AuseftDDSPlugins/build/.qt/rcc/AuseftDDSPlugTest_raw_qml_0.qrc |
@@ -1,6 +0,0 @@ | |||
<RCC> | |||
<qresource prefix="/qt/qml/AuseftDDSPlugTest/"> | |||
<file alias="Main.qml">/home/suzj/AuseftDDSPlugins/Main.qml</file> | |||
</qresource> | |||
</RCC> | |||
@@ -1,6 +0,0 @@ | |||
<RCC> | |||
<qresource prefix="/qt/qml/AuseftDDSPlugTest"> | |||
<file alias="qmldir">/home/suzj/AuseftDDSPlugins/build/AuseftDDSPlugTest/qmldir</file> | |||
</qresource> | |||
</RCC> | |||
@@ -1,262 +0,0 @@ | |||
/**************************************************************************** | |||
** Resource object code | |||
** | |||
** Created by: The Resource Compiler for Qt version 6.8.1 | |||
** | |||
** WARNING! All changes made in this file will be lost! | |||
*****************************************************************************/ | |||
#ifdef _MSC_VER | |||
// disable informational message "function ... selected for automatic inline expansion" | |||
#pragma warning (disable: 4711) | |||
#endif | |||
static const unsigned char qt_resource_data[] = { | |||
// Main.qml | |||
0x0,0x0,0x8,0xb4, | |||
0x69, | |||
0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0xd,0xa,0x69, | |||
0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0x2e,0x43,0x6f, | |||
0x6e,0x74,0x72,0x6f,0x6c,0x73,0xd,0xa,0x69,0x6d,0x70,0x6f,0x72,0x74,0x20,0x51, | |||
0x74,0x51,0x75,0x69,0x63,0x6b,0x2e,0x4c,0x61,0x79,0x6f,0x75,0x74,0x73,0xd,0xa, | |||
0xd,0xa,0x57,0x69,0x6e,0x64,0x6f,0x77,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20, | |||
0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x36,0x34,0x30,0xd,0xa,0x20,0x20,0x20,0x20, | |||
0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x34,0x38,0x30,0xd,0xa,0x20,0x20,0x20, | |||
0x20,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3a,0x20,0x74,0x72,0x75,0x65,0xd,0xa, | |||
0x20,0x20,0x20,0x20,0x74,0x69,0x74,0x6c,0x65,0x3a,0x20,0x71,0x73,0x54,0x72,0x28, | |||
0x22,0x41,0x75,0x73,0x65,0x66,0x74,0x44,0x44,0x53,0x50,0x6c,0x75,0x67,0x54,0x65, | |||
0x73,0x74,0x22,0x29,0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20,0x70,0x72,0x6f,0x70, | |||
0x65,0x72,0x74,0x79,0x20,0x76,0x61,0x72,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, | |||
0x50,0x6c,0x75,0x67,0x69,0x6e,0x3a,0x20,0x6e,0x75,0x6c,0x6c,0xd,0xa,0xd,0xa, | |||
0x20,0x20,0x20,0x20,0x43,0x6f,0x6c,0x75,0x6d,0x6e,0x4c,0x61,0x79,0x6f,0x75,0x74, | |||
0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x61,0x6e,0x63,0x68, | |||
0x6f,0x72,0x73,0x2e,0x63,0x65,0x6e,0x74,0x65,0x72,0x49,0x6e,0x3a,0x20,0x70,0x61, | |||
0x72,0x65,0x6e,0x74,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x70, | |||
0x61,0x63,0x69,0x6e,0x67,0x3a,0x20,0x32,0x30,0xd,0xa,0xd,0xa,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x61,0x6d,0x70,0x6c,0x65,0x20,0x4d, | |||
0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x50,0x6c,0x75,0x67,0x69,0x6e,0xd,0xa,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x7b,0xd, | |||
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x78, | |||
0x74,0x3a,0x20,0x22,0x4c,0x6f,0x61,0x64,0x20,0x53,0x61,0x6d,0x70,0x6c,0x65,0x20, | |||
0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x50,0x6c,0x75,0x67,0x69,0x6e,0x22,0xd, | |||
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x43, | |||
0x6c,0x69,0x63,0x6b,0x65,0x64,0x3a,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75,0x72,0x72,0x65, | |||
0x6e,0x74,0x50,0x6c,0x75,0x67,0x69,0x6e,0x20,0x3d,0x20,0x70,0x6c,0x75,0x67,0x69, | |||
0x6e,0x4c,0x6f,0x61,0x64,0x65,0x72,0x2e,0x6c,0x6f,0x61,0x64,0x50,0x6c,0x75,0x67, | |||
0x69,0x6e,0x28,0x22,0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x73,0x75,0x7a,0x6a,0x2f,0x41, | |||
0x75,0x73,0x65,0x66,0x74,0x44,0x44,0x53,0x50,0x6c,0x75,0x67,0x69,0x6e,0x73,0x2f, | |||
0x62,0x75,0x69,0x6c,0x64,0x2f,0x62,0x69,0x6e,0x2f,0x41,0x51,0x54,0x53,0x61,0x6d, | |||
0x70,0x6c,0x65,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x50,0x6c,0x75,0x67,0x2e,0x73, | |||
0x6f,0x22,0x29,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74, | |||
0x50,0x6c,0x75,0x67,0x69,0x6e,0x29,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69, | |||
0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x6c,0x75,0x67,0x69,0x6e, | |||
0x2e,0x69,0x6e,0x69,0x74,0x28,0x29,0x29,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x54,0x65,0x78,0x74,0x2e,0x74, | |||
0x65,0x78,0x74,0x20,0x3d,0x20,0x22,0x53,0x61,0x6d,0x70,0x6c,0x65,0x20,0x4d,0x61, | |||
0x63,0x68,0x69,0x6e,0x65,0x20,0x50,0x6c,0x75,0x67,0x69,0x6e,0x20,0x6c,0x6f,0x61, | |||
0x64,0x65,0x64,0x22,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65, | |||
0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74, | |||
0x75,0x73,0x54,0x65,0x78,0x74,0x2e,0x74,0x65,0x78,0x74,0x20,0x3d,0x20,0x22,0x46, | |||
0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c, | |||
0x69,0x7a,0x65,0x20,0x53,0x61,0x6d,0x70,0x6c,0x65,0x20,0x4d,0x61,0x63,0x68,0x69, | |||
0x6e,0x65,0x20,0x50,0x6c,0x75,0x67,0x69,0x6e,0x22,0xd,0xa,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa, | |||
0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x50,0x61,0x63, | |||
0x6b,0x61,0x67,0x65,0x20,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x50,0x6c,0x75, | |||
0x67,0x69,0x6e,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x42,0x75,0x74, | |||
0x74,0x6f,0x6e,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x74,0x65,0x78,0x74,0x3a,0x20,0x22,0x4c,0x6f,0x61,0x64,0x20,0x50, | |||
0x61,0x63,0x6b,0x61,0x67,0x65,0x20,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x50, | |||
0x6c,0x75,0x67,0x69,0x6e,0x22,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x65,0x64,0x3a,0x20,0x7b, | |||
0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x6c,0x75,0x67,0x69,0x6e,0x20, | |||
0x3d,0x20,0x70,0x6c,0x75,0x67,0x69,0x6e,0x4c,0x6f,0x61,0x64,0x65,0x72,0x2e,0x6c, | |||
0x6f,0x61,0x64,0x50,0x6c,0x75,0x67,0x69,0x6e,0x28,0x22,0x2f,0x68,0x6f,0x6d,0x65, | |||
0x2f,0x73,0x75,0x7a,0x6a,0x2f,0x41,0x75,0x73,0x65,0x66,0x74,0x44,0x44,0x53,0x50, | |||
0x6c,0x75,0x67,0x69,0x6e,0x73,0x2f,0x62,0x75,0x69,0x6c,0x64,0x2f,0x62,0x69,0x6e, | |||
0x2f,0x41,0x51,0x54,0x50,0x61,0x63,0x6b,0x61,0x67,0x65,0x4d,0x61,0x63,0x68,0x69, | |||
0x6e,0x65,0x50,0x6c,0x75,0x67,0x2e,0x73,0x6f,0x22,0x29,0xd,0xa,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20, | |||
0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50,0x6c,0x75,0x67,0x69,0x6e,0x29,0x20, | |||
0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65, | |||
0x6e,0x74,0x50,0x6c,0x75,0x67,0x69,0x6e,0x2e,0x69,0x6e,0x69,0x74,0x28,0x29,0x29, | |||
0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74, | |||
0x75,0x73,0x54,0x65,0x78,0x74,0x2e,0x74,0x65,0x78,0x74,0x20,0x3d,0x20,0x22,0x50, | |||
0x61,0x63,0x6b,0x61,0x67,0x65,0x20,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x50, | |||
0x6c,0x75,0x67,0x69,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x22,0xd,0xa,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0xd,0xa,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x54,0x65,0x78,0x74,0x2e, | |||
0x74,0x65,0x78,0x74,0x20,0x3d,0x20,0x22,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74, | |||
0x6f,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x20,0x50,0x61,0x63, | |||
0x6b,0x61,0x67,0x65,0x20,0x4d,0x61,0x63,0x68,0x69,0x6e,0x65,0x20,0x50,0x6c,0x75, | |||
0x67,0x69,0x6e,0x22,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0x53,0x65,0x6e,0x64,0x20,0x44,0x61,0x74,0x61, | |||
0x20,0x42,0x75,0x74,0x74,0x6f,0x6e,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x42,0x75,0x74,0x74,0x6f,0x6e,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x65,0x78,0x74,0x3a,0x20,0x22,0x53,0x65, | |||
0x6e,0x64,0x20,0x44,0x61,0x74,0x61,0x22,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x6f,0x6e,0x43,0x6c,0x69,0x63,0x6b,0x65,0x64,0x3a, | |||
0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x69,0x66,0x20,0x28,0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x50, | |||
0x6c,0x75,0x67,0x69,0x6e,0x29,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x75, | |||
0x72,0x72,0x65,0x6e,0x74,0x50,0x6c,0x75,0x67,0x69,0x6e,0x2e,0x70,0x75,0x62,0x6c, | |||
0x69,0x73,0x68,0x4f,0x6e,0x63,0x65,0x28,0x29,0x20,0x20,0x2f,0x2f,0x20,0xe8,0xb0, | |||
0x83,0xe7,0x94,0xa8,0xe5,0xbd,0x93,0xe5,0x89,0x8d,0xe6,0x8f,0x92,0xe4,0xbb,0xb6, | |||
0xe7,0x9a,0x84,0x20,0x70,0x75,0x62,0x6c,0x69,0x73,0x68,0x4f,0x6e,0x63,0x65,0x20, | |||
0xe6,0x96,0xb9,0xe6,0xb3,0x95,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b, | |||
0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x54,0x65,0x78,0x74, | |||
0x2e,0x74,0x65,0x78,0x74,0x20,0x3d,0x20,0x22,0x4e,0x6f,0x20,0x70,0x6c,0x75,0x67, | |||
0x69,0x6e,0x20,0x6c,0x6f,0x61,0x64,0x65,0x64,0x22,0xd,0xa,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0xd,0xa,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x2f,0x2f,0x20,0xe6,0x98,0xbe,0xe7,0xa4,0xba,0xe7,0x8a,0xb6,0xe6, | |||
0x80,0x81,0xe4,0xbf,0xa1,0xe6,0x81,0xaf,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x54,0x65,0x78,0x74,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x69,0x64,0x3a,0x20,0x73,0x74,0x61,0x74,0x75,0x73, | |||
0x54,0x65,0x78,0x74,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x74,0x65,0x78,0x74,0x3a,0x20,0x22,0x52,0x65,0x61,0x64,0x79,0x22,0xd, | |||
0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x63,0x6f,0x6c, | |||
0x6f,0x72,0x3a,0x20,0x22,0x62,0x6c,0x61,0x63,0x6b,0x22,0xd,0xa,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0xd, | |||
0xa,0x20,0x20,0x20,0x20,0x2f,0x2f,0x20,0xe5,0xa4,0x84,0xe7,0x90,0x86,0xe6,0x8f, | |||
0x92,0xe4,0xbb,0xb6,0xe5,0x8a,0xa0,0xe8,0xbd,0xbd,0xe9,0x94,0x99,0xe8,0xaf,0xaf, | |||
0xd,0xa,0x20,0x20,0x20,0x20,0x43,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6f,0x6e, | |||
0x73,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x72, | |||
0x67,0x65,0x74,0x3a,0x20,0x70,0x6c,0x75,0x67,0x69,0x6e,0x4c,0x6f,0x61,0x64,0x65, | |||
0x72,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x66,0x75,0x6e,0x63,0x74, | |||
0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x4d,0x65,0x73,0x73,0x61,0x67,0x65,0x50,0x75,0x62, | |||
0x6c,0x69,0x73,0x68,0x65,0x64,0x28,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0x2c,0x20, | |||
0x69,0x6e,0x64,0x65,0x78,0x29,0x20,0x7b,0xd,0xa,0x20,0x20,0x20,0x20,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x73,0x74,0x61,0x74,0x75,0x73,0x54,0x65,0x78,0x74, | |||
0x2e,0x74,0x65,0x78,0x74,0x20,0x3d,0x20,0x22,0x4d,0x65,0x73,0x73,0x61,0x67,0x65, | |||
0x20,0x23,0x22,0x20,0x2b,0x20,0x69,0x6e,0x64,0x65,0x78,0x20,0x2b,0x20,0x22,0x3a, | |||
0x20,0x22,0x20,0x2b,0x20,0x6d,0x65,0x73,0x73,0x61,0x67,0x65,0xd,0xa,0x20,0x20, | |||
0x20,0x20,0x20,0x20,0x20,0x20,0x7d,0xd,0xa,0x20,0x20,0x20,0x20,0x7d,0xd,0xa, | |||
0x7d,0xd,0xa, | |||
}; | |||
static const unsigned char qt_resource_name[] = { | |||
// qt | |||
0x0,0x2, | |||
0x0,0x0,0x7,0x84, | |||
0x0,0x71, | |||
0x0,0x74, | |||
// qml | |||
0x0,0x3, | |||
0x0,0x0,0x78,0x3c, | |||
0x0,0x71, | |||
0x0,0x6d,0x0,0x6c, | |||
// AuseftDDSPlugTest | |||
0x0,0x11, | |||
0x9,0x8e,0xba,0xa4, | |||
0x0,0x41, | |||
0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x66,0x0,0x74,0x0,0x44,0x0,0x44,0x0,0x53,0x0,0x50,0x0,0x6c,0x0,0x75,0x0,0x67,0x0,0x54,0x0,0x65,0x0,0x73,0x0,0x74, | |||
// Main.qml | |||
0x0,0x8, | |||
0x8,0x1,0x5e,0x5c, | |||
0x0,0x4d, | |||
0x0,0x61,0x0,0x69,0x0,0x6e,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c, | |||
}; | |||
static const unsigned char qt_resource_struct[] = { | |||
// : | |||
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, | |||
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | |||
// :/qt | |||
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2, | |||
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | |||
// :/qt/qml | |||
0x0,0x0,0x0,0xa,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3, | |||
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | |||
// :/qt/qml/AuseftDDSPlugTest | |||
0x0,0x0,0x0,0x16,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4, | |||
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | |||
// :/qt/qml/AuseftDDSPlugTest/Main.qml | |||
0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, | |||
0x0,0x0,0x1,0x94,0x3f,0x8b,0xe8,0x17, | |||
}; | |||
#ifdef QT_NAMESPACE | |||
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name | |||
# define QT_RCC_MANGLE_NAMESPACE0(x) x | |||
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b | |||
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b) | |||
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \ | |||
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE)) | |||
#else | |||
# define QT_RCC_PREPEND_NAMESPACE(name) name | |||
# define QT_RCC_MANGLE_NAMESPACE(name) name | |||
#endif | |||
#if defined(QT_INLINE_NAMESPACE) | |||
inline namespace QT_NAMESPACE { | |||
#elif defined(QT_NAMESPACE) | |||
namespace QT_NAMESPACE { | |||
#endif | |||
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); | |||
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); | |||
#ifdef QT_NAMESPACE | |||
} | |||
#endif | |||
int QT_RCC_MANGLE_NAMESPACE(qInitResources_AuseftDDSPlugTest_raw_qml_0)(); | |||
int QT_RCC_MANGLE_NAMESPACE(qInitResources_AuseftDDSPlugTest_raw_qml_0)() | |||
{ | |||
int version = 3; | |||
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData) | |||
(version, qt_resource_struct, qt_resource_name, qt_resource_data); | |||
return 1; | |||
} | |||
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_AuseftDDSPlugTest_raw_qml_0)(); | |||
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_AuseftDDSPlugTest_raw_qml_0)() | |||
{ | |||
int version = 3; | |||
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData) | |||
(version, qt_resource_struct, qt_resource_name, qt_resource_data); | |||
return 1; | |||
} | |||
#ifdef __clang__ | |||
# pragma clang diagnostic push | |||
# pragma clang diagnostic ignored "-Wexit-time-destructors" | |||
#endif | |||
namespace { | |||
struct initializer { | |||
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_AuseftDDSPlugTest_raw_qml_0)(); } | |||
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_AuseftDDSPlugTest_raw_qml_0)(); } | |||
} dummy; | |||
} | |||
#ifdef __clang__ | |||
# pragma clang diagnostic pop | |||
#endif |
@@ -1,130 +0,0 @@ | |||
/**************************************************************************** | |||
** Resource object code | |||
** | |||
** Created by: The Resource Compiler for Qt version 6.8.1 | |||
** | |||
** WARNING! All changes made in this file will be lost! | |||
*****************************************************************************/ | |||
#ifdef _MSC_VER | |||
// disable informational message "function ... selected for automatic inline expansion" | |||
#pragma warning (disable: 4711) | |||
#endif | |||
static const unsigned char qt_resource_data[] = { | |||
// qmldir | |||
0x0,0x0,0x0,0x73, | |||
0x6d, | |||
0x6f,0x64,0x75,0x6c,0x65,0x20,0x41,0x75,0x73,0x65,0x66,0x74,0x44,0x44,0x53,0x50, | |||
0x6c,0x75,0x67,0x54,0x65,0x73,0x74,0xa,0x74,0x79,0x70,0x65,0x69,0x6e,0x66,0x6f, | |||
0x20,0x41,0x75,0x73,0x65,0x66,0x74,0x44,0x44,0x53,0x50,0x6c,0x75,0x67,0x54,0x65, | |||
0x73,0x74,0x2e,0x71,0x6d,0x6c,0x74,0x79,0x70,0x65,0x73,0xa,0x70,0x72,0x65,0x66, | |||
0x65,0x72,0x20,0x3a,0x2f,0x71,0x74,0x2f,0x71,0x6d,0x6c,0x2f,0x41,0x75,0x73,0x65, | |||
0x66,0x74,0x44,0x44,0x53,0x50,0x6c,0x75,0x67,0x54,0x65,0x73,0x74,0x2f,0xa,0x4d, | |||
0x61,0x69,0x6e,0x20,0x31,0x2e,0x30,0x20,0x4d,0x61,0x69,0x6e,0x2e,0x71,0x6d,0x6c, | |||
0xa,0xa, | |||
}; | |||
static const unsigned char qt_resource_name[] = { | |||
// qt | |||
0x0,0x2, | |||
0x0,0x0,0x7,0x84, | |||
0x0,0x71, | |||
0x0,0x74, | |||
// qml | |||
0x0,0x3, | |||
0x0,0x0,0x78,0x3c, | |||
0x0,0x71, | |||
0x0,0x6d,0x0,0x6c, | |||
// AuseftDDSPlugTest | |||
0x0,0x11, | |||
0x9,0x8e,0xba,0xa4, | |||
0x0,0x41, | |||
0x0,0x75,0x0,0x73,0x0,0x65,0x0,0x66,0x0,0x74,0x0,0x44,0x0,0x44,0x0,0x53,0x0,0x50,0x0,0x6c,0x0,0x75,0x0,0x67,0x0,0x54,0x0,0x65,0x0,0x73,0x0,0x74, | |||
// qmldir | |||
0x0,0x6, | |||
0x7,0x84,0x2b,0x2, | |||
0x0,0x71, | |||
0x0,0x6d,0x0,0x6c,0x0,0x64,0x0,0x69,0x0,0x72, | |||
}; | |||
static const unsigned char qt_resource_struct[] = { | |||
// : | |||
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, | |||
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | |||
// :/qt | |||
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2, | |||
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | |||
// :/qt/qml | |||
0x0,0x0,0x0,0xa,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x3, | |||
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | |||
// :/qt/qml/AuseftDDSPlugTest | |||
0x0,0x0,0x0,0x16,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4, | |||
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, | |||
// :/qt/qml/AuseftDDSPlugTest/qmldir | |||
0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, | |||
0x0,0x0,0x1,0x94,0x3f,0x8b,0xe7,0xc3, | |||
}; | |||
#ifdef QT_NAMESPACE | |||
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name | |||
# define QT_RCC_MANGLE_NAMESPACE0(x) x | |||
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b | |||
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b) | |||
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \ | |||
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE)) | |||
#else | |||
# define QT_RCC_PREPEND_NAMESPACE(name) name | |||
# define QT_RCC_MANGLE_NAMESPACE(name) name | |||
#endif | |||
#if defined(QT_INLINE_NAMESPACE) | |||
inline namespace QT_NAMESPACE { | |||
#elif defined(QT_NAMESPACE) | |||
namespace QT_NAMESPACE { | |||
#endif | |||
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); | |||
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *); | |||
#ifdef QT_NAMESPACE | |||
} | |||
#endif | |||
int QT_RCC_MANGLE_NAMESPACE(qInitResources_qmake_AuseftDDSPlugTest)(); | |||
int QT_RCC_MANGLE_NAMESPACE(qInitResources_qmake_AuseftDDSPlugTest)() | |||
{ | |||
int version = 3; | |||
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData) | |||
(version, qt_resource_struct, qt_resource_name, qt_resource_data); | |||
return 1; | |||
} | |||
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qmake_AuseftDDSPlugTest)(); | |||
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qmake_AuseftDDSPlugTest)() | |||
{ | |||
int version = 3; | |||
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData) | |||
(version, qt_resource_struct, qt_resource_name, qt_resource_data); | |||
return 1; | |||
} | |||
#ifdef __clang__ | |||
# pragma clang diagnostic push | |||
# pragma clang diagnostic ignored "-Wexit-time-destructors" | |||
#endif | |||
namespace { | |||
struct initializer { | |||
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_qmake_AuseftDDSPlugTest)(); } | |||
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_qmake_AuseftDDSPlugTest)(); } | |||
} dummy; | |||
} | |||
#ifdef __clang__ | |||
# pragma clang diagnostic pop | |||
#endif |
@@ -1,21 +0,0 @@ | |||
The MIT License (MIT) | |||
Copyright (c) 2019 JFrog | |||
Permission is hereby granted, free of charge, to any person obtaining a copy | |||
of this software and associated documentation files (the "Software"), to deal | |||
in the Software without restriction, including without limitation the rights | |||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |||
copies of the Software, and to permit persons to whom the Software is | |||
furnished to do so, subject to the following conditions: | |||
The above copyright notice and this permission notice shall be included in all | |||
copies or substantial portions of the Software. | |||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |||
SOFTWARE. |
@@ -1,314 +0,0 @@ | |||
# | |||
# Internal Qt Creator variable reference | |||
# | |||
foreach(qtcreator_var | |||
QT_QMAKE_EXECUTABLE CMAKE_PREFIX_PATH CMAKE_C_COMPILER CMAKE_CXX_COMPILER | |||
CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO) | |||
set(__just_reference_${qtcreator_var} ${${qtcreator_var}}) | |||
endforeach() | |||
option(QT_CREATOR_SOURCE_GROUPS "Qt Creator source groups extensions" ON) | |||
if (QT_CREATOR_SOURCE_GROUPS) | |||
source_group("Resources" REGULAR_EXPRESSION "\\.(pdf|plist|png|jpeg|jpg|storyboard|xcassets|qrc|svg|gif|ico|webp)$") | |||
source_group("Forms" REGULAR_EXPRESSION "\\.(ui)$") | |||
source_group("State charts" REGULAR_EXPRESSION "\\.(scxml)$") | |||
endif() | |||
if (EXISTS "${CMAKE_SOURCE_DIR}/QtCreatorPackageManager.cmake") | |||
include("${CMAKE_SOURCE_DIR}/QtCreatorPackageManager.cmake") | |||
endif() | |||
if (QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP) | |||
return() | |||
endif() | |||
option(QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP "Skip Qt Creator's package manager auto-setup" OFF) | |||
# Store the C/C++ object output extension | |||
if (CMAKE_VERSION GREATER_EQUAL "3.19") | |||
cmake_language(DEFER CALL set CMAKE_C_OUTPUT_EXTENSION "${CMAKE_C_OUTPUT_EXTENSION}" CACHE STRING "" FORCE) | |||
cmake_language(DEFER CALL set CMAKE_CXX_OUTPUT_EXTENSION "${CMAKE_CXX_OUTPUT_EXTENSION}" CACHE STRING "" FORCE) | |||
endif() | |||
macro(qtc_auto_setup_compiler_standard toolchainFile) | |||
foreach(lang_var C CXX CUDA OBJC OBJCXX) | |||
foreach(prop_var STANDARD STANDARD_REQUIRED EXTENSIONS) | |||
if (CMAKE_${lang_var}_${prop_var}) | |||
file(APPEND "${toolchainFile}" | |||
"set(CMAKE_${lang_var}_${prop_var} ${CMAKE_${lang_var}_${prop_var}})\n") | |||
endif() | |||
endforeach() | |||
endforeach() | |||
# Forward important CMake variables to the package manager in the toolchain file | |||
foreach(fwd_var CMAKE_MSVC_RUNTIME_LIBRARY CMAKE_SYSROOT CMAKE_OSX_SYSROOT CMAKE_OSX_ARCHITECTURES) | |||
if (${fwd_var}) | |||
file(APPEND "${toolchainFile}" | |||
"set(${fwd_var} ${${fwd_var}})\n") | |||
endif() | |||
endforeach() | |||
endmacro() | |||
# | |||
# conan | |||
# | |||
macro(qtc_auto_setup_conan) | |||
foreach(file conanfile.txt conanfile.py) | |||
if (EXISTS "${CMAKE_SOURCE_DIR}/${file}") | |||
set(conanfile_txt "${CMAKE_SOURCE_DIR}/${file}") | |||
break() | |||
endif() | |||
endforeach() | |||
if (conanfile_txt AND NOT QT_CREATOR_SKIP_CONAN_SETUP) | |||
option(QT_CREATOR_SKIP_CONAN_SETUP "Skip Qt Creator's conan package manager auto-setup" OFF) | |||
set(QT_CREATOR_CONAN_BUILD_POLICY "missing" CACHE STRING "Qt Creator's conan package manager auto-setup build policy. This is used for the BUILD property of cmake_conan_run") | |||
set_property( | |||
DIRECTORY "${CMAKE_SOURCE_DIR}" | |||
APPEND | |||
PROPERTY CMAKE_CONFIGURE_DEPENDS "${conanfile_txt}") | |||
find_program(conan_program conan) | |||
if (NOT conan_program) | |||
message(WARNING "Qt Creator: conan executable not found. " | |||
"Package manager auto-setup will be skipped. " | |||
"To disable this warning set QT_CREATOR_SKIP_CONAN_SETUP to ON.") | |||
return() | |||
endif() | |||
execute_process(COMMAND ${conan_program} --version | |||
RESULT_VARIABLE result_code | |||
OUTPUT_VARIABLE conan_version_output | |||
ERROR_VARIABLE conan_version_output) | |||
if (NOT result_code EQUAL 0) | |||
message(FATAL_ERROR "conan --version failed='${result_code}: ${conan_version_output}") | |||
endif() | |||
string(REGEX REPLACE ".*Conan version ([0-9].[0-9]).*" "\\1" conan_version "${conan_version_output}") | |||
set(conanfile_timestamp_file "${CMAKE_BINARY_DIR}/conan-dependencies/conanfile.timestamp") | |||
file(TIMESTAMP "${conanfile_txt}" conanfile_timestamp) | |||
set(do_conan_installation ON) | |||
if (EXISTS "${conanfile_timestamp_file}") | |||
file(READ "${conanfile_timestamp_file}" old_conanfile_timestamp) | |||
if ("${conanfile_timestamp}" STREQUAL "${old_conanfile_timestamp}") | |||
set(do_conan_installation OFF) | |||
endif() | |||
endif() | |||
set(conanfile_build_policy_file "${CMAKE_BINARY_DIR}/conan-dependencies/conanfile.buildpolicy") | |||
if (EXISTS "${conanfile_build_policy_file}") | |||
file(READ "${conanfile_build_policy_file}" build_policy) | |||
if (NOT "${build_policy}" STREQUAL "${QT_CREATOR_CONAN_BUILD_POLICY}") | |||
set(do_conan_installation ON) | |||
endif() | |||
endif() | |||
if (do_conan_installation) | |||
message(STATUS "Qt Creator: conan package manager auto-setup. " | |||
"Skip this step by setting QT_CREATOR_SKIP_CONAN_SETUP to ON.") | |||
file(COPY "${conanfile_txt}" DESTINATION "${CMAKE_BINARY_DIR}/conan-dependencies/") | |||
file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" " | |||
set(CMAKE_C_COMPILER \"${CMAKE_C_COMPILER}\") | |||
set(CMAKE_CXX_COMPILER \"${CMAKE_CXX_COMPILER}\") | |||
") | |||
qtc_auto_setup_compiler_standard("${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake") | |||
if (CMAKE_TOOLCHAIN_FILE) | |||
file(APPEND "${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" | |||
"include(\"${CMAKE_TOOLCHAIN_FILE}\")\n") | |||
endif() | |||
file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/CMakeLists.txt" " | |||
cmake_minimum_required(VERSION 3.15) | |||
unset(CMAKE_PROJECT_INCLUDE_BEFORE CACHE) | |||
project(conan-setup) | |||
if (${conan_version} VERSION_GREATER_EQUAL 2.0) | |||
set(CONAN_COMMAND \"${conan_program}\") | |||
include(\"${CMAKE_CURRENT_LIST_DIR}/conan_provider.cmake\") | |||
conan_profile_detect_default() | |||
detect_host_profile(\"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\") | |||
set(build_types \${CMAKE_BUILD_TYPE}) | |||
if (CMAKE_CONFIGURATION_TYPES) | |||
set(build_types \${CMAKE_CONFIGURATION_TYPES}) | |||
endif() | |||
foreach(type \${build_types}) | |||
conan_install( | |||
-pr \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\" | |||
--build=${QT_CREATOR_CONAN_BUILD_POLICY} | |||
-s build_type=\${type} | |||
-g CMakeDeps) | |||
endforeach() | |||
get_property(CONAN_INSTALL_SUCCESS GLOBAL PROPERTY CONAN_INSTALL_SUCCESS) | |||
if (CONAN_INSTALL_SUCCESS) | |||
get_property(CONAN_GENERATORS_FOLDER GLOBAL PROPERTY CONAN_GENERATORS_FOLDER) | |||
file(TO_CMAKE_PATH \"\${CONAN_GENERATORS_FOLDER}\" CONAN_GENERATORS_FOLDER) | |||
file(WRITE \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_paths.cmake\" \" | |||
list(PREPEND CMAKE_PREFIX_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") | |||
list(PREPEND CMAKE_MODULE_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") | |||
list(PREPEND CMAKE_FIND_ROOT_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") | |||
list(REMOVE_DUPLICATES CMAKE_PREFIX_PATH) | |||
list(REMOVE_DUPLICATES CMAKE_MODULE_PATH) | |||
list(REMOVE_DUPLICATES CMAKE_FIND_ROOT_PATH) | |||
set(CMAKE_PREFIX_PATH \\\"\\\${CMAKE_PREFIX_PATH}\\\" CACHE STRING \\\"\\\" FORCE) | |||
set(CMAKE_MODULE_PATH \\\"\\\${CMAKE_MODULE_PATH}\\\" CACHE STRING \\\"\\\" FORCE) | |||
set(CMAKE_FIND_ROOT_PATH \\\"\\\${CMAKE_FIND_ROOT_PATH}\\\" CACHE STRING \\\"\\\" FORCE) | |||
\") | |||
endif() | |||
else() | |||
include(\"${CMAKE_CURRENT_LIST_DIR}/conan.cmake\") | |||
conan_cmake_run( | |||
CONANFILE \"${conanfile_txt}\" | |||
INSTALL_FOLDER \"${CMAKE_BINARY_DIR}/conan-dependencies\" | |||
GENERATORS cmake_paths cmake_find_package json | |||
BUILD ${QT_CREATOR_CONAN_BUILD_POLICY} | |||
ENV CONAN_CMAKE_TOOLCHAIN_FILE=\"${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake\" | |||
) | |||
endif() | |||
") | |||
if (NOT DEFINED CMAKE_BUILD_TYPE AND NOT DEFINED CMAKE_CONFIGURATION_TYPES) | |||
set(CMAKE_CONFIGURATION_TYPES "Debug;Release") | |||
endif() | |||
execute_process(COMMAND ${CMAKE_COMMAND} | |||
-S "${CMAKE_BINARY_DIR}/conan-dependencies/" | |||
-B "${CMAKE_BINARY_DIR}/conan-dependencies/build" | |||
-C "${CMAKE_BINARY_DIR}/qtcsettings.cmake" | |||
-D "CMAKE_TOOLCHAIN_FILE=${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" | |||
-G ${CMAKE_GENERATOR} | |||
-D CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} | |||
-D "CMAKE_CONFIGURATION_TYPES=${CMAKE_CONFIGURATION_TYPES}" | |||
RESULT_VARIABLE result | |||
) | |||
if (result EQUAL 0) | |||
file(WRITE "${conanfile_timestamp_file}" "${conanfile_timestamp}") | |||
file(WRITE "${conanfile_build_policy_file}" ${QT_CREATOR_CONAN_BUILD_POLICY}) | |||
else() | |||
message(WARNING "Qt Creator's conan package manager auto-setup failed. Consider setting " | |||
"QT_CREATOR_SKIP_CONAN_SETUP to ON and reconfigure to skip this step.") | |||
return() | |||
endif() | |||
endif() | |||
include("${CMAKE_BINARY_DIR}/conan-dependencies/conan_paths.cmake") | |||
endif() | |||
unset(conanfile_txt) | |||
endmacro() | |||
qtc_auto_setup_conan() | |||
# | |||
# vcpkg | |||
# | |||
macro(qtc_auto_setup_vcpkg) | |||
if (EXISTS "${CMAKE_SOURCE_DIR}/vcpkg.json" AND NOT QT_CREATOR_SKIP_VCPKG_SETUP) | |||
option(QT_CREATOR_SKIP_VCPKG_SETUP "Skip Qt Creator's vcpkg package manager auto-setup" OFF) | |||
set_property( | |||
DIRECTORY "${CMAKE_SOURCE_DIR}" | |||
APPEND | |||
PROPERTY CMAKE_CONFIGURE_DEPENDS "${CMAKE_SOURCE_DIR}/vcpkg.json") | |||
find_program(vcpkg_program vcpkg | |||
PATHS $ENV{VCPKG_ROOT} ${CMAKE_SOURCE_DIR}/vcpkg ${CMAKE_SOURCE_DIR}/3rdparty/vcpkg | |||
NO_DEFAULT_PATH | |||
) | |||
if (NOT vcpkg_program) | |||
message(WARNING "Qt Creator: vcpkg executable not found. " | |||
"Package manager auto-setup will be skipped. " | |||
"To disable this warning set QT_CREATOR_SKIP_VCPKG_SETUP to ON.") | |||
return() | |||
endif() | |||
execute_process(COMMAND ${vcpkg_program} version | |||
RESULT_VARIABLE result_code | |||
OUTPUT_VARIABLE vcpkg_version_output | |||
ERROR_VARIABLE vcpkg_version_output) | |||
if (NOT result_code EQUAL 0) | |||
message(FATAL_ERROR "vcpkg version failed='${result_code}: ${vcpkg_version_output}") | |||
endif() | |||
# Resolve any symlinks | |||
get_filename_component(vpkg_program_real_path ${vcpkg_program} REALPATH) | |||
get_filename_component(vpkg_root ${vpkg_program_real_path} DIRECTORY) | |||
if (NOT EXISTS "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") | |||
message(STATUS "Qt Creator: vcpkg package manager auto-setup. " | |||
"Skip this step by setting QT_CREATOR_SKIP_VCPKG_SETUP to ON.") | |||
file(WRITE "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" " | |||
set(CMAKE_C_COMPILER \"${CMAKE_C_COMPILER}\") | |||
set(CMAKE_CXX_COMPILER \"${CMAKE_CXX_COMPILER}\") | |||
") | |||
qtc_auto_setup_compiler_standard("${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") | |||
if (CMAKE_TOOLCHAIN_FILE AND NOT | |||
CMAKE_TOOLCHAIN_FILE STREQUAL "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") | |||
file(APPEND "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" | |||
"include(\"${CMAKE_TOOLCHAIN_FILE}\")\n") | |||
endif() | |||
if (VCPKG_TARGET_TRIPLET) | |||
set(vcpkg_triplet ${VCPKG_TARGET_TRIPLET}) | |||
else() | |||
if (ANDROID_ABI) | |||
if (ANDROID_ABI STREQUAL "armeabi-v7a") | |||
set(vcpkg_triplet arm-neon-android) | |||
elseif (ANDROID_ABI STREQUAL "arm64-v8a") | |||
set(vcpkg_triplet arm64-android) | |||
elseif (ANDROID_ABI STREQUAL "x86") | |||
set(vcpkg_triplet x86-android) | |||
elseif (ANDROID_ABI STREQUAL "x86_64") | |||
set(vcpkg_triplet x64-android) | |||
else() | |||
message(FATAL_ERROR "Unsupported Android ABI: ${ANDROID_ABI}") | |||
endif() | |||
# Needed by vcpkg/scripts/toolchains/android.cmake | |||
file(APPEND "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" " | |||
set(ENV{ANDROID_NDK_HOME} \"${ANDROID_NDK}\") | |||
") | |||
elseif (WIN32) | |||
set(vcpkg_triplet x64-mingw-static) | |||
if (CMAKE_CXX_COMPILER MATCHES ".*/(.*)/cl.exe") | |||
set(vcpkg_triplet ${CMAKE_MATCH_1}-windows) | |||
endif() | |||
elseif(APPLE) | |||
# We're too early to use CMAKE_HOST_SYSTEM_PROCESSOR | |||
execute_process( | |||
COMMAND uname -m | |||
OUTPUT_VARIABLE __apple_host_system_processor | |||
OUTPUT_STRIP_TRAILING_WHITESPACE) | |||
if (__apple_host_system_processor MATCHES "arm64") | |||
set(vcpkg_triplet arm64-osx) | |||
else() | |||
set(vcpkg_triplet x64-osx) | |||
endif() | |||
else() | |||
set(vcpkg_triplet x64-linux) | |||
endif() | |||
endif() | |||
file(APPEND "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" " | |||
set(VCPKG_TARGET_TRIPLET ${vcpkg_triplet}) | |||
include(\"${vpkg_root}/scripts/buildsystems/vcpkg.cmake\") | |||
") | |||
endif() | |||
set(CMAKE_TOOLCHAIN_FILE "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" CACHE PATH "" FORCE) | |||
# Save CMAKE_PREFIX_PATH and CMAKE_MODULE_PATH as cache variables | |||
if (CMAKE_VERSION GREATER_EQUAL "3.19") | |||
cmake_language(DEFER CALL list REMOVE_DUPLICATES CMAKE_PREFIX_PATH) | |||
cmake_language(DEFER CALL list REMOVE_DUPLICATES CMAKE_MODULE_PATH) | |||
cmake_language(DEFER CALL set CMAKE_PREFIX_PATH "${CMAKE_PREFIX_PATH}" CACHE STRING "" FORCE) | |||
cmake_language(DEFER CALL set CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" CACHE STRING "" FORCE) | |||
endif() | |||
endif() | |||
endmacro() | |||
qtc_auto_setup_vcpkg() |
@@ -1,655 +0,0 @@ | |||
# https://github.com/conan-io/cmake-conan/blob/develop2/conan_provider.cmake | |||
# commit: f6464d1e13ef7a47c569f5061f9607ea63339d39 | |||
# | |||
# The MIT License (MIT) | |||
# | |||
# Copyright (c) 2019 JFrog | |||
# | |||
# Permission is hereby granted, free of charge, to any person obtaining a copy | |||
# of this software and associated documentation files (the "Software"), to deal | |||
# in the Software without restriction, including without limitation the rights | |||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |||
# copies of the Software, and to permit persons to whom the Software is | |||
# furnished to do so, subject to the following conditions: | |||
# | |||
# The above copyright notice and this permission notice shall be included in all | |||
# copies or substantial portions of the Software. | |||
# | |||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |||
# SOFTWARE. | |||
set(CONAN_MINIMUM_VERSION 2.0.5) | |||
function(detect_os OS OS_API_LEVEL OS_SDK OS_SUBSYSTEM OS_VERSION) | |||
# it could be cross compilation | |||
message(STATUS "CMake-Conan: cmake_system_name=${CMAKE_SYSTEM_NAME}") | |||
if(CMAKE_SYSTEM_NAME AND NOT CMAKE_SYSTEM_NAME STREQUAL "Generic") | |||
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin") | |||
set(${OS} Macos PARENT_SCOPE) | |||
elseif(CMAKE_SYSTEM_NAME STREQUAL "QNX") | |||
set(${OS} Neutrino PARENT_SCOPE) | |||
elseif(CMAKE_SYSTEM_NAME STREQUAL "CYGWIN") | |||
set(${OS} Windows PARENT_SCOPE) | |||
set(${OS_SUBSYSTEM} cygwin PARENT_SCOPE) | |||
elseif(CMAKE_SYSTEM_NAME MATCHES "^MSYS") | |||
set(${OS} Windows PARENT_SCOPE) | |||
set(${OS_SUBSYSTEM} msys2 PARENT_SCOPE) | |||
else() | |||
set(${OS} ${CMAKE_SYSTEM_NAME} PARENT_SCOPE) | |||
endif() | |||
if(CMAKE_SYSTEM_NAME STREQUAL "Android") | |||
if(DEFINED ANDROID_PLATFORM) | |||
string(REGEX MATCH "[0-9]+" _OS_API_LEVEL ${ANDROID_PLATFORM}) | |||
elseif(DEFINED CMAKE_SYSTEM_VERSION) | |||
set(_OS_API_LEVEL ${CMAKE_SYSTEM_VERSION}) | |||
endif() | |||
message(STATUS "CMake-Conan: android api level=${_OS_API_LEVEL}") | |||
set(${OS_API_LEVEL} ${_OS_API_LEVEL} PARENT_SCOPE) | |||
endif() | |||
if(CMAKE_SYSTEM_NAME MATCHES "Darwin|iOS|tvOS|watchOS") | |||
# CMAKE_OSX_SYSROOT contains the full path to the SDK for MakeFile/Ninja | |||
# generators, but just has the original input string for Xcode. | |||
if(NOT IS_DIRECTORY ${CMAKE_OSX_SYSROOT}) | |||
set(_OS_SDK ${CMAKE_OSX_SYSROOT}) | |||
else() | |||
if(CMAKE_OSX_SYSROOT MATCHES Simulator) | |||
set(apple_platform_suffix simulator) | |||
else() | |||
set(apple_platform_suffix os) | |||
endif() | |||
if(CMAKE_OSX_SYSROOT MATCHES AppleTV) | |||
set(_OS_SDK "appletv${apple_platform_suffix}") | |||
elseif(CMAKE_OSX_SYSROOT MATCHES iPhone) | |||
set(_OS_SDK "iphone${apple_platform_suffix}") | |||
elseif(CMAKE_OSX_SYSROOT MATCHES Watch) | |||
set(_OS_SDK "watch${apple_platform_suffix}") | |||
endif() | |||
endif() | |||
if(DEFINED _OS_SDK) | |||
message(STATUS "CMake-Conan: cmake_osx_sysroot=${CMAKE_OSX_SYSROOT}") | |||
set(${OS_SDK} ${_OS_SDK} PARENT_SCOPE) | |||
endif() | |||
if(DEFINED CMAKE_OSX_DEPLOYMENT_TARGET) | |||
message(STATUS "CMake-Conan: cmake_osx_deployment_target=${CMAKE_OSX_DEPLOYMENT_TARGET}") | |||
set(${OS_VERSION} ${CMAKE_OSX_DEPLOYMENT_TARGET} PARENT_SCOPE) | |||
endif() | |||
endif() | |||
endif() | |||
endfunction() | |||
function(detect_arch ARCH) | |||
# CMAKE_OSX_ARCHITECTURES can contain multiple architectures, but Conan only supports one. | |||
# Therefore this code only finds one. If the recipes support multiple architectures, the | |||
# build will work. Otherwise, there will be a linker error for the missing architecture(s). | |||
if(DEFINED CMAKE_OSX_ARCHITECTURES) | |||
string(REPLACE " " ";" apple_arch_list "${CMAKE_OSX_ARCHITECTURES}") | |||
list(LENGTH apple_arch_list apple_arch_count) | |||
if(apple_arch_count GREATER 1) | |||
message(WARNING "CMake-Conan: Multiple architectures detected, this will only work if Conan recipe(s) produce fat binaries.") | |||
endif() | |||
endif() | |||
if(CMAKE_SYSTEM_NAME MATCHES "Darwin|iOS|tvOS|watchOS" AND NOT CMAKE_OSX_ARCHITECTURES STREQUAL "") | |||
set(host_arch ${CMAKE_OSX_ARCHITECTURES}) | |||
elseif(MSVC) | |||
set(host_arch ${CMAKE_CXX_COMPILER_ARCHITECTURE_ID}) | |||
else() | |||
set(host_arch ${CMAKE_SYSTEM_PROCESSOR}) | |||
endif() | |||
if(host_arch MATCHES "aarch64|arm64|ARM64") | |||
set(_ARCH armv8) | |||
elseif(host_arch MATCHES "armv7|armv7-a|armv7l|ARMV7") | |||
set(_ARCH armv7) | |||
elseif(host_arch MATCHES armv7s) | |||
set(_ARCH armv7s) | |||
elseif(host_arch MATCHES "i686|i386|X86") | |||
set(_ARCH x86) | |||
elseif(host_arch MATCHES "AMD64|amd64|x86_64|x64") | |||
set(_ARCH x86_64) | |||
endif() | |||
message(STATUS "CMake-Conan: cmake_system_processor=${_ARCH}") | |||
set(${ARCH} ${_ARCH} PARENT_SCOPE) | |||
endfunction() | |||
function(detect_cxx_standard CXX_STANDARD) | |||
set(${CXX_STANDARD} ${CMAKE_CXX_STANDARD} PARENT_SCOPE) | |||
if(CMAKE_CXX_EXTENSIONS) | |||
set(${CXX_STANDARD} "gnu${CMAKE_CXX_STANDARD}" PARENT_SCOPE) | |||
endif() | |||
endfunction() | |||
macro(detect_gnu_libstdcxx) | |||
# _CONAN_IS_GNU_LIBSTDCXX true if GNU libstdc++ | |||
check_cxx_source_compiles(" | |||
#include <cstddef> | |||
#if !defined(__GLIBCXX__) && !defined(__GLIBCPP__) | |||
static_assert(false); | |||
#endif | |||
int main(){}" _CONAN_IS_GNU_LIBSTDCXX) | |||
# _CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI true if C++11 ABI | |||
check_cxx_source_compiles(" | |||
#include <string> | |||
static_assert(sizeof(std::string) != sizeof(void*), \"using libstdc++\"); | |||
int main () {}" _CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) | |||
set(_CONAN_GNU_LIBSTDCXX_SUFFIX "") | |||
if(_CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) | |||
set(_CONAN_GNU_LIBSTDCXX_SUFFIX "11") | |||
endif() | |||
unset (_CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) | |||
endmacro() | |||
macro(detect_libcxx) | |||
# _CONAN_IS_LIBCXX true if LLVM libc++ | |||
check_cxx_source_compiles(" | |||
#include <cstddef> | |||
#if !defined(_LIBCPP_VERSION) | |||
static_assert(false); | |||
#endif | |||
int main(){}" _CONAN_IS_LIBCXX) | |||
endmacro() | |||
function(detect_lib_cxx LIB_CXX) | |||
if(CMAKE_SYSTEM_NAME STREQUAL "Android") | |||
message(STATUS "CMake-Conan: android_stl=${CMAKE_ANDROID_STL_TYPE}") | |||
set(${LIB_CXX} ${CMAKE_ANDROID_STL_TYPE} PARENT_SCOPE) | |||
return() | |||
endif() | |||
include(CheckCXXSourceCompiles) | |||
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU") | |||
detect_gnu_libstdcxx() | |||
set(${LIB_CXX} "libstdc++${_CONAN_GNU_LIBSTDCXX_SUFFIX}" PARENT_SCOPE) | |||
elseif(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang") | |||
set(${LIB_CXX} "libc++" PARENT_SCOPE) | |||
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND NOT CMAKE_SYSTEM_NAME MATCHES "Windows") | |||
# Check for libc++ | |||
detect_libcxx() | |||
if(_CONAN_IS_LIBCXX) | |||
set(${LIB_CXX} "libc++" PARENT_SCOPE) | |||
return() | |||
endif() | |||
# Check for libstdc++ | |||
detect_gnu_libstdcxx() | |||
if(_CONAN_IS_GNU_LIBSTDCXX) | |||
set(${LIB_CXX} "libstdc++${_CONAN_GNU_LIBSTDCXX_SUFFIX}" PARENT_SCOPE) | |||
return() | |||
endif() | |||
# TODO: it would be an error if we reach this point | |||
elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") | |||
# Do nothing - compiler.runtime and compiler.runtime_type | |||
# should be handled separately: https://github.com/conan-io/cmake-conan/pull/516 | |||
return() | |||
else() | |||
# TODO: unable to determine, ask user to provide a full profile file instead | |||
endif() | |||
endfunction() | |||
function(detect_compiler COMPILER COMPILER_VERSION COMPILER_RUNTIME COMPILER_RUNTIME_TYPE) | |||
if(DEFINED CMAKE_CXX_COMPILER_ID) | |||
set(_COMPILER ${CMAKE_CXX_COMPILER_ID}) | |||
set(_COMPILER_VERSION ${CMAKE_CXX_COMPILER_VERSION}) | |||
else() | |||
if(NOT DEFINED CMAKE_C_COMPILER_ID) | |||
message(FATAL_ERROR "C or C++ compiler not defined") | |||
endif() | |||
set(_COMPILER ${CMAKE_C_COMPILER_ID}) | |||
set(_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) | |||
endif() | |||
message(STATUS "CMake-Conan: CMake compiler=${_COMPILER}") | |||
message(STATUS "CMake-Conan: CMake compiler version=${_COMPILER_VERSION}") | |||
if(_COMPILER MATCHES MSVC) | |||
set(_COMPILER "msvc") | |||
string(SUBSTRING ${MSVC_VERSION} 0 3 _COMPILER_VERSION) | |||
# Configure compiler.runtime and compiler.runtime_type settings for MSVC | |||
if(CMAKE_MSVC_RUNTIME_LIBRARY) | |||
set(_msvc_runtime_library ${CMAKE_MSVC_RUNTIME_LIBRARY}) | |||
else() | |||
set(_msvc_runtime_library MultiThreaded$<$<CONFIG:Debug>:Debug>DLL) # default value documented by CMake | |||
endif() | |||
set(_KNOWN_MSVC_RUNTIME_VALUES "") | |||
list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded MultiThreadedDLL) | |||
list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreadedDebug MultiThreadedDebugDLL) | |||
list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded$<$<CONFIG:Debug>:Debug> MultiThreaded$<$<CONFIG:Debug>:Debug>DLL) | |||
# only accept the 6 possible values, otherwise we don't don't know to map this | |||
if(NOT _msvc_runtime_library IN_LIST _KNOWN_MSVC_RUNTIME_VALUES) | |||
message(FATAL_ERROR "CMake-Conan: unable to map MSVC runtime: ${_msvc_runtime_library} to Conan settings") | |||
endif() | |||
# Runtime is "dynamic" in all cases if it ends in DLL | |||
if(_msvc_runtime_library MATCHES ".*DLL$") | |||
set(_COMPILER_RUNTIME "dynamic") | |||
else() | |||
set(_COMPILER_RUNTIME "static") | |||
endif() | |||
message(STATUS "CMake-Conan: CMake compiler.runtime=${_COMPILER_RUNTIME}") | |||
# Only define compiler.runtime_type when explicitly requested | |||
# If a generator expression is used, let Conan handle it conditional on build_type | |||
if(NOT _msvc_runtime_library MATCHES "<CONFIG:Debug>:Debug>") | |||
if(_msvc_runtime_library MATCHES "Debug") | |||
set(_COMPILER_RUNTIME_TYPE "Debug") | |||
else() | |||
set(_COMPILER_RUNTIME_TYPE "Release") | |||
endif() | |||
message(STATUS "CMake-Conan: CMake compiler.runtime_type=${_COMPILER_RUNTIME_TYPE}") | |||
endif() | |||
unset(_KNOWN_MSVC_RUNTIME_VALUES) | |||
elseif(_COMPILER MATCHES AppleClang) | |||
set(_COMPILER "apple-clang") | |||
string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) | |||
list(GET VERSION_LIST 0 _COMPILER_VERSION) | |||
elseif(_COMPILER MATCHES Clang) | |||
set(_COMPILER "clang") | |||
string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) | |||
list(GET VERSION_LIST 0 _COMPILER_VERSION) | |||
elseif(_COMPILER MATCHES GNU) | |||
set(_COMPILER "gcc") | |||
string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) | |||
list(GET VERSION_LIST 0 _COMPILER_VERSION) | |||
endif() | |||
message(STATUS "CMake-Conan: [settings] compiler=${_COMPILER}") | |||
message(STATUS "CMake-Conan: [settings] compiler.version=${_COMPILER_VERSION}") | |||
if (_COMPILER_RUNTIME) | |||
message(STATUS "CMake-Conan: [settings] compiler.runtime=${_COMPILER_RUNTIME}") | |||
endif() | |||
if (_COMPILER_RUNTIME_TYPE) | |||
message(STATUS "CMake-Conan: [settings] compiler.runtime_type=${_COMPILER_RUNTIME_TYPE}") | |||
endif() | |||
set(${COMPILER} ${_COMPILER} PARENT_SCOPE) | |||
set(${COMPILER_VERSION} ${_COMPILER_VERSION} PARENT_SCOPE) | |||
set(${COMPILER_RUNTIME} ${_COMPILER_RUNTIME} PARENT_SCOPE) | |||
set(${COMPILER_RUNTIME_TYPE} ${_COMPILER_RUNTIME_TYPE} PARENT_SCOPE) | |||
endfunction() | |||
function(detect_build_type BUILD_TYPE) | |||
get_property(_MULTICONFIG_GENERATOR GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) | |||
if(NOT _MULTICONFIG_GENERATOR) | |||
# Only set when we know we are in a single-configuration generator | |||
# Note: we may want to fail early if `CMAKE_BUILD_TYPE` is not defined | |||
set(${BUILD_TYPE} ${CMAKE_BUILD_TYPE} PARENT_SCOPE) | |||
endif() | |||
endfunction() | |||
macro(set_conan_compiler_if_appleclang lang command output_variable) | |||
if(CMAKE_${lang}_COMPILER_ID STREQUAL "AppleClang") | |||
execute_process(COMMAND xcrun --find ${command} | |||
OUTPUT_VARIABLE _xcrun_out OUTPUT_STRIP_TRAILING_WHITESPACE) | |||
cmake_path(GET _xcrun_out PARENT_PATH _xcrun_toolchain_path) | |||
cmake_path(GET CMAKE_${lang}_COMPILER PARENT_PATH _compiler_parent_path) | |||
if ("${_xcrun_toolchain_path}" STREQUAL "${_compiler_parent_path}") | |||
set(${output_variable} "") | |||
endif() | |||
unset(_xcrun_out) | |||
unset(_xcrun_toolchain_path) | |||
unset(_compiler_parent_path) | |||
endif() | |||
endmacro() | |||
macro(append_compiler_executables_configuration) | |||
set(_conan_c_compiler "") | |||
set(_conan_cpp_compiler "") | |||
if(CMAKE_C_COMPILER) | |||
set(_conan_c_compiler "\"c\":\"${CMAKE_C_COMPILER}\",") | |||
set_conan_compiler_if_appleclang(C cc _conan_c_compiler) | |||
else() | |||
message(WARNING "CMake-Conan: The C compiler is not defined. " | |||
"Please define CMAKE_C_COMPILER or enable the C language.") | |||
endif() | |||
if(CMAKE_CXX_COMPILER) | |||
set(_conan_cpp_compiler "\"cpp\":\"${CMAKE_CXX_COMPILER}\"") | |||
set_conan_compiler_if_appleclang(CXX c++ _conan_cpp_compiler) | |||
else() | |||
message(WARNING "CMake-Conan: The C++ compiler is not defined. " | |||
"Please define CMAKE_CXX_COMPILER or enable the C++ language.") | |||
endif() | |||
if(NOT "x${_conan_c_compiler}${_conan_cpp_compiler}" STREQUAL "x") | |||
string(APPEND PROFILE "tools.build:compiler_executables={${_conan_c_compiler}${_conan_cpp_compiler}}\n") | |||
endif() | |||
unset(_conan_c_compiler) | |||
unset(_conan_cpp_compiler) | |||
endmacro() | |||
function(detect_host_profile output_file) | |||
detect_os(MYOS MYOS_API_LEVEL MYOS_SDK MYOS_SUBSYSTEM MYOS_VERSION) | |||
detect_arch(MYARCH) | |||
detect_compiler(MYCOMPILER MYCOMPILER_VERSION MYCOMPILER_RUNTIME MYCOMPILER_RUNTIME_TYPE) | |||
detect_cxx_standard(MYCXX_STANDARD) | |||
detect_lib_cxx(MYLIB_CXX) | |||
detect_build_type(MYBUILD_TYPE) | |||
set(PROFILE "") | |||
string(APPEND PROFILE "[settings]\n") | |||
if(MYARCH) | |||
string(APPEND PROFILE arch=${MYARCH} "\n") | |||
endif() | |||
if(MYOS) | |||
string(APPEND PROFILE os=${MYOS} "\n") | |||
endif() | |||
if(MYOS_API_LEVEL) | |||
string(APPEND PROFILE os.api_level=${MYOS_API_LEVEL} "\n") | |||
endif() | |||
if(MYOS_VERSION) | |||
string(APPEND PROFILE os.version=${MYOS_VERSION} "\n") | |||
endif() | |||
if(MYOS_SDK) | |||
string(APPEND PROFILE os.sdk=${MYOS_SDK} "\n") | |||
endif() | |||
if(MYOS_SUBSYSTEM) | |||
string(APPEND PROFILE os.subsystem=${MYOS_SUBSYSTEM} "\n") | |||
endif() | |||
if(MYCOMPILER) | |||
string(APPEND PROFILE compiler=${MYCOMPILER} "\n") | |||
endif() | |||
if(MYCOMPILER_VERSION) | |||
string(APPEND PROFILE compiler.version=${MYCOMPILER_VERSION} "\n") | |||
endif() | |||
if(MYCOMPILER_RUNTIME) | |||
string(APPEND PROFILE compiler.runtime=${MYCOMPILER_RUNTIME} "\n") | |||
endif() | |||
if(MYCOMPILER_RUNTIME_TYPE) | |||
string(APPEND PROFILE compiler.runtime_type=${MYCOMPILER_RUNTIME_TYPE} "\n") | |||
endif() | |||
if(MYCXX_STANDARD) | |||
string(APPEND PROFILE compiler.cppstd=${MYCXX_STANDARD} "\n") | |||
endif() | |||
if(MYLIB_CXX) | |||
string(APPEND PROFILE compiler.libcxx=${MYLIB_CXX} "\n") | |||
endif() | |||
if(MYBUILD_TYPE) | |||
string(APPEND PROFILE "build_type=${MYBUILD_TYPE}\n") | |||
endif() | |||
if(NOT DEFINED output_file) | |||
set(_FN "${CMAKE_BINARY_DIR}/profile") | |||
else() | |||
set(_FN ${output_file}) | |||
endif() | |||
string(APPEND PROFILE "[conf]\n") | |||
string(APPEND PROFILE "tools.cmake.cmaketoolchain:generator=${CMAKE_GENERATOR}\n") | |||
# propagate compilers via profile | |||
append_compiler_executables_configuration() | |||
if(MYOS STREQUAL "Android") | |||
string(APPEND PROFILE "tools.android:ndk_path=${CMAKE_ANDROID_NDK}\n") | |||
endif() | |||
message(STATUS "CMake-Conan: Creating profile ${_FN}") | |||
file(WRITE ${_FN} ${PROFILE}) | |||
message(STATUS "CMake-Conan: Profile: \n${PROFILE}") | |||
endfunction() | |||
function(conan_profile_detect_default) | |||
message(STATUS "CMake-Conan: Checking if a default profile exists") | |||
execute_process(COMMAND ${CONAN_COMMAND} profile path default | |||
RESULT_VARIABLE return_code | |||
OUTPUT_VARIABLE conan_stdout | |||
ERROR_VARIABLE conan_stderr | |||
ECHO_ERROR_VARIABLE # show the text output regardless | |||
ECHO_OUTPUT_VARIABLE | |||
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) | |||
if(NOT ${return_code} EQUAL "0") | |||
message(STATUS "CMake-Conan: The default profile doesn't exist, detecting it.") | |||
execute_process(COMMAND ${CONAN_COMMAND} profile detect | |||
RESULT_VARIABLE return_code | |||
OUTPUT_VARIABLE conan_stdout | |||
ERROR_VARIABLE conan_stderr | |||
ECHO_ERROR_VARIABLE # show the text output regardless | |||
ECHO_OUTPUT_VARIABLE | |||
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) | |||
endif() | |||
endfunction() | |||
function(conan_install) | |||
cmake_parse_arguments(ARGS CONAN_ARGS ${ARGN}) | |||
set(CONAN_OUTPUT_FOLDER ${CMAKE_BINARY_DIR}/conan) | |||
# Invoke "conan install" with the provided arguments | |||
set(CONAN_ARGS ${CONAN_ARGS} -of=${CONAN_OUTPUT_FOLDER}) | |||
message(STATUS "CMake-Conan: conan install ${CMAKE_SOURCE_DIR} ${CONAN_ARGS} ${ARGN}") | |||
# In case there was not a valid cmake executable in the PATH, we inject the | |||
# same we used to invoke the provider to the PATH | |||
if(DEFINED PATH_TO_CMAKE_BIN) | |||
set(_OLD_PATH $ENV{PATH}) | |||
set(ENV{PATH} "$ENV{PATH}:${PATH_TO_CMAKE_BIN}") | |||
endif() | |||
execute_process(COMMAND ${CONAN_COMMAND} install ${CMAKE_SOURCE_DIR} ${CONAN_ARGS} ${ARGN} --format=json | |||
RESULT_VARIABLE return_code | |||
OUTPUT_VARIABLE conan_stdout | |||
ERROR_VARIABLE conan_stderr | |||
ECHO_ERROR_VARIABLE # show the text output regardless | |||
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) | |||
if(DEFINED PATH_TO_CMAKE_BIN) | |||
set(ENV{PATH} "${_OLD_PATH}") | |||
endif() | |||
if(NOT "${return_code}" STREQUAL "0") | |||
message(FATAL_ERROR "Conan install failed='${return_code}'") | |||
else() | |||
# the files are generated in a folder that depends on the layout used, if | |||
# one is specified, but we don't know a priori where this is. | |||
# TODO: this can be made more robust if Conan can provide this in the json output | |||
string(JSON CONAN_GENERATORS_FOLDER GET ${conan_stdout} graph nodes 0 generators_folder) | |||
cmake_path(CONVERT ${CONAN_GENERATORS_FOLDER} TO_CMAKE_PATH_LIST CONAN_GENERATORS_FOLDER) | |||
# message("conan stdout: ${conan_stdout}") | |||
message(STATUS "CMake-Conan: CONAN_GENERATORS_FOLDER=${CONAN_GENERATORS_FOLDER}") | |||
set_property(GLOBAL PROPERTY CONAN_GENERATORS_FOLDER "${CONAN_GENERATORS_FOLDER}") | |||
# reconfigure on conanfile changes | |||
string(JSON CONANFILE GET ${conan_stdout} graph nodes 0 label) | |||
message(STATUS "CMake-Conan: CONANFILE=${CMAKE_SOURCE_DIR}/${CONANFILE}") | |||
set_property(DIRECTORY ${CMAKE_SOURCE_DIR} APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${CMAKE_SOURCE_DIR}/${CONANFILE}") | |||
# success | |||
set_property(GLOBAL PROPERTY CONAN_INSTALL_SUCCESS TRUE) | |||
endif() | |||
endfunction() | |||
function(conan_get_version conan_command conan_current_version) | |||
execute_process( | |||
COMMAND ${conan_command} --version | |||
OUTPUT_VARIABLE conan_output | |||
RESULT_VARIABLE conan_result | |||
OUTPUT_STRIP_TRAILING_WHITESPACE | |||
) | |||
if(conan_result) | |||
message(FATAL_ERROR "CMake-Conan: Error when trying to run Conan") | |||
endif() | |||
string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" conan_version ${conan_output}) | |||
set(${conan_current_version} ${conan_version} PARENT_SCOPE) | |||
endfunction() | |||
function(conan_version_check) | |||
set(options ) | |||
set(oneValueArgs MINIMUM CURRENT) | |||
set(multiValueArgs ) | |||
cmake_parse_arguments(CONAN_VERSION_CHECK | |||
"${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) | |||
if(NOT CONAN_VERSION_CHECK_MINIMUM) | |||
message(FATAL_ERROR "CMake-Conan: Required parameter MINIMUM not set!") | |||
endif() | |||
if(NOT CONAN_VERSION_CHECK_CURRENT) | |||
message(FATAL_ERROR "CMake-Conan: Required parameter CURRENT not set!") | |||
endif() | |||
if(CONAN_VERSION_CHECK_CURRENT VERSION_LESS CONAN_VERSION_CHECK_MINIMUM) | |||
message(FATAL_ERROR "CMake-Conan: Conan version must be ${CONAN_VERSION_CHECK_MINIMUM} or later") | |||
endif() | |||
endfunction() | |||
macro(construct_profile_argument argument_variable profile_list) | |||
set(${argument_variable} "") | |||
if("${profile_list}" STREQUAL "CONAN_HOST_PROFILE") | |||
set(_arg_flag "--profile:host=") | |||
elseif("${profile_list}" STREQUAL "CONAN_BUILD_PROFILE") | |||
set(_arg_flag "--profile:build=") | |||
endif() | |||
set(_profile_list "${${profile_list}}") | |||
list(TRANSFORM _profile_list REPLACE "auto-cmake" "${CMAKE_BINARY_DIR}/conan_host_profile") | |||
list(TRANSFORM _profile_list PREPEND ${_arg_flag}) | |||
set(${argument_variable} ${_profile_list}) | |||
unset(_arg_flag) | |||
unset(_profile_list) | |||
endmacro() | |||
macro(conan_provide_dependency method package_name) | |||
set_property(GLOBAL PROPERTY CONAN_PROVIDE_DEPENDENCY_INVOKED TRUE) | |||
get_property(_conan_install_success GLOBAL PROPERTY CONAN_INSTALL_SUCCESS) | |||
if(NOT _conan_install_success) | |||
find_program(CONAN_COMMAND "conan" REQUIRED) | |||
conan_get_version(${CONAN_COMMAND} CONAN_CURRENT_VERSION) | |||
conan_version_check(MINIMUM ${CONAN_MINIMUM_VERSION} CURRENT ${CONAN_CURRENT_VERSION}) | |||
message(STATUS "CMake-Conan: first find_package() found. Installing dependencies with Conan") | |||
if("default" IN_LIST CONAN_HOST_PROFILE OR "default" IN_LIST CONAN_BUILD_PROFILE) | |||
conan_profile_detect_default() | |||
endif() | |||
if("auto-cmake" IN_LIST CONAN_HOST_PROFILE) | |||
detect_host_profile(${CMAKE_BINARY_DIR}/conan_host_profile) | |||
endif() | |||
construct_profile_argument(_host_profile_flags CONAN_HOST_PROFILE) | |||
construct_profile_argument(_build_profile_flags CONAN_BUILD_PROFILE) | |||
if(EXISTS "${CMAKE_SOURCE_DIR}/conanfile.py") | |||
file(READ "${CMAKE_SOURCE_DIR}/conanfile.py" outfile) | |||
if(NOT "${outfile}" MATCHES ".*CMakeDeps.*") | |||
message(WARNING "Cmake-conan: CMakeDeps generator was not defined in the conanfile") | |||
endif() | |||
set(generator "") | |||
elseif (EXISTS "${CMAKE_SOURCE_DIR}/conanfile.txt") | |||
file(READ "${CMAKE_SOURCE_DIR}/conanfile.txt" outfile) | |||
if(NOT "${outfile}" MATCHES ".*CMakeDeps.*") | |||
message(WARNING "Cmake-conan: CMakeDeps generator was not defined in the conanfile. " | |||
"Please define the generator as it will be mandatory in the future") | |||
endif() | |||
set(generator "-g;CMakeDeps") | |||
endif() | |||
get_property(_multiconfig_generator GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) | |||
if(NOT _multiconfig_generator) | |||
message(STATUS "CMake-Conan: Installing single configuration ${CMAKE_BUILD_TYPE}") | |||
conan_install(${_host_profile_flags} ${_build_profile_flags} ${CONAN_INSTALL_ARGS} ${generator}) | |||
else() | |||
message(STATUS "CMake-Conan: Installing both Debug and Release") | |||
conan_install(${_host_profile_flags} ${_build_profile_flags} -s build_type=Release ${CONAN_INSTALL_ARGS} ${generator}) | |||
conan_install(${_host_profile_flags} ${_build_profile_flags} -s build_type=Debug ${CONAN_INSTALL_ARGS} ${generator}) | |||
endif() | |||
unset(_host_profile_flags) | |||
unset(_build_profile_flags) | |||
unset(_multiconfig_generator) | |||
unset(_conan_install_success) | |||
else() | |||
message(STATUS "CMake-Conan: find_package(${ARGV1}) found, 'conan install' already ran") | |||
unset(_conan_install_success) | |||
endif() | |||
get_property(_conan_generators_folder GLOBAL PROPERTY CONAN_GENERATORS_FOLDER) | |||
# Ensure that we consider Conan-provided packages ahead of any other, | |||
# irrespective of other settings that modify the search order or search paths | |||
# This follows the guidelines from the find_package documentation | |||
# (https://cmake.org/cmake/help/latest/command/find_package.html): | |||
# find_package (<PackageName> PATHS paths... NO_DEFAULT_PATH) | |||
# find_package (<PackageName>) | |||
# Filter out `REQUIRED` from the argument list, as the first call may fail | |||
set(_find_args_${package_name} "${ARGN}") | |||
list(REMOVE_ITEM _find_args_${package_name} "REQUIRED") | |||
if(NOT "MODULE" IN_LIST _find_args_${package_name}) | |||
find_package(${package_name} ${_find_args_${package_name}} BYPASS_PROVIDER PATHS "${_conan_generators_folder}" NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) | |||
unset(_find_args_${package_name}) | |||
endif() | |||
# Invoke find_package a second time - if the first call succeeded, | |||
# this will simply reuse the result. If not, fall back to CMake default search | |||
# behaviour, also allowing modules to be searched. | |||
if(NOT ${package_name}_FOUND) | |||
list(FIND CMAKE_MODULE_PATH "${_conan_generators_folder}" _index) | |||
if(_index EQUAL -1) | |||
list(PREPEND CMAKE_MODULE_PATH "${_conan_generators_folder}") | |||
endif() | |||
unset(_index) | |||
find_package(${package_name} ${ARGN} BYPASS_PROVIDER) | |||
list(REMOVE_ITEM CMAKE_MODULE_PATH "${_conan_generators_folder}") | |||
endif() | |||
endmacro() | |||
#[=[ not needed by Qt Creator, and if not commented it would break the auto-setup feature | |||
cmake_language( | |||
SET_DEPENDENCY_PROVIDER conan_provide_dependency | |||
SUPPORTED_METHODS FIND_PACKAGE | |||
) | |||
macro(conan_provide_dependency_check) | |||
set(_CONAN_PROVIDE_DEPENDENCY_INVOKED FALSE) | |||
get_property(_CONAN_PROVIDE_DEPENDENCY_INVOKED GLOBAL PROPERTY CONAN_PROVIDE_DEPENDENCY_INVOKED) | |||
if(NOT _CONAN_PROVIDE_DEPENDENCY_INVOKED) | |||
message(WARNING "Conan is correctly configured as dependency provider, " | |||
"but Conan has not been invoked. Please add at least one " | |||
"call to `find_package()`.") | |||
if(DEFINED CONAN_COMMAND) | |||
# supress warning in case `CONAN_COMMAND` was specified but unused. | |||
set(_CONAN_COMMAND ${CONAN_COMMAND}) | |||
unset(_CONAN_COMMAND) | |||
endif() | |||
endif() | |||
unset(_CONAN_PROVIDE_DEPENDENCY_INVOKED) | |||
endmacro() | |||
# Add a deferred call at the end of processing the top-level directory | |||
# to check if the dependency provider was invoked at all. | |||
cmake_language(DEFER DIRECTORY "${CMAKE_SOURCE_DIR}" CALL conan_provide_dependency_check) | |||
]=] | |||
# Configurable variables for Conan profiles | |||
set(CONAN_HOST_PROFILE "default;auto-cmake" CACHE STRING "Conan host profile") | |||
set(CONAN_BUILD_PROFILE "default" CACHE STRING "Conan build profile") | |||
set(CONAN_INSTALL_ARGS "--build=missing" CACHE STRING "Command line arguments for conan install") | |||
find_program(_cmake_program NAMES cmake NO_PACKAGE_ROOT_PATH NO_CMAKE_PATH NO_CMAKE_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH NO_CMAKE_FIND_ROOT_PATH) | |||
if(NOT _cmake_program) | |||
get_filename_component(PATH_TO_CMAKE_BIN "${CMAKE_COMMAND}" DIRECTORY) | |||
set(PATH_TO_CMAKE_BIN "${PATH_TO_CMAKE_BIN}" CACHE INTERNAL "Path where the CMake executable is") | |||
endif() | |||