| @@ -1,139 +1,103 @@ | |||||
| cmake_minimum_required(VERSION 3.16) | cmake_minimum_required(VERSION 3.16) | ||||
| # 添加更详细的错误输出 | |||||
| set(CMAKE_VERBOSE_MAKEFILE ON) | |||||
| message(STATUS "Qt6_DIR is: $ENV{Qt6_DIR}") | |||||
| message(STATUS "CMAKE_PREFIX_PATH is: $ENV{CMAKE_PREFIX_PATH}") | |||||
| # 项目基本信息 | |||||
| project(AuseftDDSPlugTest VERSION 0.1 LANGUAGES CXX) | |||||
| # 在project声明之前设置构建类型 | |||||
| # 构建类型设置(如果未指定则默认为Debug) | |||||
| if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) | if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) | ||||
| set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Choose the type of build." FORCE) | |||||
| set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo") | |||||
| set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "构建类型: Debug 或 Release" FORCE) | |||||
| endif() | endif() | ||||
| project(AuseftDDSPlugTest VERSION 0.1 LANGUAGES CXX) | |||||
| # 基本编译设置 | |||||
| set(CMAKE_CXX_STANDARD 17) # 使用C++17标准 | |||||
| set(CMAKE_CXX_STANDARD_REQUIRED ON) # 强制使用指定的C++标准 | |||||
| set(CMAKE_POSITION_INDEPENDENT_CODE ON) # 生成位置无关代码 | |||||
| set(CMAKE_AUTOMOC ON) # Qt元对象编译器 | |||||
| set(CMAKE_AUTORCC ON) # Qt资源编译器 | |||||
| set(CMAKE_AUTOUIC ON) # Qt UI编译器 | |||||
| # 如果没有指定构建类型,设置为 Debug | |||||
| if(NOT CMAKE_BUILD_TYPE) | |||||
| set(CMAKE_BUILD_TYPE Debug) | |||||
| # 根据平台设置编译选项 | |||||
| if(WIN32) | |||||
| set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -O0 -Wall") | |||||
| set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON) # Windows下导出所有符号 | |||||
| else() | |||||
| set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -O0 -Wall -Wextra") | |||||
| endif() | endif() | ||||
| # 基本设置 | |||||
| set(CMAKE_CXX_STANDARD 17) | |||||
| set(CMAKE_CXX_STANDARD_REQUIRED ON) | |||||
| set(CMAKE_POSITION_INDEPENDENT_CODE ON) | |||||
| # 根据构建类型设置编译选项 | |||||
| set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -g -O0 -Wall -Wextra") | |||||
| set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3") | set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3") | ||||
| # 输出目录设置 | |||||
| set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) | |||||
| set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) | |||||
| set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/bin) | |||||
| set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_DEBUG ${CMAKE_BINARY_DIR}/bin) | |||||
| set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/bin) | |||||
| set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_RELEASE ${CMAKE_BINARY_DIR}/bin) | |||||
| # 设置输出目录 | |||||
| set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) # 可执行文件输出目录 | |||||
| set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) # 库文件输出目录 | |||||
| set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) # 静态库输出目录 | |||||
| # 添加 OpenGL 查找 | |||||
| find_package(OpenGL REQUIRED) | |||||
| # Windows平台特殊处理:确保多配置生成器(如Visual Studio)也将文件输出到正确位置 | |||||
| if(WIN32) | |||||
| foreach(OUTPUTCONFIG ${CMAKE_CONFIGURATION_TYPES}) | |||||
| string(TOUPPER ${OUTPUTCONFIG} OUTPUTCONFIG) | |||||
| set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_${OUTPUTCONFIG} ${CMAKE_BINARY_DIR}/bin) | |||||
| set(CMAKE_LIBRARY_OUTPUT_DIRECTORY_${OUTPUTCONFIG} ${CMAKE_BINARY_DIR}/bin) | |||||
| set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY_${OUTPUTCONFIG} ${CMAKE_BINARY_DIR}/bin) | |||||
| endforeach() | |||||
| endif() | |||||
| # Qt相关设置 | |||||
| list(APPEND CMAKE_PREFIX_PATH "/home/suzj/Qt/6.8.1/gcc_64") | |||||
| # 查找必要的包 | |||||
| find_package(OpenGL REQUIRED) | |||||
| find_package(Qt6 6.8 REQUIRED COMPONENTS | find_package(Qt6 6.8 REQUIRED COMPONENTS | ||||
| Core # 添加 Core,这是基础组件 | |||||
| Quick | Quick | ||||
| OpenGL | OpenGL | ||||
| Gui | Gui | ||||
| Qml | |||||
| ) | ) | ||||
| # 添加接口目录到包含路径 | |||||
| include_directories(${CMAKE_SOURCE_DIR}) | |||||
| # 在 project 声明之后添加 | |||||
| set(CMAKE_AUTOMOC ON) | |||||
| set(CMAKE_AUTORCC ON) | |||||
| set(CMAKE_AUTOUIC ON) | |||||
| # 设置 Qt 策略 | |||||
| qt_policy(SET QTP0001 NEW) | |||||
| # 在 project 声明后添加 | |||||
| # 添加接口库 | |||||
| add_library(Interfaces INTERFACE) | add_library(Interfaces INTERFACE) | ||||
| target_include_directories(Interfaces INTERFACE ${CMAKE_SOURCE_DIR}) | target_include_directories(Interfaces INTERFACE ${CMAKE_SOURCE_DIR}) | ||||
| # 添加接口文件到 IDE 显示 | |||||
| add_custom_target(InterfacesIDE SOURCES | |||||
| interfaces/plugin_interface.hpp | |||||
| # 添加其他接口文件... | |||||
| ) | |||||
| # 修改 qt_add_executable 部分 | |||||
| qt_add_executable(AuseftDDSPlugTest | |||||
| # 添加主可执行文件 | |||||
| qt_add_executable(${PROJECT_NAME} | |||||
| main.cpp | main.cpp | ||||
| PluginLoader.cpp | PluginLoader.cpp | ||||
| PluginLoader.hpp | PluginLoader.hpp | ||||
| MANUAL_FINALIZATION | MANUAL_FINALIZATION | ||||
| ) | ) | ||||
| # 修改 qt_add_qml_module 部分 | |||||
| qt_add_qml_module(AuseftDDSPlugTest | |||||
| # 添加QML模块 | |||||
| qt_add_qml_module(${PROJECT_NAME} | |||||
| URI AuseftDDSPlugTest | URI AuseftDDSPlugTest | ||||
| VERSION 1.0 | VERSION 1.0 | ||||
| QML_FILES | |||||
| Main.qml | |||||
| QML_FILES Main.qml | |||||
| ) | ) | ||||
| set_target_properties(AuseftDDSPlugTest PROPERTIES | |||||
| QT_QML_LINT_ENABLED TRUE | |||||
| MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} | |||||
| MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} | |||||
| MACOSX_BUNDLE TRUE | |||||
| WIN32_EXECUTABLE TRUE | |||||
| # 设置目标属性 | |||||
| set_target_properties(${PROJECT_NAME} PROPERTIES | |||||
| WIN32_EXECUTABLE TRUE # Windows下作为GUI应用程序 | |||||
| MACOSX_BUNDLE TRUE # macOS下作为应用程序包 | |||||
| ) | ) | ||||
| # 链接接口库 | |||||
| target_link_libraries(AuseftDDSPlugTest | |||||
| PRIVATE | |||||
| # 链接依赖库 | |||||
| target_link_libraries(${PROJECT_NAME} PRIVATE | |||||
| Interfaces | Interfaces | ||||
| Qt6::Quick | Qt6::Quick | ||||
| Qt6::OpenGL | Qt6::OpenGL | ||||
| Qt6::Gui # 添加 Gui | |||||
| Qt6::Qml # 添加 Qml | |||||
| OpenGL::GL | OpenGL::GL | ||||
| fastdds | |||||
| fastcdr | |||||
| ) | |||||
| include(GNUInstallDirs) | |||||
| install(TARGETS AuseftDDSPlugTest | |||||
| BUNDLE DESTINATION . | |||||
| LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} | |||||
| RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} | |||||
| ) | ) | ||||
| # 添加插件子目录 | |||||
| add_subdirectory(plugins/AQTSampleMachinePlug BEFORE) | add_subdirectory(plugins/AQTSampleMachinePlug BEFORE) | ||||
| #add_subdirectory(plugins/AQTPackageMachinePlug) | |||||
| # Windows 系统下启用调试信息 | |||||
| if(WIN32) | |||||
| set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON) | |||||
| set(CMAKE_ENABLE_EXPORTS ON) | |||||
| endif() | |||||
| if(CMAKE_BUILD_TYPE STREQUAL "Debug") | |||||
| target_compile_options(AuseftDDSPlugTest PRIVATE -g) | |||||
| endif() | |||||
| # 在cmake_minimum_required之后添加 | |||||
| set(CMAKE_VERBOSE_MAKEFILE ON) | |||||
| message(STATUS "CMAKE_BUILD_TYPE is: ${CMAKE_BUILD_TYPE}") | |||||
| message(STATUS "Build directory is: ${CMAKE_BINARY_DIR}") | |||||
| # 设置包含目录 | |||||
| target_include_directories(${PROJECT_NAME} PRIVATE | |||||
| ${CMAKE_SOURCE_DIR} | |||||
| ${CMAKE_SOURCE_DIR}/plugins | |||||
| ) | |||||
| # 在文件末尾添加 | |||||
| qt_finalize_executable(AuseftDDSPlugTest) | |||||
| # 完成Qt可执行文件设置 | |||||
| qt_finalize_executable(${PROJECT_NAME}) | |||||
| target_include_directories(AuseftDDSPlugTest | |||||
| PRIVATE | |||||
| ${CMAKE_SOURCE_DIR} | |||||
| ${CMAKE_SOURCE_DIR}/plugins | |||||
| ) | |||||
| # 输出构建信息 | |||||
| message(STATUS "构建类型: ${CMAKE_BUILD_TYPE}") | |||||
| message(STATUS "构建目录: ${CMAKE_BINARY_DIR}") | |||||
| @@ -1,10 +1,10 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE QtCreatorProject> | <!DOCTYPE QtCreatorProject> | ||||
| <!-- Written by QtCreator 15.0.0, 2025-01-10T19:37:48. --> | |||||
| <!-- Written by QtCreator 15.0.0, 2025-01-12T10:10:46. --> | |||||
| <qtcreator> | <qtcreator> | ||||
| <data> | <data> | ||||
| <variable>EnvironmentId</variable> | <variable>EnvironmentId</variable> | ||||
| <value type="QByteArray">{02eeb054-6b22-4e7b-b60a-2a8e18e0e460}</value> | |||||
| <value type="QByteArray">{918161c1-c422-4cee-afd5-e8591863c565}</value> | |||||
| </data> | </data> | ||||
| <data> | <data> | ||||
| <variable>ProjectExplorer.Project.ActiveTarget</variable> | <variable>ProjectExplorer.Project.ActiveTarget</variable> | ||||
| @@ -62,24 +62,11 @@ | |||||
| <data> | <data> | ||||
| <variable>ProjectExplorer.Project.PluginSettings</variable> | <variable>ProjectExplorer.Project.PluginSettings</variable> | ||||
| <valuemap type="QVariantMap"> | <valuemap type="QVariantMap"> | ||||
| <valuemap type="QVariantMap" key="AutoTest.ActiveFrameworks"> | |||||
| <value type="bool" key="AutoTest.Framework.Boost">true</value> | |||||
| <value type="bool" key="AutoTest.Framework.CTest">false</value> | |||||
| <value type="bool" key="AutoTest.Framework.Catch">true</value> | |||||
| <value type="bool" key="AutoTest.Framework.GTest">true</value> | |||||
| <value type="bool" key="AutoTest.Framework.QtQuickTest">true</value> | |||||
| <value type="bool" key="AutoTest.Framework.QtTest">true</value> | |||||
| </valuemap> | |||||
| <value type="bool" key="AutoTest.ApplyFilter">false</value> | |||||
| <valuemap type="QVariantMap" key="AutoTest.CheckStates"/> | |||||
| <valuelist type="QVariantList" key="AutoTest.PathFilters"/> | |||||
| <value type="int" key="AutoTest.RunAfterBuild">0</value> | |||||
| <value type="bool" key="AutoTest.UseGlobal">true</value> | |||||
| <valuemap type="QVariantMap" key="ClangTools"> | <valuemap type="QVariantMap" key="ClangTools"> | ||||
| <value type="bool" key="ClangTools.AnalyzeOpenFiles">true</value> | <value type="bool" key="ClangTools.AnalyzeOpenFiles">true</value> | ||||
| <value type="bool" key="ClangTools.BuildBeforeAnalysis">true</value> | <value type="bool" key="ClangTools.BuildBeforeAnalysis">true</value> | ||||
| <value type="QString" key="ClangTools.DiagnosticConfig">Builtin.DefaultTidyAndClazy</value> | <value type="QString" key="ClangTools.DiagnosticConfig">Builtin.DefaultTidyAndClazy</value> | ||||
| <value type="int" key="ClangTools.ParallelJobs">8</value> | |||||
| <value type="int" key="ClangTools.ParallelJobs">4</value> | |||||
| <value type="bool" key="ClangTools.PreferConfigFile">true</value> | <value type="bool" key="ClangTools.PreferConfigFile">true</value> | ||||
| <valuelist type="QVariantList" key="ClangTools.SelectedDirs"/> | <valuelist type="QVariantList" key="ClangTools.SelectedDirs"/> | ||||
| <valuelist type="QVariantList" key="ClangTools.SelectedFiles"/> | <valuelist type="QVariantList" key="ClangTools.SelectedFiles"/> | ||||
| @@ -92,9 +79,9 @@ | |||||
| <variable>ProjectExplorer.Project.Target.0</variable> | <variable>ProjectExplorer.Project.Target.0</variable> | ||||
| <valuemap type="QVariantMap"> | <valuemap type="QVariantMap"> | ||||
| <value type="QString" key="DeviceType">Desktop</value> | <value type="QString" key="DeviceType">Desktop</value> | ||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop Qt 6.8.1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop Qt 6.8.1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.qt6.681.linux_gcc_64_kit</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop Qt 6.8.1 MSVC2022 64bit</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop Qt 6.8.1 MSVC2022 64bit</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.qt6.681.win64_msvc2022_64_kit</value> | |||||
| <value type="qlonglong" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value> | <value type="qlonglong" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value> | ||||
| <value type="qlonglong" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value> | <value type="qlonglong" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value> | ||||
| <value type="qlonglong" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value> | <value type="qlonglong" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value> | ||||
| @@ -103,15 +90,16 @@ | |||||
| <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | ||||
| <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | ||||
| <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | ||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_GENERATOR:STRING=Ninja | |||||
| -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| -DCMAKE_BUILD_TYPE:STRING=Debug | |||||
| -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | ||||
| -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | |||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX} | |||||
| -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | |||||
| -DCMAKE_GENERATOR:STRING=NMake Makefiles JOM | |||||
| -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | ||||
| -DCMAKE_BUILD_TYPE:STRING=Debug</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/suzj/AuseftDDSPlugins/build</value> | |||||
| -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | |||||
| -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | |||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX}</value> | |||||
| <value type="int" key="EnableQmlDebugging">0</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\FastDDSTest\AuseftDDSPlugins\build\Desktop_Qt_6_8_1_MSVC2022_64bit-Debug</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | ||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | ||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | ||||
| @@ -159,124 +147,15 @@ | |||||
| <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | ||||
| <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | ||||
| <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | ||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_GENERATOR:STRING=Ninja | |||||
| -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| -DCMAKE_BUILD_TYPE:STRING=Release | |||||
| -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | ||||
| -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | |||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX} | |||||
| -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | |||||
| -DCMAKE_GENERATOR:STRING=NMake Makefiles JOM | |||||
| -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | ||||
| -DCMAKE_BUILD_TYPE:STRING=Release</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/suzj/QTDeskDDS/build/Desktop_Qt_6_8_1-Release</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">all</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">clean</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value> | |||||
| </valuemap> | |||||
| <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2"> | |||||
| <value type="QString" key="CMake.Build.Type">RelWithDebInfo</value> | |||||
| <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | |||||
| <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_GENERATOR:STRING=Ninja | |||||
| -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | |||||
| -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | |||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX} | |||||
| -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | ||||
| -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | |||||
| -DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/suzj/QTDeskDDS/build/Desktop_Qt_6_8_1-RelWithDebInfo</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">all</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">clean</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value> | |||||
| </valuemap> | |||||
| <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release with Debug Information</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.3"> | |||||
| <value type="QString" key="CMake.Build.Type">RelWithDebInfo</value> | |||||
| <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | |||||
| <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_GENERATOR:STRING=Ninja | |||||
| -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | |||||
| -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | ||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX} | |||||
| -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | |||||
| -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | |||||
| -DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo</value> | |||||
| <value type="int" key="EnableQmlDebugging">0</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/suzj/QTDeskDDS/build/Desktop_Qt_6_8_1-Profile</value> | |||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX}</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">D:\FastDDSTest\AuseftDDSPlugins\build\Desktop_Qt_6_8_1_MSVC2022_64bit-Release</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | ||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | ||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | ||||
| @@ -314,64 +193,10 @@ | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/> | <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/> | ||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value> | <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value> | ||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/> | <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/> | ||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Profile</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.4"> | |||||
| <value type="QString" key="CMake.Build.Type">MinSizeRel</value> | |||||
| <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | |||||
| <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_GENERATOR:STRING=Ninja | |||||
| -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | |||||
| -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | |||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX} | |||||
| -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | |||||
| -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | |||||
| -DCMAKE_BUILD_TYPE:STRING=MinSizeRel</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/suzj/QTDeskDDS/build/Desktop_Qt_6_8_1-MinSizeRel</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">all</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">clean</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value> | |||||
| </valuemap> | |||||
| <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Minimum Size Release</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value> | <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value> | ||||
| </valuemap> | </valuemap> | ||||
| <value type="qlonglong" key="ProjectExplorer.Target.BuildConfigurationCount">5</value> | |||||
| <value type="qlonglong" key="ProjectExplorer.Target.BuildConfigurationCount">2</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0"> | <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0"> | ||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | ||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">0</value> | <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">0</value> | ||||
| @@ -428,7 +253,7 @@ | |||||
| <value type="int" key="PE.EnvironmentAspect.Base">2</value> | <value type="int" key="PE.EnvironmentAspect.Base">2</value> | ||||
| <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/> | <valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/> | ||||
| <value type="bool" key="PE.EnvironmentAspect.PrintOnRun">false</value> | <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="PerfRecordArgsId">-e cpu-cycles --call-graph "dwarf,4096" -F 250</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">AuseftDDSPlugTest</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.ProjectConfiguration.Id">CMakeProjectManager.CMakeRunConfiguration.</value> | ||||
| <value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">AuseftDDSPlugTest</value> | <value type="QString" key="ProjectExplorer.RunConfiguration.BuildKey">AuseftDDSPlugTest</value> | ||||
| @@ -436,7 +261,7 @@ | |||||
| <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value> | <value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value> | ||||
| <value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value> | <value type="bool" key="RunConfiguration.UseLibrarySearchPath">true</value> | ||||
| <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value> | <value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value> | ||||
| <value type="QString" key="RunConfiguration.WorkingDirectory.default">/home/suzj/AuseftDDSPlugins/build/bin</value> | |||||
| <value type="QString" key="RunConfiguration.WorkingDirectory.default">D:/FastDDSTest/AuseftDDSPlugins/build/Desktop_Qt_6_8_1_MSVC2022_64bit-Debug/bin</value> | |||||
| </valuemap> | </valuemap> | ||||
| <value type="qlonglong" key="ProjectExplorer.Target.RunConfigurationCount">1</value> | <value type="qlonglong" key="ProjectExplorer.Target.RunConfigurationCount">1</value> | ||||
| </valuemap> | </valuemap> | ||||
| @@ -0,0 +1,456 @@ | |||||
| <?xml version="1.0" encoding="UTF-8"?> | |||||
| <!DOCTYPE QtCreatorProject> | |||||
| <!-- Written by QtCreator 15.0.0, 2025-01-10T19:37:48. --> | |||||
| <qtcreator> | |||||
| <data> | |||||
| <variable>EnvironmentId</variable> | |||||
| <value type="QByteArray">{02eeb054-6b22-4e7b-b60a-2a8e18e0e460}</value> | |||||
| </data> | |||||
| <data> | |||||
| <variable>ProjectExplorer.Project.ActiveTarget</variable> | |||||
| <value type="qlonglong">0</value> | |||||
| </data> | |||||
| <data> | |||||
| <variable>ProjectExplorer.Project.EditorSettings</variable> | |||||
| <valuemap type="QVariantMap"> | |||||
| <value type="bool" key="EditorConfiguration.AutoIndent">true</value> | |||||
| <value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value> | |||||
| <value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value> | |||||
| <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0"> | |||||
| <value type="QString" key="language">Cpp</value> | |||||
| <valuemap type="QVariantMap" key="value"> | |||||
| <value type="QByteArray" key="CurrentPreferences">CppGlobal</value> | |||||
| </valuemap> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1"> | |||||
| <value type="QString" key="language">QmlJS</value> | |||||
| <valuemap type="QVariantMap" key="value"> | |||||
| <value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value> | |||||
| </valuemap> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="EditorConfiguration.CodeStyle.Count">2</value> | |||||
| <value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value> | |||||
| <value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value> | |||||
| <value type="int" key="EditorConfiguration.IndentSize">4</value> | |||||
| <value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value> | |||||
| <value type="int" key="EditorConfiguration.LineEndingBehavior">0</value> | |||||
| <value type="int" key="EditorConfiguration.MarginColumn">80</value> | |||||
| <value type="bool" key="EditorConfiguration.MouseHiding">true</value> | |||||
| <value type="bool" key="EditorConfiguration.MouseNavigation">true</value> | |||||
| <value type="int" key="EditorConfiguration.PaddingMode">1</value> | |||||
| <value type="int" key="EditorConfiguration.PreferAfterWhitespaceComments">0</value> | |||||
| <value type="bool" key="EditorConfiguration.PreferSingleLineComments">false</value> | |||||
| <value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value> | |||||
| <value type="bool" key="EditorConfiguration.ShowMargin">false</value> | |||||
| <value type="int" key="EditorConfiguration.SmartBackspaceBehavior">2</value> | |||||
| <value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value> | |||||
| <value type="bool" key="EditorConfiguration.SpacesForTabs">true</value> | |||||
| <value type="int" key="EditorConfiguration.TabKeyBehavior">0</value> | |||||
| <value type="int" key="EditorConfiguration.TabSize">8</value> | |||||
| <value type="bool" key="EditorConfiguration.UseGlobal">true</value> | |||||
| <value type="bool" key="EditorConfiguration.UseIndenter">false</value> | |||||
| <value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value> | |||||
| <value type="bool" key="EditorConfiguration.addFinalNewLine">true</value> | |||||
| <value type="bool" key="EditorConfiguration.cleanIndentation">true</value> | |||||
| <value type="bool" key="EditorConfiguration.cleanWhitespace">true</value> | |||||
| <value type="QString" key="EditorConfiguration.ignoreFileTypes">*.md, *.MD, Makefile</value> | |||||
| <value type="bool" key="EditorConfiguration.inEntireDocument">false</value> | |||||
| <value type="bool" key="EditorConfiguration.skipTrailingWhitespace">true</value> | |||||
| <value type="bool" key="EditorConfiguration.tintMarginArea">true</value> | |||||
| </valuemap> | |||||
| </data> | |||||
| <data> | |||||
| <variable>ProjectExplorer.Project.PluginSettings</variable> | |||||
| <valuemap type="QVariantMap"> | |||||
| <valuemap type="QVariantMap" key="AutoTest.ActiveFrameworks"> | |||||
| <value type="bool" key="AutoTest.Framework.Boost">true</value> | |||||
| <value type="bool" key="AutoTest.Framework.CTest">false</value> | |||||
| <value type="bool" key="AutoTest.Framework.Catch">true</value> | |||||
| <value type="bool" key="AutoTest.Framework.GTest">true</value> | |||||
| <value type="bool" key="AutoTest.Framework.QtQuickTest">true</value> | |||||
| <value type="bool" key="AutoTest.Framework.QtTest">true</value> | |||||
| </valuemap> | |||||
| <value type="bool" key="AutoTest.ApplyFilter">false</value> | |||||
| <valuemap type="QVariantMap" key="AutoTest.CheckStates"/> | |||||
| <valuelist type="QVariantList" key="AutoTest.PathFilters"/> | |||||
| <value type="int" key="AutoTest.RunAfterBuild">0</value> | |||||
| <value type="bool" key="AutoTest.UseGlobal">true</value> | |||||
| <valuemap type="QVariantMap" key="ClangTools"> | |||||
| <value type="bool" key="ClangTools.AnalyzeOpenFiles">true</value> | |||||
| <value type="bool" key="ClangTools.BuildBeforeAnalysis">true</value> | |||||
| <value type="QString" key="ClangTools.DiagnosticConfig">Builtin.DefaultTidyAndClazy</value> | |||||
| <value type="int" key="ClangTools.ParallelJobs">8</value> | |||||
| <value type="bool" key="ClangTools.PreferConfigFile">true</value> | |||||
| <valuelist type="QVariantList" key="ClangTools.SelectedDirs"/> | |||||
| <valuelist type="QVariantList" key="ClangTools.SelectedFiles"/> | |||||
| <valuelist type="QVariantList" key="ClangTools.SuppressedDiagnostics"/> | |||||
| <value type="bool" key="ClangTools.UseGlobalSettings">true</value> | |||||
| </valuemap> | |||||
| </valuemap> | |||||
| </data> | |||||
| <data> | |||||
| <variable>ProjectExplorer.Project.Target.0</variable> | |||||
| <valuemap type="QVariantMap"> | |||||
| <value type="QString" key="DeviceType">Desktop</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop Qt 6.8.1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop Qt 6.8.1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">qt.qt6.681.linux_gcc_64_kit</value> | |||||
| <value type="qlonglong" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value> | |||||
| <value type="qlonglong" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value> | |||||
| <value type="qlonglong" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0"> | |||||
| <value type="QString" key="CMake.Build.Type">Debug</value> | |||||
| <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | |||||
| <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_GENERATOR:STRING=Ninja | |||||
| -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | |||||
| -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | |||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX} | |||||
| -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | |||||
| -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | |||||
| -DCMAKE_BUILD_TYPE:STRING=Debug</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/suzj/AuseftDDSPlugins/build</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">all</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">clean</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value> | |||||
| </valuemap> | |||||
| <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Debug</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1"> | |||||
| <value type="QString" key="CMake.Build.Type">Release</value> | |||||
| <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | |||||
| <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_GENERATOR:STRING=Ninja | |||||
| -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | |||||
| -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | |||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX} | |||||
| -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | |||||
| -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | |||||
| -DCMAKE_BUILD_TYPE:STRING=Release</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/suzj/QTDeskDDS/build/Desktop_Qt_6_8_1-Release</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">all</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">clean</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value> | |||||
| </valuemap> | |||||
| <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2"> | |||||
| <value type="QString" key="CMake.Build.Type">RelWithDebInfo</value> | |||||
| <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | |||||
| <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_GENERATOR:STRING=Ninja | |||||
| -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | |||||
| -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | |||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX} | |||||
| -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | |||||
| -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | |||||
| -DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/suzj/QTDeskDDS/build/Desktop_Qt_6_8_1-RelWithDebInfo</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">all</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">clean</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value> | |||||
| </valuemap> | |||||
| <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release with Debug Information</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.3"> | |||||
| <value type="QString" key="CMake.Build.Type">RelWithDebInfo</value> | |||||
| <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | |||||
| <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_GENERATOR:STRING=Ninja | |||||
| -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | |||||
| -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | |||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX} | |||||
| -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | |||||
| -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | |||||
| -DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo</value> | |||||
| <value type="int" key="EnableQmlDebugging">0</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/suzj/QTDeskDDS/build/Desktop_Qt_6_8_1-Profile</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">all</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">clean</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value> | |||||
| </valuemap> | |||||
| <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Profile</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.4"> | |||||
| <value type="QString" key="CMake.Build.Type">MinSizeRel</value> | |||||
| <value type="int" key="CMake.Configure.BaseEnvironment">2</value> | |||||
| <value type="bool" key="CMake.Configure.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMake.Configure.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="CMake.Initial.Parameters">-DCMAKE_GENERATOR:STRING=Ninja | |||||
| -DCMAKE_CXX_FLAGS_INIT:STRING=%{Qt:QML_DEBUG_FLAG} | |||||
| -DCMAKE_CXX_COMPILER:FILEPATH=%{Compiler:Executable:Cxx} | |||||
| -DCMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=%{BuildConfig:BuildDirectory:NativeFilePath}/.qtc/package-manager/auto-setup.cmake | |||||
| -DCMAKE_PREFIX_PATH:PATH=%{Qt:QT_INSTALL_PREFIX} | |||||
| -DQT_QMAKE_EXECUTABLE:FILEPATH=%{Qt:qmakeExecutable} | |||||
| -DCMAKE_C_COMPILER:FILEPATH=%{Compiler:Executable:C} | |||||
| -DCMAKE_BUILD_TYPE:STRING=MinSizeRel</value> | |||||
| <value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/suzj/QTDeskDDS/build/Desktop_Qt_6_8_1-MinSizeRel</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">all</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">构建</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString">clean</value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">1</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">清除</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value> | |||||
| </valuemap> | |||||
| <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.CustomParsers"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildConfiguration.ParseStandardOutput">false</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Minimum Size Release</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.Target.BuildConfigurationCount">5</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">0</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">部署</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">部署</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value> | |||||
| </valuemap> | |||||
| <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.DeployConfiguration.CustomData"/> | |||||
| <value type="bool" key="ProjectExplorer.DeployConfiguration.CustomDataEnabled">false</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.1"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0"> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0"> | |||||
| <value type="QString" key="CMakeProjectManager.MakeStep.BuildPreset"></value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets"> | |||||
| <value type="QString"></value> | |||||
| </valuelist> | |||||
| <value type="bool" key="CMakeProjectManager.MakeStep.ClearSystemEnvironment">false</value> | |||||
| <valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.UserEnvironmentChanges"/> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ApplicationManagerPlugin.Deploy.CMakePackageStep</value> | |||||
| </valuemap> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.1"> | |||||
| <value type="QString" key="ApplicationManagerPlugin.Deploy.InstallPackageStep.Arguments">install-package --acknowledge</value> | |||||
| <value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Install Application Manager package</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ApplicationManagerPlugin.Deploy.InstallPackageStep</value> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.RunConfiguration.LastDeployedFiles"/> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.RunConfiguration.LastDeployedHosts"/> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.RunConfiguration.LastDeployedRemotePaths"/> | |||||
| <valuelist type="QVariantList" key="ProjectExplorer.RunConfiguration.LastDeployedSysroots"/> | |||||
| <valuelist type="QVariantList" key="RemoteLinux.LastDeployedLocalTimes"/> | |||||
| <valuelist type="QVariantList" key="RemoteLinux.LastDeployedRemoteTimes"/> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.BuildStepList.StepsCount">2</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">部署</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">部署</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value> | |||||
| </valuemap> | |||||
| <value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.DeployConfiguration.CustomData"/> | |||||
| <value type="bool" key="ProjectExplorer.DeployConfiguration.CustomDataEnabled">false</value> | |||||
| <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ApplicationManagerPlugin.Deploy.Configuration</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.Target.DeployConfigurationCount">2</value> | |||||
| <valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0"> | |||||
| <value type="bool" key="Analyzer.Perf.Settings.UseGlobalSettings">true</value> | |||||
| <value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value> | |||||
| <value type="int" key="Analyzer.Valgrind.Callgrind.CostFormat">0</value> | |||||
| <value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value> | |||||
| <valuelist type="QVariantList" key="CustomOutputParsers"/> | |||||
| <value type="int" key="PE.EnvironmentAspect.Base">2</value> | |||||
| <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">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">/home/suzj/AuseftDDSPlugins/build/bin</value> | |||||
| </valuemap> | |||||
| <value type="qlonglong" key="ProjectExplorer.Target.RunConfigurationCount">1</value> | |||||
| </valuemap> | |||||
| </data> | |||||
| <data> | |||||
| <variable>ProjectExplorer.Project.TargetCount</variable> | |||||
| <value type="qlonglong">1</value> | |||||
| </data> | |||||
| <data> | |||||
| <variable>ProjectExplorer.Project.Updater.FileVersion</variable> | |||||
| <value type="int">22</value> | |||||
| </data> | |||||
| <data> | |||||
| <variable>Version</variable> | |||||
| <value type="int">22</value> | |||||
| </data> | |||||
| </qtcreator> | |||||
| @@ -13,4 +13,4 @@ Rectangle { | |||||
| text: "#" + messageIndex + ": " + message | text: "#" + messageIndex + ": " + message | ||||
| verticalAlignment: Text.AlignVCenter | verticalAlignment: Text.AlignVCenter | ||||
| } | } | ||||
| } | |||||
| } | |||||
| @@ -1,65 +1,66 @@ | |||||
| #include "PluginLoader.hpp" | #include "PluginLoader.hpp" | ||||
| #include <QCoreApplication> | |||||
| #include <QDebug> | #include <QDebug> | ||||
| #include <QDir> | #include <QDir> | ||||
| #include <QFileInfo> | #include <QFileInfo> | ||||
| #include <QCoreApplication> | |||||
| #include "interfaces/plugin_interface.hpp" | #include "interfaces/plugin_interface.hpp" | ||||
| PluginLoader::PluginLoader(QObject *parent) | PluginLoader::PluginLoader(QObject *parent) | ||||
| : QObject(parent) | : QObject(parent) | ||||
| { | |||||
| } | |||||
| {} | |||||
| QObject* PluginLoader::loadPlugin(const QString& path) | |||||
| QObject *PluginLoader::loadPlugin(const QString &path) | |||||
| { | { | ||||
| if (m_loader.isLoaded()) { | if (m_loader.isLoaded()) { | ||||
| m_loader.unload(); | m_loader.unload(); | ||||
| } | } | ||||
| // 添加当前工作目录的调试输出 | // 添加当前工作目录的调试输出 | ||||
| qDebug() << "当前工作:" << path; | qDebug() << "当前工作:" << path; | ||||
| // 处理相对路径和绝对路径 | // 处理相对路径和绝对路径 | ||||
| QString absolutePath = path; | QString absolutePath = path; | ||||
| // 确保路径以 "/" 开头 | // 确保路径以 "/" 开头 | ||||
| if (!absolutePath.startsWith('/')) { | if (!absolutePath.startsWith('/')) { | ||||
| absolutePath = "/" + absolutePath; | absolutePath = "/" + absolutePath; | ||||
| } | } | ||||
| qDebug() << "原始路径:" << path; | qDebug() << "原始路径:" << path; | ||||
| qDebug() << "处理后的路径:" << absolutePath; | qDebug() << "处理后的路径:" << absolutePath; | ||||
| // 检查文件是否存在 | // 检查文件是否存在 | ||||
| if (!QFileInfo::exists(absolutePath)) { | if (!QFileInfo::exists(absolutePath)) { | ||||
| qDebug() << "插件文件不存在:" << absolutePath; | qDebug() << "插件文件不存在:" << absolutePath; | ||||
| return nullptr; | return nullptr; | ||||
| } | } | ||||
| m_loader.setFileName(absolutePath); // 使用处理后的绝对路径 | |||||
| m_loader.setFileName(absolutePath); // 使用处理后的绝对路径 | |||||
| if (!m_loader.load()) { | if (!m_loader.load()) { | ||||
| qDebug() << "插件加载失败:" << m_loader.errorString()<<path; | |||||
| qDebug() << "插件加载失败:" << m_loader.errorString() << path; | |||||
| qDebug() << "库加载错误代码:" << m_loader.loadHints(); | qDebug() << "库加载错误代码:" << m_loader.loadHints(); | ||||
| qDebug() << "库搜索路径:" << QCoreApplication::libraryPaths(); | qDebug() << "库搜索路径:" << QCoreApplication::libraryPaths(); | ||||
| return nullptr; | return nullptr; | ||||
| } | } | ||||
| QObject* plugin = m_loader.instance(); | |||||
| QObject *plugin = m_loader.instance(); | |||||
| if (!plugin) { | if (!plugin) { | ||||
| qDebug() << "无法获取插件实例"; | qDebug() << "无法获取插件实例"; | ||||
| return nullptr; | return nullptr; | ||||
| } | } | ||||
| AuseftDDSPluginInterface* pluginInterface = qobject_cast<AuseftDDSPluginInterface*>(plugin); | |||||
| AuseftDDSPluginInterface *pluginInterface = qobject_cast<AuseftDDSPluginInterface *>(plugin); | |||||
| if (!pluginInterface) { | if (!pluginInterface) { | ||||
| qDebug() << "插件不是有效的 AuseftDDSPluginInterface"; | qDebug() << "插件不是有效的 AuseftDDSPluginInterface"; | ||||
| return nullptr; | return nullptr; | ||||
| } | } | ||||
| // 连接插件的信号到加载器 | // 连接插件的信号到加载器 | ||||
| connect(plugin, SIGNAL(messagePublished(QString,int)), | |||||
| this, SIGNAL(messagePublished(QString,int))); | |||||
| connect(plugin, | |||||
| SIGNAL(messagePublished(QString, int)), | |||||
| this, | |||||
| SIGNAL(messagePublished(QString, int))); | |||||
| return plugin; | return plugin; | ||||
| } | } | ||||
| @@ -72,4 +73,4 @@ bool PluginLoader::unloadPlugin() | |||||
| QString PluginLoader::errorString() const | QString PluginLoader::errorString() const | ||||
| { | { | ||||
| return m_loader.errorString(); | return m_loader.errorString(); | ||||
| } | |||||
| } | |||||
| @@ -2,15 +2,14 @@ | |||||
| PluginLoader::PluginLoader(QObject *parent) | PluginLoader::PluginLoader(QObject *parent) | ||||
| : QObject(parent) | : QObject(parent) | ||||
| { | |||||
| } | |||||
| {} | |||||
| QObject* PluginLoader::loadPlugin(const QString& path) | |||||
| QObject *PluginLoader::loadPlugin(const QString &path) | |||||
| { | { | ||||
| if (m_loader.isLoaded()) { | if (m_loader.isLoaded()) { | ||||
| m_loader.unload(); | m_loader.unload(); | ||||
| } | } | ||||
| m_loader.setFileName(path); | m_loader.setFileName(path); | ||||
| return m_loader.instance(); | return m_loader.instance(); | ||||
| } | } | ||||
| @@ -23,4 +22,4 @@ bool PluginLoader::unloadPlugin() | |||||
| QString PluginLoader::errorString() const | QString PluginLoader::errorString() const | ||||
| { | { | ||||
| return m_loader.errorString(); | return m_loader.errorString(); | ||||
| } | |||||
| } | |||||
| @@ -11,14 +11,14 @@ class PluginLoader : public QObject | |||||
| public: | public: | ||||
| explicit PluginLoader(QObject *parent = nullptr); | explicit PluginLoader(QObject *parent = nullptr); | ||||
| Q_INVOKABLE QObject* loadPlugin(const QString& path); | |||||
| Q_INVOKABLE QObject *loadPlugin(const QString &path); | |||||
| Q_INVOKABLE bool unloadPlugin(); | Q_INVOKABLE bool unloadPlugin(); | ||||
| Q_INVOKABLE QString errorString() const; | Q_INVOKABLE QString errorString() const; | ||||
| signals: | signals: | ||||
| void messagePublished(const QString& message, int index); | |||||
| void error(const QString& errorString); | |||||
| void messagePublished(const QString &message, int index); | |||||
| void error(const QString &errorString); | |||||
| private: | private: | ||||
| QPluginLoader m_loader; | QPluginLoader m_loader; | ||||
| }; | |||||
| }; | |||||
| @@ -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 | |||||