diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..90ae957 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,14 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + +cmake_minimum_required(VERSION 3.16) +project(fontManager VERSION 0.1 LANGUAGES CXX) + +find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets) + +qt_standard_project_setup(REQUIRES 6.8) + +add_compile_definitions(QT_NO_CAST_FROM_ASCII) + +add_subdirectory(plugins) +add_subdirectory(app) diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt new file mode 100644 index 0000000..34def35 --- /dev/null +++ b/app/CMakeLists.txt @@ -0,0 +1,72 @@ +cmake_minimum_required(VERSION 3.16) + +project(fontManager VERSION 0.1 LANGUAGES CXX) + +set(CMAKE_AUTOUIC ON) +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTORCC ON) + +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED ON) + +find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Widgets) +find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets) + +set(PROJECT_SOURCES + main.cpp + cmainwindow.cpp + cmainwindow.h + cmainwindow.ui +) + +if(${QT_VERSION_MAJOR} GREATER_EQUAL 6) + qt_add_executable(fontManager + MANUAL_FINALIZATION + ${PROJECT_SOURCES} + ifontprovider.h + + ) +# Define target properties for Android with Qt 6 as: +# set_property(TARGET fontManager APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR +# ${CMAKE_CURRENT_SOURCE_DIR}/android) +# For more information, see https://doc.qt.io/qt-6/qt-add-executable.html#target-creation +else() + if(ANDROID) + add_library(fontManager SHARED + ${PROJECT_SOURCES} + ) +# Define properties for Android with Qt 5 after find_package() calls as: +# set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android") + else() + add_executable(fontManager + ${PROJECT_SOURCES} + ) + endif() +endif() + +target_link_libraries(fontManager PRIVATE Qt${QT_VERSION_MAJOR}::Widgets) + +# Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1. +# If you are developing for iOS or macOS you should consider setting an +# explicit, fixed bundle identifier manually though. +if(${QT_VERSION} VERSION_LESS 6.1.0) + set(BUNDLE_ID_OPTION MACOSX_BUNDLE_GUI_IDENTIFIER com.example.fontManager) +endif() +set_target_properties(fontManager PROPERTIES + ${BUNDLE_ID_OPTION} + MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION} + MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR} + MACOSX_BUNDLE TRUE + WIN32_EXECUTABLE TRUE +) + +include(GNUInstallDirs) +install(TARGETS fontManager + BUNDLE DESTINATION . + LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} + RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} +) + +if(QT_VERSION_MAJOR EQUAL 6) + qt_finalize_executable(fontManager) +endif() diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cache-v2 b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cmakeFiles-v1 b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/codemodel-v2 b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-31d7257b2120388442e8.json b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-31d7257b2120388442e8.json new file mode 100644 index 0000000..a3e0a13 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-31d7257b2120388442e8.json @@ -0,0 +1,6403 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/addr2line.exe" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "c:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "29" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "1" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "STRING", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_INIT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : ".obj" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc.exe" + }, + { + "name" : "CMAKE_C_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/dlltool.exe" + }, + { + "name" : "CMAKE_EDIT_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cache edit program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cmake-gui.exe" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "Unknown" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable output of compile commands during generation." + } + ], + "type" : "BOOL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Ninja" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GNUtoMS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Convert GNU import libraries to MS format (requires Visual Studio)" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CMAKE_HAVE_LIBC_PTHREAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app" + }, + { + "name" : "CMAKE_INSTALL_BINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "User executables (bin)" + } + ], + "type" : "PATH", + "value" : "bin" + }, + { + "name" : "CMAKE_INSTALL_DATADIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data (DATAROOTDIR)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_DATAROOTDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data root (share)" + } + ], + "type" : "PATH", + "value" : "share" + }, + { + "name" : "CMAKE_INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files (include)" + } + ], + "type" : "PATH", + "value" : "include" + }, + { + "name" : "CMAKE_INSTALL_INFODIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Info documentation (DATAROOTDIR/info)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Object code libraries (lib)" + } + ], + "type" : "PATH", + "value" : "lib" + }, + { + "name" : "CMAKE_INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program executables (libexec)" + } + ], + "type" : "PATH", + "value" : "libexec" + }, + { + "name" : "CMAKE_INSTALL_LOCALEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Locale-dependent data (DATAROOTDIR/locale)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LOCALSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable single-machine data (var)" + } + ], + "type" : "PATH", + "value" : "var" + }, + { + "name" : "CMAKE_INSTALL_MANDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Man documentation (DATAROOTDIR/man)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files for non-gcc (/usr/include)" + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/fontManager" + }, + { + "name" : "CMAKE_INSTALL_RUNSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Run-time variable data (LOCALSTATEDIR/run)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_SBINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "System admin executables (sbin)" + } + ], + "type" : "PATH", + "value" : "sbin" + }, + { + "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable architecture-independent data (com)" + } + ], + "type" : "PATH", + "value" : "com" + }, + { + "name" : "CMAKE_INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only single-machine data (etc)" + } + ], + "type" : "PATH", + "value" : "etc" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program used to build from build.ninja files." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/Ninja/ninja.exe" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_INCLUDE_BEFORE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "fontManager" + }, + { + "name" : "CMAKE_PROJECT_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0.1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MAJOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MINOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_PATCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_VERSION_TWEAK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe" + }, + { + "name" : "CMAKE_RC_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "RC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe" + }, + { + "name" : "CMAKE_RC_COMPILER_WORKS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_RC_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe" + }, + { + "name" : "CMAKE_TAPI", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_TAPI-NOTFOUND" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Threads" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding WrapAtomic" + } + ], + "type" : "INTERNAL", + "value" : "[1][v()]" + }, + { + "name" : "HAVE_STDATOMIC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_STDATOMIC" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) host Qt components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_ADDITIONAL_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Skip Qt Creator's package manager auto-setup" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for QT." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "QT_FEATURE_abstractbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_abstractslider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractslider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility_atspi_bridge", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility_atspi_bridge (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_action", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: action (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_aesni", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: aesni (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_alloca_malloc_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_android_style_assets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: android_style_assets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_animation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: animation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_appstore_compliant", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: appstore_compliant (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crc32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crc32 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crypto", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crypto (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512bw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512bw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512cd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512cd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512dq", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512dq (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512er", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512er (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512f", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512f (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512ifma", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512ifma (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512pf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512pf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_backtrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: backtrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_buttongroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: buttongroup (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_calendarwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: calendarwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_checkbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: checkbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clipboard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clipboard (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clock_gettime", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_gettime (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_clock_monotonic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_monotonic (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_close_range", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: close_range (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_colordialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colordialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_colornames", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colornames (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_columnview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: columnview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_combobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: combobox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlineparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlineparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlinkbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlinkbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_completer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: completer (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concatenatetablesproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concatenatetablesproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concurrent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concurrent (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_contextmenu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: contextmenu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cpp_winrt", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cpp_winrt (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cross_compile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cross_compile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cssparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cssparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ctf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ctf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cursor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cursor (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx11_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx11_future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx17_filesystem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx17_filesystem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx20", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx20 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx23_stacktrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx23_stacktrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2a", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2a (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2b", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2b (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_datawidgetmapper", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datawidgetmapper (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datestring", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datestring (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug_and_release", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug_and_release (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_desktopservices", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: desktopservices (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_developer_build", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: developer_build (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dial", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dial (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialogbuttonbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialogbuttonbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d1_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_directfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_directwrite", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_directwrite3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dladdr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dladdr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dlopen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dlopen (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dockwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dockwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_draganddrop", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: draganddrop (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_drm_atomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: drm_atomic (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dynamicgl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dynamicgl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_easingcurve", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: easingcurve (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_effects", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: effects (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_egl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_egl_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_brcm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_brcm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_egldevice", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_egldevice (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_gbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_gbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_mali", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_mali (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_openwfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_openwfd (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_rcar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_rcar (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv_wl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv_wl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_elf_private_full_version", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: elf_private_full_version (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_errormessage", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: errormessage (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_etw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: etw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_evdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: evdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_f16c", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: f16c (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filedialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filedialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemiterator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemiterator (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemwatcher", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemwatcher (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontcombobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontcombobox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontconfig", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontconfig (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_fontdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_force_asserts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_asserts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_force_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_forkfd_pidfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_formlayout", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: formlayout (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_framework", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: framework (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fscompleter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fscompleter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_futimens", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: futimens (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gc_binaries", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gc_binaries (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gestures", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gestures (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_getauxval", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getauxval (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_getentropy", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getentropy (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gif", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gif (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_glib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_glibc_fortify_source", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glibc_fortify_source (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicseffect", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicseffect (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_graphicsframecapture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsframecapture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicsview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_groupbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: groupbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gtk3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gtk3 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gui", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gui (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_highdpiscaling", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: highdpiscaling (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_hijricalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: hijricalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ico", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ico (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_icu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: icu (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_identityproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: identityproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_im", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: im (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_heuristic_mask", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_heuristic_mask (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_text", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_text (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_bmp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_bmp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_ppm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_ppm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xpm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xpm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformatplugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformatplugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageio_text_loading", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageio_text_loading (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_inotify", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inotify (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_inputdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inputdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_integrityfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_integrityhid", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityhid (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_intelcet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: intelcet (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_islamiccivilcalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: islamiccivilcalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemviews", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemviews (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_jalalicalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jalalicalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_journald", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: journald (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_keysequenceedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: keysequenceedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_kms", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: kms (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_label", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: label (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_largefile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: largefile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lcdnumber", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lcdnumber (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libcpp_hardening", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libcpp_hardening (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_axis_api", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_axis_api (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_hires_wheel_support", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_hires_wheel_support (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_library", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: library (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libstdcpp_assertions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libstdcpp_assertions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libudev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libudev (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_lineedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lineedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_linkat", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linkat (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_linuxfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linuxfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_listview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_listwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_localtime_r", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localtime_r (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_localtime_s", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localtime_s (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lttng", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lttng (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mainwindow", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mainwindow (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mdiarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mdiarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_memmem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: memmem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_memrchr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: memrchr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_menu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_menubar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menubar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_messagebox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: messagebox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_metal", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: metal (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mimetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mimetype_database", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype_database (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mips_dsp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dsp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mips_dspr2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dspr2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_movie", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: movie (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mtdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mtdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_multiprocess", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: multiprocess (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_neon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: neon (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_network", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: network (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_no_direct_extern_access", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_direct_extern_access (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_no_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengles2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles31", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles31 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles32 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openssl_hash", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_hash (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv11 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv30", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv30 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openvg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openvg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pdf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pdf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_permissions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: permissions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_picture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: picture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_plugin_manifest", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: plugin_manifest (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_poll_exit_on_error", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_exit_on_error (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_poll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_poll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_pollts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_pollts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_ppoll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_ppoll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_select", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_select (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_fallocate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_fallocate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_posix_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_precompile_header", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: precompile_header (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printsupport", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printsupport (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_private_tests", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: private_tests (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_process", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: process (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_processenvironment", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: processenvironment (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_proxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: proxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pushbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pushbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qqnx_imf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_imf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qqnx_pps", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_pps (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_radiobutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: radiobutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_64bit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_64bit (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_fp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_fp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdrnd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdrnd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdseed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdseed (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_exports", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_exports (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_relocations", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_relocations (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_regularexpression", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: regularexpression (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relocatable", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relocatable (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relro_now_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relro_now_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_renameat2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: renameat2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_resizehandler", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: resizehandler (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rpath", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rpath (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_rubberband", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rubberband (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scroller", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scroller (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_separate_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: separate_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sessionmanager", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sessionmanager (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_settings", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: settings (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sha3_fast", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sha3_fast (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shani", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shani (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shared", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shared (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sharedmemory", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sharedmemory (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shortcut", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shortcut (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_signaling_nan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: signaling_nan (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_simulator_and_device", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: simulator_and_device (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sizegrip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sizegrip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slog2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slog2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sortfilterproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_spinbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: spinbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splashscreen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splashscreen (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splitter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splitter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sql", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sql (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_1 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ssse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ssse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stack_clash_protection", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_clash_protection (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stack_protector", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_protector (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stackedwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stackedwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_standarditemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: standarditemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_static", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: static (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_statusbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statusbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_statustip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statustip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_std_atomic64", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: std_atomic64 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stdlib_libcpp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stdlib_libcpp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_stringlistmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stringlistmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_android", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_android (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_fusion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_fusion (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_mac", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_mac (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_stylesheet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_stylesheet (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows11 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windowsvista", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windowsvista (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syntaxhighlighter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syntaxhighlighter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syslog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syslog (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_libb2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_libb2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_xcb_xinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_xcb_xinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_zlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_zlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_systemsemaphore", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemsemaphore (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_systemtrayicon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemtrayicon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sysv_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sysv_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tabbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabletevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabletevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tableview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tableview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tablewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tablewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_temporaryfile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: temporaryfile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_testlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: testlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textbrowser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textbrowser (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textdate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textdate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_texthtmlparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: texthtmlparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textodfwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textodfwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_thread", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: thread (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone_locale", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone_locale (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_toolbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tooltip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tooltip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_translation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: translation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_transposeproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: transposeproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treeview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treeview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_trivial_auto_var_init_pattern", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tslib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tslib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tuiotouch", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tuiotouch (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undocommand", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undocommand (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undogroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undogroup (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undostack", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undostack (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undoview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undoview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_use_bfd_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_bfd_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_gold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_gold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_lld_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_lld_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_mold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_mold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vaes", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vaes (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_validator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: validator (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_version_tagging", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: version_tagging (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkgen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkgen (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkkhrdisplay", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkkhrdisplay (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vnc", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vnc (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vulkan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vulkan (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wasm_exceptions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_exceptions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wasm_simd128", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_simd128 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wayland", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wayland (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_whatsthis", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: whatsthis (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wheelevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wheelevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgettextcontrol", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgettextcontrol (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wizard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wizard (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_x86intrin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: x86intrin (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xcb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_egl_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_egl_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_native_painting", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_native_painting (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_sm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_sm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xml", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xml (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstream", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstream (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xrender", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xrender (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_zstd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: zstd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_QMAKE_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/bin/qmake.exe" + }, + { + "name" : "Qt6CoreTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6CoreTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools" + }, + { + "name" : "Qt6Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Core." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core" + }, + { + "name" : "Qt6EntryPointPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6EntryPointPrivate." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate" + }, + { + "name" : "Qt6GuiTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6GuiTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools" + }, + { + "name" : "Qt6Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Gui." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui" + }, + { + "name" : "Qt6WidgetsTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6WidgetsTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools" + }, + { + "name" : "Qt6Widgets_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Widgets." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets" + }, + { + "name" : "Qt6ZlibPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6ZlibPrivate." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate" + }, + { + "name" : "Qt6_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_GLSLC_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLC_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "Vulkan_INCLUDE_DIR-NOTFOUND" + }, + { + "name" : "Vulkan_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_LIBRARY-NOTFOUND" + }, + { + "name" : "WINDEPLOYQT_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe" + }, + { + "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "linker supports push/pop state" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files (x86)/fontManager" + }, + { + "name" : "fontManager_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + }, + { + "name" : "fontManager_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "fontManager_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cmakeFiles-v1-1e037ab44a68da0bd0aa.json b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cmakeFiles-v1-1e037ab44a68da0bd0aa.json new file mode 100644 index 0000000..8589639 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cmakeFiles-v1-1e037ab44a68da0bd0aa.json @@ -0,0 +1,1575 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystem.cmake.in" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeNinjaFindMake.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Determine-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CrayClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/OrangeC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/TIClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Tasking-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-FindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug", + "source" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-b23363c4f74e6a4e3a62.json b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-b23363c4f74e6a4e3a62.json new file mode 100644 index 0000000..4ad8316 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-b23363c4f74e6a4e3a62.json @@ -0,0 +1,79 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-00651748eee497957bee.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "fontManager", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 0, + "id" : "fontManager::@6890427a1f51a3e7e1df", + "jsonFile" : "target-fontManager-Debug-55f1212fdec763ec8666.json", + "name" : "fontManager", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "fontManager_autogen::@6890427a1f51a3e7e1df", + "jsonFile" : "target-fontManager_autogen-Debug-73123cc51a9029ffa82d.json", + "name" : "fontManager_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "fontManager_autogen_timestamp_deps::@6890427a1f51a3e7e1df", + "jsonFile" : "target-fontManager_autogen_timestamp_deps-Debug-9c9a1fd17d1466f2351a.json", + "name" : "fontManager_autogen_timestamp_deps", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug", + "source" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app" + }, + "version" : + { + "major" : 2, + "minor" : 7 + } +} diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-00651748eee497957bee.json b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-00651748eee497957bee.json new file mode 100644 index 0000000..24c7dcd --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-00651748eee497957bee.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 64, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "fontManager.exe" + ], + "targetId" : "fontManager::@6890427a1f51a3e7e1df", + "targetIndex" : 0, + "type" : "target" + } + ], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2024-10-25T13-38-20-0622.json b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2024-10-25T13-38-20-0622.json new file mode 100644 index 0000000..7454f8e --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2024-10-25T13-38-20-0622.json @@ -0,0 +1,89 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe", + "cpack" : "C:/dev/Qt/Tools/CMake_64/bin/cpack.exe", + "ctest" : "C:/dev/Qt/Tools/CMake_64/bin/ctest.exe", + "root" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 29, + "patch" : 3, + "string" : "3.29.3", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-b23363c4f74e6a4e3a62.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + }, + { + "jsonFile" : "cache-v2-31d7257b2120388442e8.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-1e037ab44a68da0bd0aa.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-31d7257b2120388442e8.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-1e037ab44a68da0bd0aa.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-b23363c4f74e6a4e3a62.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + } + } +} diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager-Debug-55f1212fdec763ec8666.json b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager-Debug-55f1212fdec763ec8666.json new file mode 100644 index 0000000..9cfc546 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager-Debug-55f1212fdec763ec8666.json @@ -0,0 +1,574 @@ +{ + "artifacts" : + [ + { + "path" : "fontManager.exe" + }, + { + "path" : "fontManager.pdb" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "_qt_internal_create_executable", + "qt6_add_executable", + "qt_add_executable", + "install", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "find_dependency", + "_qt_internal_find_qt_dependencies" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 957, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 644, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 703, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 64, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 47, + "parent" : 0 + }, + { + "command" : 8, + "file" : 1, + "line" : 13, + "parent" : 0 + }, + { + "file" : 4, + "parent" : 7 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 8 + }, + { + "file" : 3, + "parent" : 9 + }, + { + "command" : 7, + "file" : 3, + "line" : 55, + "parent" : 10 + }, + { + "file" : 2, + "parent" : 11 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 12 + }, + { + "command" : 5, + "file" : 0, + "line" : 645, + "parent" : 2 + }, + { + "command" : 7, + "file" : 3, + "line" : 43, + "parent" : 10 + }, + { + "file" : 9, + "parent" : 15 + }, + { + "command" : 10, + "file" : 9, + "line" : 43, + "parent" : 16 + }, + { + "command" : 9, + "file" : 8, + "line" : 143, + "parent" : 17 + }, + { + "command" : 8, + "file" : 7, + "line" : 76, + "parent" : 18 + }, + { + "file" : 6, + "parent" : 19 + }, + { + "command" : 7, + "file" : 6, + "line" : 57, + "parent" : 20 + }, + { + "file" : 5, + "parent" : 21 + }, + { + "command" : 6, + "file" : 5, + "line" : 61, + "parent" : 22 + }, + { + "command" : 7, + "file" : 6, + "line" : 45, + "parent" : 20 + }, + { + "file" : 12, + "parent" : 24 + }, + { + "command" : 10, + "file" : 12, + "line" : 44, + "parent" : 25 + }, + { + "command" : 9, + "file" : 8, + "line" : 143, + "parent" : 26 + }, + { + "command" : 8, + "file" : 7, + "line" : 76, + "parent" : 27 + }, + { + "file" : 11, + "parent" : 28 + }, + { + "command" : 7, + "file" : 11, + "line" : 55, + "parent" : 29 + }, + { + "file" : 10, + "parent" : 30 + }, + { + "command" : 6, + "file" : 10, + "line" : 61, + "parent" : 31 + }, + { + "command" : 6, + "file" : 10, + "line" : 83, + "parent" : 31 + }, + { + "command" : 9, + "file" : 8, + "line" : 143, + "parent" : 17 + }, + { + "command" : 8, + "file" : 7, + "line" : 76, + "parent" : 34 + }, + { + "file" : 14, + "parent" : 35 + }, + { + "command" : 7, + "file" : 14, + "line" : 55, + "parent" : 36 + }, + { + "file" : 13, + "parent" : 37 + }, + { + "command" : 6, + "file" : 13, + "line" : 61, + "parent" : 38 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 14, + "define" : "MINGW_HAS_SECURE_API=1" + }, + { + "backtrace" : 14, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 14, + "define" : "QT_NEEDS_QMAIN" + }, + { + "backtrace" : 6, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 14, + "define" : "UNICODE" + }, + { + "backtrace" : 14, + "define" : "WIN32" + }, + { + "backtrace" : 14, + "define" : "WIN64" + }, + { + "backtrace" : 14, + "define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE" + }, + { + "backtrace" : 14, + "define" : "_UNICODE" + }, + { + "backtrace" : 14, + "define" : "_WIN64" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/include" + }, + { + "backtrace" : 14, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtCore" + }, + { + "backtrace" : 14, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include" + }, + { + "backtrace" : 14, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtGui" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 14, + 14 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "fontManager_autogen::@6890427a1f51a3e7e1df" + }, + { + "id" : "fontManager_autogen_timestamp_deps::@6890427a1f51a3e7e1df" + } + ], + "id" : "fontManager::@6890427a1f51a3e7e1df", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/fontManager" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g", + "role" : "flags" + }, + { + "fragment" : "-mwindows", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 13, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 14, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Core.a", + "role" : "libraries" + }, + { + "backtrace" : 23, + "fragment" : "-lmpr", + "role" : "libraries" + }, + { + "backtrace" : 23, + "fragment" : "-luserenv", + "role" : "libraries" + }, + { + "backtrace" : 32, + "fragment" : "-lmingw32", + "role" : "libraries" + }, + { + "backtrace" : 32, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6EntryPoint.a", + "role" : "libraries" + }, + { + "backtrace" : 33, + "fragment" : "-lshell32", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ld3d11", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ldxgi", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ldxguid", + "role" : "libraries" + }, + { + "backtrace" : 39, + "fragment" : "-ld3d12", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "fontManager", + "nameOnDisk" : "fontManager.exe", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 5, + 6 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4, + 7 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 8 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "main.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "cmainwindow.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "path" : "cmainwindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "cmainwindow.ui", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "ifontprovider.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/include/ui_cmainwindow.h", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/timestamp", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/timestamp.rule", + "sourceGroupIndex" : 3 + } + ], + "type" : "EXECUTABLE" +} diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen-Debug-73123cc51a9029ffa82d.json b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen-Debug-73123cc51a9029ffa82d.json new file mode 100644 index 0000000..9a6446b --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen-Debug-73123cc51a9029ffa82d.json @@ -0,0 +1,71 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "fontManager_autogen_timestamp_deps::@6890427a1f51a3e7e1df" + } + ], + "id" : "fontManager_autogen::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "fontManager_autogen", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/fontManager_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/fontManager_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen_timestamp_deps-Debug-9c9a1fd17d1466f2351a.json b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen_timestamp_deps-Debug-9c9a1fd17d1466f2351a.json new file mode 100644 index 0000000..08d7a35 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen_timestamp_deps-Debug-9c9a1fd17d1466f2351a.json @@ -0,0 +1,27 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "id" : "fontManager_autogen_timestamp_deps::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "fontManager_autogen_timestamp_deps", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeploySupport.cmake b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeploySupport.cmake new file mode 100644 index 0000000..603cce2 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeploySupport.cmake @@ -0,0 +1,69 @@ +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 "") +endif() + +# These are internal implementation details. They may be removed at any time. +set(__QT_DEPLOY_SYSTEM_NAME "Windows") +set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON") +set(__QT_DEPLOY_TOOL "C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe") +set(__QT_DEPLOY_IMPL_DIR "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt") +set(__QT_DEPLOY_VERBOSE "") +set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6") +set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0") +set(__QT_DEPLOY_ACTIVE_CONFIG "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 "C:/dev/Qt/6.8.0/mingw_64") +set(__QT_DEPLOY_QT_INSTALL_BINS "bin") +set(__QT_DEPLOY_QT_INSTALL_DATA ".") +set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "bin") +set(__QT_DEPLOY_QT_INSTALL_PLUGINS "plugins") +set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "translations") +set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "C:/dev/Qt/6.8.0/mingw_64/bin/qtpaths6.exe") +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 + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake" + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake" +) +foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files) + include("${__qt_deploy_support_file}") +endforeach() + +unset(__qt_deploy_support_file) +unset(__qt_deploy_support_files) diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake new file mode 100644 index 0000000..be7ff7f --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake @@ -0,0 +1,3 @@ +set(__QT_DEPLOY_TARGET_fontManager_FILE C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager.exe) +set(__QT_DEPLOY_TARGET_fontManager_TYPE EXECUTABLE) +set(__QT_DEPLOY_TARGET_fontManager_RUNTIME_DLLS C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Widgets.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Gui.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Core.dll) diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/LICENSE.conan b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/LICENSE.conan new file mode 100644 index 0000000..541f5a3 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/LICENSE.conan @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2019 JFrog + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake new file mode 100644 index 0000000..c797138 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake @@ -0,0 +1,272 @@ +# +# Internal Qt Creator variable reference +# +foreach(qtcreator_var + QT_QMAKE_EXECUTABLE CMAKE_PREFIX_PATH CMAKE_C_COMPILER CMAKE_CXX_COMPILER + CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO) + set(__just_reference_${qtcreator_var} ${${qtcreator_var}}) +endforeach() + +if (EXISTS "${CMAKE_SOURCE_DIR}/QtCreatorPackageManager.cmake") + include("${CMAKE_SOURCE_DIR}/QtCreatorPackageManager.cmake") +endif() + +if (QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP) + return() +endif() +option(QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP "Skip Qt Creator's package manager auto-setup" OFF) + +# Store the C/C++ object output extension +if (CMAKE_VERSION GREATER_EQUAL "3.19") + cmake_language(DEFER CALL set CMAKE_C_OUTPUT_EXTENSION "${CMAKE_C_OUTPUT_EXTENSION}" CACHE STRING "" FORCE) + cmake_language(DEFER CALL set CMAKE_CXX_OUTPUT_EXTENSION "${CMAKE_CXX_OUTPUT_EXTENSION}" CACHE STRING "" FORCE) +endif() + +macro(qtc_auto_setup_compiler_standard toolchainFile) + foreach(lang_var C CXX CUDA OBJC OBJCXX) + foreach(prop_var STANDARD STANDARD_REQUIRED EXTENSIONS) + if (CMAKE_${lang_var}_${prop_var}) + file(APPEND "${toolchainFile}" + "set(CMAKE_${lang_var}_${prop_var} ${CMAKE_${lang_var}_${prop_var}})\n") + endif() + endforeach() + endforeach() + + # Forward important CMake variables to the package manager in the toolchain file + foreach(fwd_var CMAKE_MSVC_RUNTIME_LIBRARY CMAKE_SYSROOT CMAKE_OSX_SYSROOT CMAKE_OSX_ARCHITECTURES) + if (${fwd_var}) + file(APPEND "${toolchainFile}" + "set(${fwd_var} ${${fwd_var}})\n") + endif() + endforeach() +endmacro() + +# +# conan +# +macro(qtc_auto_setup_conan) + foreach(file conanfile.txt conanfile.py) + if (EXISTS "${CMAKE_SOURCE_DIR}/${file}") + set(conanfile_txt "${CMAKE_SOURCE_DIR}/${file}") + break() + endif() + endforeach() + + if (conanfile_txt AND NOT QT_CREATOR_SKIP_CONAN_SETUP) + option(QT_CREATOR_SKIP_CONAN_SETUP "Skip Qt Creator's conan package manager auto-setup" OFF) + set(QT_CREATOR_CONAN_BUILD_POLICY "missing" CACHE STRING "Qt Creator's conan package manager auto-setup build policy. This is used for the BUILD property of cmake_conan_run") + + find_program(conan_program conan) + if (NOT conan_program) + message(WARNING "Qt Creator: conan executable not found. " + "Package manager auto-setup will be skipped. " + "To disable this warning set QT_CREATOR_SKIP_CONAN_SETUP to ON.") + return() + endif() + execute_process(COMMAND ${conan_program} --version + RESULT_VARIABLE result_code + OUTPUT_VARIABLE conan_version_output + ERROR_VARIABLE conan_version_output) + if (NOT result_code EQUAL 0) + message(FATAL_ERROR "conan --version failed='${result_code}: ${conan_version_output}") + endif() + + string(REGEX REPLACE ".*Conan version ([0-9].[0-9]).*" "\\1" conan_version "${conan_version_output}") + + set(conanfile_timestamp_file "${CMAKE_BINARY_DIR}/conan-dependencies/conanfile.timestamp") + file(TIMESTAMP "${conanfile_txt}" conanfile_timestamp) + + set(do_conan_installation ON) + if (EXISTS "${conanfile_timestamp_file}") + file(READ "${conanfile_timestamp_file}" old_conanfile_timestamp) + if ("${conanfile_timestamp}" STREQUAL "${old_conanfile_timestamp}") + set(do_conan_installation OFF) + endif() + endif() + + set(conanfile_build_policy_file "${CMAKE_BINARY_DIR}/conan-dependencies/conanfile.buildpolicy") + if (EXISTS "${conanfile_build_policy_file}") + file(READ "${conanfile_build_policy_file}" build_policy) + if (NOT "${build_policy}" STREQUAL "${QT_CREATOR_CONAN_BUILD_POLICY}") + set(do_conan_installation ON) + endif() + endif() + + if (do_conan_installation) + message(STATUS "Qt Creator: conan package manager auto-setup. " + "Skip this step by setting QT_CREATOR_SKIP_CONAN_SETUP to ON.") + + file(COPY "${conanfile_txt}" DESTINATION "${CMAKE_BINARY_DIR}/conan-dependencies/") + + file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" " + set(CMAKE_C_COMPILER \"${CMAKE_C_COMPILER}\") + set(CMAKE_CXX_COMPILER \"${CMAKE_CXX_COMPILER}\") + ") + qtc_auto_setup_compiler_standard("${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake") + + if (CMAKE_TOOLCHAIN_FILE) + file(APPEND "${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" + "include(\"${CMAKE_TOOLCHAIN_FILE}\")\n") + endif() + + file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/CMakeLists.txt" " + cmake_minimum_required(VERSION 3.15) + + unset(CMAKE_PROJECT_INCLUDE_BEFORE CACHE) + project(conan-setup) + + if (${conan_version} VERSION_GREATER_EQUAL 2.0) + set(CONAN_COMMAND \"${conan_program}\") + include(\"${CMAKE_CURRENT_LIST_DIR}/conan_provider.cmake\") + conan_profile_detect_default() + detect_host_profile(\"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\") + + set(build_types \${CMAKE_BUILD_TYPE}) + if (CMAKE_CONFIGURATION_TYPES) + set(build_types \${CMAKE_CONFIGURATION_TYPES}) + endif() + + foreach(type \${build_types}) + conan_install( + -pr \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\" + --build=${QT_CREATOR_CONAN_BUILD_POLICY} + -s build_type=\${type} + -g CMakeDeps) + endforeach() + + get_property(CONAN_INSTALL_SUCCESS GLOBAL PROPERTY CONAN_INSTALL_SUCCESS) + if (CONAN_INSTALL_SUCCESS) + get_property(CONAN_GENERATORS_FOLDER GLOBAL PROPERTY CONAN_GENERATORS_FOLDER) + file(TO_CMAKE_PATH \"\${CONAN_GENERATORS_FOLDER}\" CONAN_GENERATORS_FOLDER) + file(WRITE \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_paths.cmake\" \" + list(PREPEND CMAKE_PREFIX_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(PREPEND CMAKE_MODULE_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(PREPEND CMAKE_FIND_ROOT_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(REMOVE_DUPLICATES CMAKE_PREFIX_PATH) + list(REMOVE_DUPLICATES CMAKE_MODULE_PATH) + list(REMOVE_DUPLICATES CMAKE_FIND_ROOT_PATH) + set(CMAKE_PREFIX_PATH \\\"\\\${CMAKE_PREFIX_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + set(CMAKE_MODULE_PATH \\\"\\\${CMAKE_MODULE_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + set(CMAKE_FIND_ROOT_PATH \\\"\\\${CMAKE_FIND_ROOT_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + \") + endif() + else() + include(\"${CMAKE_CURRENT_LIST_DIR}/conan.cmake\") + conan_cmake_run( + CONANFILE \"${conanfile_txt}\" + INSTALL_FOLDER \"${CMAKE_BINARY_DIR}/conan-dependencies\" + GENERATORS cmake_paths cmake_find_package json + BUILD ${QT_CREATOR_CONAN_BUILD_POLICY} + ENV CONAN_CMAKE_TOOLCHAIN_FILE=\"${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake\" + ) + endif() + ") + + if (NOT DEFINED CMAKE_BUILD_TYPE AND NOT DEFINED CMAKE_CONFIGURATION_TYPES) + set(CMAKE_CONFIGURATION_TYPES "Debug;Release") + endif() + + execute_process(COMMAND ${CMAKE_COMMAND} + -S "${CMAKE_BINARY_DIR}/conan-dependencies/" + -B "${CMAKE_BINARY_DIR}/conan-dependencies/build" + -C "${CMAKE_BINARY_DIR}/qtcsettings.cmake" + -D "CMAKE_TOOLCHAIN_FILE=${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" + -G ${CMAKE_GENERATOR} + -D CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} + -D "CMAKE_CONFIGURATION_TYPES=${CMAKE_CONFIGURATION_TYPES}" + RESULT_VARIABLE result + ) + if (result EQUAL 0) + file(WRITE "${conanfile_timestamp_file}" "${conanfile_timestamp}") + file(WRITE "${conanfile_build_policy_file}" ${QT_CREATOR_CONAN_BUILD_POLICY}) + else() + message(WARNING "Qt Creator's conan package manager auto-setup failed. Consider setting " + "QT_CREATOR_SKIP_CONAN_SETUP to ON and reconfigure to skip this step.") + return() + endif() + endif() + + include("${CMAKE_BINARY_DIR}/conan-dependencies/conan_paths.cmake") + endif() + unset(conanfile_txt) +endmacro() +qtc_auto_setup_conan() + +# +# vcpkg +# +macro(qtc_auto_setup_vcpkg) + if (EXISTS "${CMAKE_SOURCE_DIR}/vcpkg.json" AND NOT QT_CREATOR_SKIP_VCPKG_SETUP) + option(QT_CREATOR_SKIP_VCPKG_SETUP "Skip Qt Creator's vcpkg package manager auto-setup" OFF) + + find_program(vcpkg_program vcpkg + PATHS $ENV{VCPKG_ROOT} ${CMAKE_SOURCE_DIR}/vcpkg + NO_DEFAULT_PATH + ) + if (NOT vcpkg_program) + message(WARNING "Qt Creator: vcpkg executable not found. " + "Package manager auto-setup will be skipped. " + "To disable this warning set QT_CREATOR_SKIP_VCPKG_SETUP to ON.") + return() + endif() + execute_process(COMMAND ${vcpkg_program} version + RESULT_VARIABLE result_code + OUTPUT_VARIABLE vcpkg_version_output + ERROR_VARIABLE vcpkg_version_output) + if (NOT result_code EQUAL 0) + message(FATAL_ERROR "vcpkg version failed='${result_code}: ${vcpkg_version_output}") + endif() + + # Resolve any symlinks + get_filename_component(vpkg_program_real_path ${vcpkg_program} REALPATH) + get_filename_component(vpkg_root ${vpkg_program_real_path} DIRECTORY) + + if (NOT EXISTS "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + message(STATUS "Qt Creator: vcpkg package manager auto-setup. " + "Skip this step by setting QT_CREATOR_SKIP_VCPKG_SETUP to ON.") + + file(WRITE "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" " + set(CMAKE_C_COMPILER \"${CMAKE_C_COMPILER}\") + set(CMAKE_CXX_COMPILER \"${CMAKE_CXX_COMPILER}\") + ") + qtc_auto_setup_compiler_standard("${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + + if (CMAKE_TOOLCHAIN_FILE AND NOT + CMAKE_TOOLCHAIN_FILE STREQUAL "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + file(APPEND "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" + "include(\"${CMAKE_TOOLCHAIN_FILE}\")\n") + endif() + + if (VCPKG_TARGET_TRIPLET) + set(vcpkg_triplet ${VCPKG_TARGET_TRIPLET}) + else() + if (WIN32) + set(vcpkg_triplet x64-mingw-static) + if (CMAKE_CXX_COMPILER MATCHES ".*/(.*)/cl.exe") + set(vcpkg_triplet ${CMAKE_MATCH_1}-windows) + endif() + elseif(APPLE) + set(vcpkg_triplet x64-osx) + else() + set(vcpkg_triplet x64-linux) + endif() + endif() + + file(APPEND "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" " + set(VCPKG_TARGET_TRIPLET ${vcpkg_triplet}) + include(\"${vpkg_root}/scripts/buildsystems/vcpkg.cmake\") + ") + endif() + + set(CMAKE_TOOLCHAIN_FILE "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" CACHE PATH "" FORCE) + + # Save CMAKE_PREFIX_PATH and CMAKE_MODULE_PATH as cache variables + if (CMAKE_VERSION GREATER_EQUAL "3.19") + cmake_language(DEFER CALL list REMOVE_DUPLICATES CMAKE_PREFIX_PATH) + cmake_language(DEFER CALL list REMOVE_DUPLICATES CMAKE_MODULE_PATH) + cmake_language(DEFER CALL set CMAKE_PREFIX_PATH "${CMAKE_PREFIX_PATH}" CACHE STRING "" FORCE) + cmake_language(DEFER CALL set CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" CACHE STRING "" FORCE) + endif() + endif() +endmacro() +qtc_auto_setup_vcpkg() diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan.cmake b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan.cmake new file mode 100644 index 0000000..4f5f67e --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan.cmake @@ -0,0 +1,1026 @@ +# The MIT License (MIT) + +# Copyright (c) 2018 JFrog + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + + + +# This file comes from: https://github.com/conan-io/cmake-conan. Please refer +# to this repository for issues and documentation. + +# Its purpose is to wrap and launch Conan C/C++ Package Manager when cmake is called. +# It will take CMake current settings (os, compiler, compiler version, architecture) +# and translate them to conan settings for installing and retrieving dependencies. + +# It is intended to facilitate developers building projects that have conan dependencies, +# but it is only necessary on the end-user side. It is not necessary to create conan +# packages, in fact it shouldn't be use for that. Check the project documentation. + +# version: 0.18.1 + +include(CMakeParseArguments) + +function(_get_msvc_ide_version result) + set(${result} "" PARENT_SCOPE) + if(NOT MSVC_VERSION VERSION_LESS 1400 AND MSVC_VERSION VERSION_LESS 1500) + set(${result} 8 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1500 AND MSVC_VERSION VERSION_LESS 1600) + set(${result} 9 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1600 AND MSVC_VERSION VERSION_LESS 1700) + set(${result} 10 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1700 AND MSVC_VERSION VERSION_LESS 1800) + set(${result} 11 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1800 AND MSVC_VERSION VERSION_LESS 1900) + set(${result} 12 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1900 AND MSVC_VERSION VERSION_LESS 1910) + set(${result} 14 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1910 AND MSVC_VERSION VERSION_LESS 1920) + set(${result} 15 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1920 AND MSVC_VERSION VERSION_LESS 1930) + set(${result} 16 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1930 AND MSVC_VERSION VERSION_LESS 1940) + set(${result} 17 PARENT_SCOPE) + else() + message(FATAL_ERROR "Conan: Unknown MSVC compiler version [${MSVC_VERSION}]") + endif() +endfunction() + +macro(_conan_detect_build_type) + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_BUILD_TYPE) + set(_CONAN_SETTING_BUILD_TYPE ${ARGUMENTS_BUILD_TYPE}) + elseif(CMAKE_BUILD_TYPE) + set(_CONAN_SETTING_BUILD_TYPE ${CMAKE_BUILD_TYPE}) + else() + message(FATAL_ERROR "Please specify in command line CMAKE_BUILD_TYPE (-DCMAKE_BUILD_TYPE=Release)") + endif() + + string(TOUPPER ${_CONAN_SETTING_BUILD_TYPE} _CONAN_SETTING_BUILD_TYPE_UPPER) + if (_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "DEBUG") + set(_CONAN_SETTING_BUILD_TYPE "Debug") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "RELEASE") + set(_CONAN_SETTING_BUILD_TYPE "Release") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "RELWITHDEBINFO") + set(_CONAN_SETTING_BUILD_TYPE "RelWithDebInfo") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "MINSIZEREL") + set(_CONAN_SETTING_BUILD_TYPE "MinSizeRel") + endif() +endmacro() + +macro(_conan_check_system_name) + #handle -s os setting + if(CMAKE_SYSTEM_NAME AND NOT CMAKE_SYSTEM_NAME STREQUAL "Generic") + #use default conan os setting if CMAKE_SYSTEM_NAME is not defined + set(CONAN_SYSTEM_NAME ${CMAKE_SYSTEM_NAME}) + if(${CMAKE_SYSTEM_NAME} STREQUAL "Darwin") + set(CONAN_SYSTEM_NAME Macos) + endif() + if(${CMAKE_SYSTEM_NAME} STREQUAL "QNX") + set(CONAN_SYSTEM_NAME Neutrino) + endif() + set(CONAN_SUPPORTED_PLATFORMS Windows Linux Macos Android iOS FreeBSD WindowsStore WindowsCE watchOS tvOS FreeBSD SunOS AIX Arduino Emscripten Neutrino) + list (FIND CONAN_SUPPORTED_PLATFORMS "${CONAN_SYSTEM_NAME}" _index) + if (${_index} GREATER -1) + #check if the cmake system is a conan supported one + set(_CONAN_SETTING_OS ${CONAN_SYSTEM_NAME}) + else() + message(FATAL_ERROR "cmake system ${CONAN_SYSTEM_NAME} is not supported by conan. Use one of ${CONAN_SUPPORTED_PLATFORMS}") + endif() + endif() +endmacro() + +macro(_conan_check_language) + get_property(_languages GLOBAL PROPERTY ENABLED_LANGUAGES) + if (";${_languages};" MATCHES ";CXX;") + set(LANGUAGE CXX) + set(USING_CXX 1) + elseif (";${_languages};" MATCHES ";C;") + set(LANGUAGE C) + set(USING_CXX 0) + else () + message(FATAL_ERROR "Conan: Neither C or C++ was detected as a language for the project. Unabled to detect compiler version.") + endif() +endmacro() + +macro(_conan_detect_compiler) + + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_ARCH) + set(_CONAN_SETTING_ARCH ${ARGUMENTS_ARCH}) + endif() + + if(USING_CXX) + set(_CONAN_SETTING_COMPILER_CPPSTD ${CMAKE_CXX_STANDARD}) + endif() + + if (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL GNU) + # using GCC + # TODO: Handle other params + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(COMPILER_VERSION ${MAJOR}.${MINOR}) + if(${MAJOR} GREATER 4) + set(COMPILER_VERSION ${MAJOR}) + endif() + set(_CONAN_SETTING_COMPILER gcc) + set(_CONAN_SETTING_COMPILER_VERSION ${COMPILER_VERSION}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Intel) + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(COMPILER_VERSION ${MAJOR}.${MINOR}) + set(_CONAN_SETTING_COMPILER intel) + set(_CONAN_SETTING_COMPILER_VERSION ${COMPILER_VERSION}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL AppleClang) + # using AppleClang + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(_CONAN_SETTING_COMPILER apple-clang) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}.${MINOR}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Clang + AND NOT "${CMAKE_${LANGUAGE}_COMPILER_FRONTEND_VARIANT}" STREQUAL "MSVC" + AND NOT "${CMAKE_${LANGUAGE}_SIMULATE_ID}" STREQUAL "MSVC") + + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(_CONAN_SETTING_COMPILER clang) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}.${MINOR}) + if(APPLE) + cmake_policy(GET CMP0025 APPLE_CLANG_POLICY) + if(NOT APPLE_CLANG_POLICY STREQUAL NEW) + message(STATUS "Conan: APPLE and Clang detected. Assuming apple-clang compiler. Set CMP0025 to avoid it") + set(_CONAN_SETTING_COMPILER apple-clang) + endif() + endif() + if(${_CONAN_SETTING_COMPILER} STREQUAL clang AND ${MAJOR} GREATER 7) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}) + endif() + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif(${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL MSVC + OR (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Clang + AND "${CMAKE_${LANGUAGE}_COMPILER_FRONTEND_VARIANT}" STREQUAL "MSVC" + AND "${CMAKE_${LANGUAGE}_SIMULATE_ID}" STREQUAL "MSVC")) + + set(_VISUAL "Visual Studio") + _get_msvc_ide_version(_VISUAL_VERSION) + if("${_VISUAL_VERSION}" STREQUAL "") + message(FATAL_ERROR "Conan: Visual Studio not recognized") + else() + set(_CONAN_SETTING_COMPILER ${_VISUAL}) + set(_CONAN_SETTING_COMPILER_VERSION ${_VISUAL_VERSION}) + endif() + + if(NOT _CONAN_SETTING_ARCH) + if (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "64") + set(_CONAN_SETTING_ARCH x86_64) + elseif (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "^ARM") + message(STATUS "Conan: Using default ARM architecture from MSVC") + set(_CONAN_SETTING_ARCH armv6) + elseif (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "86") + set(_CONAN_SETTING_ARCH x86) + else () + message(FATAL_ERROR "Conan: Unknown MSVC architecture [${MSVC_${LANGUAGE}_ARCHITECTURE_ID}]") + endif() + endif() + + conan_cmake_detect_vs_runtime(_vs_runtime ${ARGV}) + message(STATUS "Conan: Detected VS runtime: ${_vs_runtime}") + set(_CONAN_SETTING_COMPILER_RUNTIME ${_vs_runtime}) + + if (CMAKE_GENERATOR_TOOLSET) + set(_CONAN_SETTING_COMPILER_TOOLSET ${CMAKE_VS_PLATFORM_TOOLSET}) + elseif(CMAKE_VS_PLATFORM_TOOLSET AND (CMAKE_GENERATOR STREQUAL "Ninja")) + set(_CONAN_SETTING_COMPILER_TOOLSET ${CMAKE_VS_PLATFORM_TOOLSET}) + endif() + else() + message(FATAL_ERROR "Conan: compiler setup not recognized") + endif() + +endmacro() + +function(conan_cmake_settings result) + #message(STATUS "COMPILER " ${CMAKE_CXX_COMPILER}) + #message(STATUS "COMPILER " ${CMAKE_CXX_COMPILER_ID}) + #message(STATUS "VERSION " ${CMAKE_CXX_COMPILER_VERSION}) + #message(STATUS "FLAGS " ${CMAKE_LANG_FLAGS}) + #message(STATUS "LIB ARCH " ${CMAKE_CXX_LIBRARY_ARCHITECTURE}) + #message(STATUS "BUILD TYPE " ${CMAKE_BUILD_TYPE}) + #message(STATUS "GENERATOR " ${CMAKE_GENERATOR}) + #message(STATUS "GENERATOR WIN64 " ${CMAKE_CL_64}) + + message(STATUS "Conan: Automatic detection of conan settings from cmake") + + conan_parse_arguments(${ARGV}) + + _conan_detect_build_type(${ARGV}) + + _conan_check_system_name() + + _conan_check_language() + + _conan_detect_compiler(${ARGV}) + + # If profile is defined it is used + if(CMAKE_BUILD_TYPE STREQUAL "Debug" AND ARGUMENTS_DEBUG_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_DEBUG_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "Release" AND ARGUMENTS_RELEASE_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_RELEASE_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo" AND ARGUMENTS_RELWITHDEBINFO_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_RELWITHDEBINFO_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel" AND ARGUMENTS_MINSIZEREL_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_MINSIZEREL_PROFILE}) + elseif(ARGUMENTS_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_PROFILE}) + endif() + + foreach(ARG ${_APPLIED_PROFILES}) + set(_SETTINGS ${_SETTINGS} -pr=${ARG}) + endforeach() + foreach(ARG ${ARGUMENTS_PROFILE_BUILD}) + conan_check(VERSION 1.24.0 REQUIRED DETECT_QUIET) + set(_SETTINGS ${_SETTINGS} -pr:b=${ARG}) + endforeach() + + if(NOT _SETTINGS OR ARGUMENTS_PROFILE_AUTO STREQUAL "ALL") + set(ARGUMENTS_PROFILE_AUTO arch build_type compiler compiler.version + compiler.runtime compiler.libcxx compiler.toolset) + endif() + + # remove any manually specified settings from the autodetected settings + foreach(ARG ${ARGUMENTS_SETTINGS}) + string(REGEX MATCH "[^=]*" MANUAL_SETTING "${ARG}") + message(STATUS "Conan: ${MANUAL_SETTING} was added as an argument. Not using the autodetected one.") + list(REMOVE_ITEM ARGUMENTS_PROFILE_AUTO "${MANUAL_SETTING}") + endforeach() + + # Automatic from CMake + foreach(ARG ${ARGUMENTS_PROFILE_AUTO}) + string(TOUPPER ${ARG} _arg_name) + string(REPLACE "." "_" _arg_name ${_arg_name}) + if(_CONAN_SETTING_${_arg_name}) + set(_SETTINGS ${_SETTINGS} -s ${ARG}=${_CONAN_SETTING_${_arg_name}}) + endif() + endforeach() + + foreach(ARG ${ARGUMENTS_SETTINGS}) + set(_SETTINGS ${_SETTINGS} -s ${ARG}) + endforeach() + + message(STATUS "Conan: Settings= ${_SETTINGS}") + + set(${result} ${_SETTINGS} PARENT_SCOPE) +endfunction() + + +function(conan_cmake_detect_unix_libcxx result) + # Take into account any -stdlib in compile options + get_directory_property(compile_options DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMPILE_OPTIONS) + string(GENEX_STRIP "${compile_options}" compile_options) + + # Take into account any _GLIBCXX_USE_CXX11_ABI in compile definitions + get_directory_property(defines DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMPILE_DEFINITIONS) + string(GENEX_STRIP "${defines}" defines) + + foreach(define ${defines}) + if(define MATCHES "_GLIBCXX_USE_CXX11_ABI") + if(define MATCHES "^-D") + set(compile_options ${compile_options} "${define}") + else() + set(compile_options ${compile_options} "-D${define}") + endif() + endif() + endforeach() + + # add additional compiler options ala cmRulePlaceholderExpander::ExpandRuleVariable + set(EXPAND_CXX_COMPILER ${CMAKE_CXX_COMPILER}) + if(CMAKE_CXX_COMPILER_ARG1) + # CMake splits CXX="foo bar baz" into CMAKE_CXX_COMPILER="foo", CMAKE_CXX_COMPILER_ARG1="bar baz" + # without this, ccache, winegcc, or other wrappers might lose all their arguments + separate_arguments(SPLIT_CXX_COMPILER_ARG1 NATIVE_COMMAND ${CMAKE_CXX_COMPILER_ARG1}) + list(APPEND EXPAND_CXX_COMPILER ${SPLIT_CXX_COMPILER_ARG1}) + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_TARGET AND CMAKE_CXX_COMPILER_TARGET) + # without --target= we may be calling the wrong underlying GCC + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_TARGET}${CMAKE_CXX_COMPILER_TARGET}") + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_EXTERNAL_TOOLCHAIN AND CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_EXTERNAL_TOOLCHAIN}${CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN}") + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_SYSROOT) + # without --sysroot= we may find the wrong #include + if(CMAKE_SYSROOT_COMPILE) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_SYSROOT}${CMAKE_SYSROOT_COMPILE}") + elseif(CMAKE_SYSROOT) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_SYSROOT}${CMAKE_SYSROOT}") + endif() + endif() + + separate_arguments(SPLIT_CXX_FLAGS NATIVE_COMMAND ${CMAKE_CXX_FLAGS}) + + if(CMAKE_OSX_SYSROOT) + set(xcode_sysroot_option "--sysroot=${CMAKE_OSX_SYSROOT}") + endif() + + execute_process( + COMMAND ${CMAKE_COMMAND} -E echo "#include " + COMMAND ${EXPAND_CXX_COMPILER} ${SPLIT_CXX_FLAGS} -x c++ ${xcode_sysroot_option} ${compile_options} -E -dM - + OUTPUT_VARIABLE string_defines + ) + + if(string_defines MATCHES "#define __GLIBCXX__") + # Allow -D_GLIBCXX_USE_CXX11_ABI=ON/OFF as argument to cmake + if(DEFINED _GLIBCXX_USE_CXX11_ABI) + if(_GLIBCXX_USE_CXX11_ABI) + set(${result} libstdc++11 PARENT_SCOPE) + return() + else() + set(${result} libstdc++ PARENT_SCOPE) + return() + endif() + endif() + + if(string_defines MATCHES "#define _GLIBCXX_USE_CXX11_ABI 1\n") + set(${result} libstdc++11 PARENT_SCOPE) + else() + # Either the compiler is missing the define because it is old, and so + # it can't use the new abi, or the compiler was configured to use the + # old abi by the user or distro (e.g. devtoolset on RHEL/CentOS) + set(${result} libstdc++ PARENT_SCOPE) + endif() + else() + set(${result} libc++ PARENT_SCOPE) + endif() +endfunction() + +function(conan_cmake_detect_vs_runtime result) + + conan_parse_arguments(${ARGV}) + if(ARGUMENTS_BUILD_TYPE) + set(build_type "${ARGUMENTS_BUILD_TYPE}") + elseif(CMAKE_BUILD_TYPE) + set(build_type "${CMAKE_BUILD_TYPE}") + else() + message(FATAL_ERROR "Please specify in command line CMAKE_BUILD_TYPE (-DCMAKE_BUILD_TYPE=Release)") + endif() + + if(build_type) + string(TOUPPER "${build_type}" build_type) + endif() + set(variables CMAKE_CXX_FLAGS_${build_type} CMAKE_C_FLAGS_${build_type} CMAKE_CXX_FLAGS CMAKE_C_FLAGS) + foreach(variable ${variables}) + if(NOT "${${variable}}" STREQUAL "") + string(REPLACE " " ";" flags "${${variable}}") + foreach (flag ${flags}) + if("${flag}" STREQUAL "/MD" OR "${flag}" STREQUAL "/MDd" OR "${flag}" STREQUAL "/MT" OR "${flag}" STREQUAL "/MTd") + string(SUBSTRING "${flag}" 1 -1 runtime) + set(${result} "${runtime}" PARENT_SCOPE) + return() + endif() + endforeach() + endif() + endforeach() + if("${build_type}" STREQUAL "DEBUG") + set(${result} "MDd" PARENT_SCOPE) + else() + set(${result} "MD" PARENT_SCOPE) + endif() +endfunction() + +function(_collect_settings result) + set(ARGUMENTS_PROFILE_AUTO arch build_type compiler compiler.version + compiler.runtime compiler.libcxx compiler.toolset + compiler.cppstd) + foreach(ARG ${ARGUMENTS_PROFILE_AUTO}) + string(TOUPPER ${ARG} _arg_name) + string(REPLACE "." "_" _arg_name ${_arg_name}) + if(_CONAN_SETTING_${_arg_name}) + set(detected_setings ${detected_setings} ${ARG}=${_CONAN_SETTING_${_arg_name}}) + endif() + endforeach() + set(${result} ${detected_setings} PARENT_SCOPE) +endfunction() + +function(conan_cmake_autodetect detected_settings) + _conan_detect_build_type(${ARGV}) + _conan_check_system_name() + _conan_check_language() + _conan_detect_compiler(${ARGV}) + _collect_settings(collected_settings) + set(${detected_settings} ${collected_settings} PARENT_SCOPE) +endfunction() + +macro(conan_parse_arguments) + set(options BASIC_SETUP CMAKE_TARGETS UPDATE KEEP_RPATHS NO_LOAD NO_OUTPUT_DIRS OUTPUT_QUIET NO_IMPORTS SKIP_STD) + set(oneValueArgs CONANFILE ARCH BUILD_TYPE INSTALL_FOLDER OUTPUT_FOLDER CONAN_COMMAND) + set(multiValueArgs DEBUG_PROFILE RELEASE_PROFILE RELWITHDEBINFO_PROFILE MINSIZEREL_PROFILE + PROFILE REQUIRES OPTIONS IMPORTS SETTINGS BUILD ENV GENERATORS PROFILE_AUTO + INSTALL_ARGS CONFIGURATION_TYPES PROFILE_BUILD BUILD_REQUIRES) + cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) +endmacro() + +function(old_conan_cmake_install) + # Calls "conan install" + # Argument BUILD is equivalant to --build={missing, PkgName,...} or + # --build when argument is 'BUILD all' (which builds all packages from source) + # Argument CONAN_COMMAND, to specify the conan path, e.g. in case of running from source + # cmake does not identify conan as command, even if it is +x and it is in the path + conan_parse_arguments(${ARGV}) + + if(CONAN_CMAKE_MULTI) + set(ARGUMENTS_GENERATORS ${ARGUMENTS_GENERATORS} cmake_multi) + else() + set(ARGUMENTS_GENERATORS ${ARGUMENTS_GENERATORS} cmake) + endif() + + set(CONAN_BUILD_POLICY "") + foreach(ARG ${ARGUMENTS_BUILD}) + if(${ARG} STREQUAL "all") + set(CONAN_BUILD_POLICY ${CONAN_BUILD_POLICY} --build) + break() + else() + set(CONAN_BUILD_POLICY ${CONAN_BUILD_POLICY} --build=${ARG}) + endif() + endforeach() + if(ARGUMENTS_CONAN_COMMAND) + set(CONAN_CMD ${ARGUMENTS_CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + set(CONAN_OPTIONS "") + if(ARGUMENTS_CONANFILE) + if(IS_ABSOLUTE ${ARGUMENTS_CONANFILE}) + set(CONANFILE ${ARGUMENTS_CONANFILE}) + else() + set(CONANFILE ${CMAKE_CURRENT_SOURCE_DIR}/${ARGUMENTS_CONANFILE}) + endif() + else() + set(CONANFILE ".") + endif() + foreach(ARG ${ARGUMENTS_OPTIONS}) + set(CONAN_OPTIONS ${CONAN_OPTIONS} -o=${ARG}) + endforeach() + if(ARGUMENTS_UPDATE) + set(CONAN_INSTALL_UPDATE --update) + endif() + if(ARGUMENTS_NO_IMPORTS) + set(CONAN_INSTALL_NO_IMPORTS --no-imports) + endif() + set(CONAN_INSTALL_FOLDER "") + if(ARGUMENTS_INSTALL_FOLDER) + set(CONAN_INSTALL_FOLDER -if=${ARGUMENTS_INSTALL_FOLDER}) + endif() + set(CONAN_OUTPUT_FOLDER "") + if(ARGUMENTS_OUTPUT_FOLDER) + set(CONAN_OUTPUT_FOLDER -of=${ARGUMENTS_OUTPUT_FOLDER}) + endif() + foreach(ARG ${ARGUMENTS_GENERATORS}) + set(CONAN_GENERATORS ${CONAN_GENERATORS} -g=${ARG}) + endforeach() + foreach(ARG ${ARGUMENTS_ENV}) + set(CONAN_ENV_VARS ${CONAN_ENV_VARS} -e=${ARG}) + endforeach() + set(conan_args install ${CONANFILE} ${settings} ${CONAN_ENV_VARS} ${CONAN_GENERATORS} ${CONAN_BUILD_POLICY} ${CONAN_INSTALL_UPDATE} ${CONAN_INSTALL_NO_IMPORTS} ${CONAN_OPTIONS} ${CONAN_INSTALL_FOLDER} ${ARGUMENTS_INSTALL_ARGS}) + + string (REPLACE ";" " " _conan_args "${conan_args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_conan_args}") + + if(ARGUMENTS_OUTPUT_QUIET) + execute_process(COMMAND ${CONAN_CMD} ${conan_args} + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_output + ERROR_VARIABLE conan_output + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + else() + execute_process(COMMAND ${CONAN_CMD} ${conan_args} + RESULT_VARIABLE return_code + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + endif() + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan install failed='${return_code}'") + endif() + +endfunction() + +function(conan_cmake_install) + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + set(installOptions UPDATE NO_IMPORTS OUTPUT_QUIET ERROR_QUIET) + set(installOneValueArgs PATH_OR_REFERENCE REFERENCE REMOTE LOCKFILE LOCKFILE_OUT LOCKFILE_NODE_ID INSTALL_FOLDER OUTPUT_FOLDER) + set(installMultiValueArgs GENERATOR BUILD ENV ENV_HOST ENV_BUILD OPTIONS_HOST OPTIONS OPTIONS_BUILD PROFILE + PROFILE_HOST PROFILE_BUILD SETTINGS SETTINGS_HOST SETTINGS_BUILD) + cmake_parse_arguments(ARGS "${installOptions}" "${installOneValueArgs}" "${installMultiValueArgs}" ${ARGN}) + foreach(arg ${installOptions}) + if(ARGS_${arg}) + set(${arg} ${${arg}} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${installOneValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "REMOTE") + set(flag "--remote") + elseif("${arg}" STREQUAL "LOCKFILE") + set(flag "--lockfile") + elseif("${arg}" STREQUAL "LOCKFILE_OUT") + set(flag "--lockfile-out") + elseif("${arg}" STREQUAL "LOCKFILE_NODE_ID") + set(flag "--lockfile-node-id") + elseif("${arg}" STREQUAL "INSTALL_FOLDER") + set(flag "--install-folder") + elseif("${arg}" STREQUAL "OUTPUT_FOLDER") + set(flag "--output-folder") + endif() + set(${arg} ${${arg}} ${flag} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${installMultiValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "GENERATOR") + set(flag "--generator") + elseif("${arg}" STREQUAL "BUILD") + set(flag "--build") + elseif("${arg}" STREQUAL "ENV") + set(flag "--env") + elseif("${arg}" STREQUAL "ENV_HOST") + set(flag "--env:host") + elseif("${arg}" STREQUAL "ENV_BUILD") + set(flag "--env:build") + elseif("${arg}" STREQUAL "OPTIONS") + set(flag "--options") + elseif("${arg}" STREQUAL "OPTIONS_HOST") + set(flag "--options:host") + elseif("${arg}" STREQUAL "OPTIONS_BUILD") + set(flag "--options:build") + elseif("${arg}" STREQUAL "PROFILE") + set(flag "--profile") + elseif("${arg}" STREQUAL "PROFILE_HOST") + set(flag "--profile:host") + elseif("${arg}" STREQUAL "PROFILE_BUILD") + set(flag "--profile:build") + elseif("${arg}" STREQUAL "SETTINGS") + set(flag "--settings") + elseif("${arg}" STREQUAL "SETTINGS_HOST") + set(flag "--settings:host") + elseif("${arg}" STREQUAL "SETTINGS_BUILD") + set(flag "--settings:build") + endif() + list(LENGTH ARGS_${arg} numargs) + foreach(item ${ARGS_${arg}}) + if(${item} STREQUAL "all" AND ${arg} STREQUAL "BUILD") + set(${arg} "--build") + break() + endif() + set(${arg} ${${arg}} ${flag} ${item}) + endforeach() + endif() + endforeach() + if(DEFINED UPDATE) + set(UPDATE --update) + endif() + if(DEFINED NO_IMPORTS) + set(NO_IMPORTS --no-imports) + endif() + set(install_args install ${PATH_OR_REFERENCE} ${REFERENCE} ${UPDATE} ${NO_IMPORTS} ${REMOTE} ${LOCKFILE} ${LOCKFILE_OUT} ${LOCKFILE_NODE_ID} ${INSTALL_FOLDER} ${OUTPUT_FOLDER} + ${GENERATOR} ${BUILD} ${ENV} ${ENV_HOST} ${ENV_BUILD} ${OPTIONS} ${OPTIONS_HOST} ${OPTIONS_BUILD} + ${PROFILE} ${PROFILE_HOST} ${PROFILE_BUILD} ${SETTINGS} ${SETTINGS_HOST} ${SETTINGS_BUILD}) + + string(REPLACE ";" " " _install_args "${install_args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_install_args}") + + if(ARGS_OUTPUT_QUIET) + set(OUTPUT_OPT OUTPUT_QUIET) + endif() + if(ARGS_ERROR_QUIET) + set(ERROR_OPT ERROR_QUIET) + endif() + + execute_process(COMMAND ${CONAN_CMD} ${install_args} + RESULT_VARIABLE return_code + ${OUTPUT_OPT} + ${ERROR_OPT} + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(NOT "${return_code}" STREQUAL "0") + if (ARGS_ERROR_QUIET) + message(WARNING "Conan install failed='${return_code}'") + else() + message(FATAL_ERROR "Conan install failed='${return_code}'") + endif() + endif() + +endfunction() + +function(conan_cmake_lock_create) + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + set(lockCreateOptions UPDATE BASE OUTPUT_QUIET ERROR_QUIET) + set(lockCreateOneValueArgs PATH REFERENCE REMOTE LOCKFILE LOCKFILE_OUT) + set(lockCreateMultiValueArgs BUILD ENV ENV_HOST ENV_BUILD OPTIONS_HOST OPTIONS OPTIONS_BUILD PROFILE + PROFILE_HOST PROFILE_BUILD SETTINGS SETTINGS_HOST SETTINGS_BUILD) + cmake_parse_arguments(ARGS "${lockCreateOptions}" "${lockCreateOneValueArgs}" "${lockCreateMultiValueArgs}" ${ARGN}) + foreach(arg ${lockCreateOptions}) + if(ARGS_${arg}) + set(${arg} ${${arg}} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${lockCreateOneValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "REMOTE") + set(flag "--remote") + elseif("${arg}" STREQUAL "LOCKFILE") + set(flag "--lockfile") + elseif("${arg}" STREQUAL "LOCKFILE_OUT") + set(flag "--lockfile-out") + endif() + set(${arg} ${${arg}} ${flag} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${lockCreateMultiValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "BUILD") + set(flag "--build") + elseif("${arg}" STREQUAL "ENV") + set(flag "--env") + elseif("${arg}" STREQUAL "ENV_HOST") + set(flag "--env:host") + elseif("${arg}" STREQUAL "ENV_BUILD") + set(flag "--env:build") + elseif("${arg}" STREQUAL "OPTIONS") + set(flag "--options") + elseif("${arg}" STREQUAL "OPTIONS_HOST") + set(flag "--options:host") + elseif("${arg}" STREQUAL "OPTIONS_BUILD") + set(flag "--options:build") + elseif("${arg}" STREQUAL "PROFILE") + set(flag "--profile") + elseif("${arg}" STREQUAL "PROFILE_HOST") + set(flag "--profile:host") + elseif("${arg}" STREQUAL "PROFILE_BUILD") + set(flag "--profile:build") + elseif("${arg}" STREQUAL "SETTINGS") + set(flag "--settings") + elseif("${arg}" STREQUAL "SETTINGS_HOST") + set(flag "--settings:host") + elseif("${arg}" STREQUAL "SETTINGS_BUILD") + set(flag "--settings:build") + endif() + list(LENGTH ARGS_${arg} numargs) + foreach(item ${ARGS_${arg}}) + if(${item} STREQUAL "all" AND ${arg} STREQUAL "BUILD") + set(${arg} "--build") + break() + endif() + set(${arg} ${${arg}} ${flag} ${item}) + endforeach() + endif() + endforeach() + if(DEFINED UPDATE) + set(UPDATE --update) + endif() + if(DEFINED BASE) + set(BASE --base) + endif() + set(lock_create_Args lock create ${PATH} ${REFERENCE} ${UPDATE} ${BASE} ${REMOTE} ${LOCKFILE} ${LOCKFILE_OUT} ${LOCKFILE_NODE_ID} ${INSTALL_FOLDER} + ${GENERATOR} ${BUILD} ${ENV} ${ENV_HOST} ${ENV_BUILD} ${OPTIONS} ${OPTIONS_HOST} ${OPTIONS_BUILD} + ${PROFILE} ${PROFILE_HOST} ${PROFILE_BUILD} ${SETTINGS} ${SETTINGS_HOST} ${SETTINGS_BUILD}) + + string(REPLACE ";" " " _lock_create_Args "${lock_create_Args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_lock_create_Args}") + + if(ARGS_OUTPUT_QUIET) + set(OUTPUT_OPT OUTPUT_QUIET) + endif() + if(ARGS_ERROR_QUIET) + set(ERROR_OPT ERROR_QUIET) + endif() + + execute_process(COMMAND ${CONAN_CMD} ${lock_create_Args} + RESULT_VARIABLE return_code + ${OUTPUT_OPT} + ${ERROR_OPT} + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(NOT "${return_code}" STREQUAL "0") + if (ARGS_ERROR_QUIET) + message(WARNING "Conan lock create failed='${return_code}'") + else() + message(FATAL_ERROR "Conan lock create failed='${return_code}'") + endif() + endif() +endfunction() + +function(conan_cmake_setup_conanfile) + conan_parse_arguments(${ARGV}) + if(ARGUMENTS_CONANFILE) + get_filename_component(_CONANFILE_NAME ${ARGUMENTS_CONANFILE} NAME) + # configure_file will make sure cmake re-runs when conanfile is updated + configure_file(${ARGUMENTS_CONANFILE} ${CMAKE_CURRENT_BINARY_DIR}/${_CONANFILE_NAME}.junk COPYONLY) + file(REMOVE ${CMAKE_CURRENT_BINARY_DIR}/${_CONANFILE_NAME}.junk) + else() + conan_cmake_generate_conanfile(ON ${ARGV}) + endif() +endfunction() + +function(conan_cmake_configure) + conan_cmake_generate_conanfile(OFF ${ARGV}) +endfunction() + +# Generate, writing in disk a conanfile.txt with the requires, options, and imports +# specified as arguments +# This will be considered as temporary file, generated in CMAKE_CURRENT_BINARY_DIR) +function(conan_cmake_generate_conanfile DEFAULT_GENERATOR) + + conan_parse_arguments(${ARGV}) + + set(_FN "${CMAKE_CURRENT_BINARY_DIR}/conanfile.txt") + file(WRITE ${_FN} "") + + if(DEFINED ARGUMENTS_REQUIRES) + file(APPEND ${_FN} "[requires]\n") + foreach(REQUIRE ${ARGUMENTS_REQUIRES}) + file(APPEND ${_FN} ${REQUIRE} "\n") + endforeach() + endif() + + if (DEFAULT_GENERATOR OR DEFINED ARGUMENTS_GENERATORS) + file(APPEND ${_FN} "[generators]\n") + if (DEFAULT_GENERATOR) + file(APPEND ${_FN} "cmake\n") + endif() + if (DEFINED ARGUMENTS_GENERATORS) + foreach(GENERATOR ${ARGUMENTS_GENERATORS}) + file(APPEND ${_FN} ${GENERATOR} "\n") + endforeach() + endif() + endif() + + if(DEFINED ARGUMENTS_BUILD_REQUIRES) + file(APPEND ${_FN} "[build_requires]\n") + foreach(BUILD_REQUIRE ${ARGUMENTS_BUILD_REQUIRES}) + file(APPEND ${_FN} ${BUILD_REQUIRE} "\n") + endforeach() + endif() + + if(DEFINED ARGUMENTS_IMPORTS) + file(APPEND ${_FN} "[imports]\n") + foreach(IMPORTS ${ARGUMENTS_IMPORTS}) + file(APPEND ${_FN} ${IMPORTS} "\n") + endforeach() + endif() + + if(DEFINED ARGUMENTS_OPTIONS) + file(APPEND ${_FN} "[options]\n") + foreach(OPTION ${ARGUMENTS_OPTIONS}) + file(APPEND ${_FN} ${OPTION} "\n") + endforeach() + endif() + +endfunction() + + +macro(conan_load_buildinfo) + if(CONAN_CMAKE_MULTI) + set(_CONANBUILDINFO conanbuildinfo_multi.cmake) + else() + set(_CONANBUILDINFO conanbuildinfo.cmake) + endif() + if(ARGUMENTS_INSTALL_FOLDER) + set(_CONANBUILDINFOFOLDER ${ARGUMENTS_INSTALL_FOLDER}) + else() + set(_CONANBUILDINFOFOLDER ${CMAKE_CURRENT_BINARY_DIR}) + endif() + # Checks for the existence of conanbuildinfo.cmake, and loads it + # important that it is macro, so variables defined at parent scope + if(EXISTS "${_CONANBUILDINFOFOLDER}/${_CONANBUILDINFO}") + message(STATUS "Conan: Loading ${_CONANBUILDINFO}") + include(${_CONANBUILDINFOFOLDER}/${_CONANBUILDINFO}) + else() + message(FATAL_ERROR "${_CONANBUILDINFO} doesn't exist in ${CMAKE_CURRENT_BINARY_DIR}") + endif() +endmacro() + + +macro(conan_cmake_run) + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_CONFIGURATION_TYPES AND NOT CMAKE_CONFIGURATION_TYPES) + message(WARNING "CONFIGURATION_TYPES should only be specified for multi-configuration generators") + elseif(ARGUMENTS_CONFIGURATION_TYPES AND ARGUMENTS_BUILD_TYPE) + message(WARNING "CONFIGURATION_TYPES and BUILD_TYPE arguments should not be defined at the same time.") + endif() + + if(CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE AND NOT CONAN_EXPORTED + AND NOT ARGUMENTS_BUILD_TYPE) + set(CONAN_CMAKE_MULTI ON) + if (NOT ARGUMENTS_CONFIGURATION_TYPES) + set(ARGUMENTS_CONFIGURATION_TYPES "Release;Debug") + endif() + message(STATUS "Conan: Using cmake-multi generator") + else() + set(CONAN_CMAKE_MULTI OFF) + endif() + + if(NOT CONAN_EXPORTED) + conan_cmake_setup_conanfile(${ARGV}) + if(CONAN_CMAKE_MULTI) + foreach(CMAKE_BUILD_TYPE ${ARGUMENTS_CONFIGURATION_TYPES}) + set(ENV{CONAN_IMPORT_PATH} ${CMAKE_BUILD_TYPE}) + conan_cmake_settings(settings ${ARGV}) + old_conan_cmake_install(SETTINGS ${settings} ${ARGV}) + endforeach() + set(CMAKE_BUILD_TYPE) + else() + conan_cmake_settings(settings ${ARGV}) + old_conan_cmake_install(SETTINGS ${settings} ${ARGV}) + endif() + endif() + + if (NOT ARGUMENTS_NO_LOAD) + conan_load_buildinfo() + endif() + + if(ARGUMENTS_BASIC_SETUP) + foreach(_option CMAKE_TARGETS KEEP_RPATHS NO_OUTPUT_DIRS SKIP_STD) + if(ARGUMENTS_${_option}) + if(${_option} STREQUAL "CMAKE_TARGETS") + list(APPEND _setup_options "TARGETS") + else() + list(APPEND _setup_options ${_option}) + endif() + endif() + endforeach() + conan_basic_setup(${_setup_options}) + endif() +endmacro() + +macro(conan_check) + # Checks conan availability in PATH + # Arguments REQUIRED, DETECT_QUIET and VERSION are optional + # Example usage: + # conan_check(VERSION 1.0.0 REQUIRED) + set(options REQUIRED DETECT_QUIET) + set(oneValueArgs VERSION) + cmake_parse_arguments(CONAN "${options}" "${oneValueArgs}" "" ${ARGN}) + if(NOT CONAN_DETECT_QUIET) + message(STATUS "Conan: checking conan executable") + endif() + + find_program(CONAN_CMD conan) + if(NOT CONAN_CMD AND CONAN_REQUIRED) + message(FATAL_ERROR "Conan executable not found! Please install conan.") + endif() + if(NOT CONAN_DETECT_QUIET) + message(STATUS "Conan: Found program ${CONAN_CMD}") + endif() + execute_process(COMMAND ${CONAN_CMD} --version + RESULT_VARIABLE return_code + OUTPUT_VARIABLE CONAN_VERSION_OUTPUT + ERROR_VARIABLE CONAN_VERSION_OUTPUT) + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan --version failed='${return_code}'") + endif() + + if(NOT CONAN_DETECT_QUIET) + string(STRIP "${CONAN_VERSION_OUTPUT}" _CONAN_VERSION_OUTPUT) + message(STATUS "Conan: Version found ${_CONAN_VERSION_OUTPUT}") + endif() + + if(DEFINED CONAN_VERSION) + string(REGEX MATCH ".*Conan version ([0-9]+\\.[0-9]+\\.[0-9]+)" FOO + "${CONAN_VERSION_OUTPUT}") + if(${CMAKE_MATCH_1} VERSION_LESS ${CONAN_VERSION}) + message(FATAL_ERROR "Conan outdated. Installed: ${CMAKE_MATCH_1}, \ + required: ${CONAN_VERSION}. Consider updating via 'pip \ + install conan==${CONAN_VERSION}'.") + endif() + endif() +endmacro() + +function(conan_add_remote) + # Adds a remote + # Arguments URL and NAME are required, INDEX, COMMAND and VERIFY_SSL are optional + # Example usage: + # conan_add_remote(NAME bincrafters INDEX 1 + # URL https://api.bintray.com/conan/bincrafters/public-conan + # VERIFY_SSL True) + set(oneValueArgs URL NAME INDEX COMMAND VERIFY_SSL) + cmake_parse_arguments(CONAN "" "${oneValueArgs}" "" ${ARGN}) + + if(DEFINED CONAN_INDEX) + set(CONAN_INDEX_ARG "-i ${CONAN_INDEX}") + endif() + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED DETECT_QUIET) + endif() + set(CONAN_VERIFY_SSL_ARG "True") + if(DEFINED CONAN_VERIFY_SSL) + set(CONAN_VERIFY_SSL_ARG ${CONAN_VERIFY_SSL}) + endif() + message(STATUS "Conan: Adding ${CONAN_NAME} remote repository (${CONAN_URL}) verify ssl (${CONAN_VERIFY_SSL_ARG})") + execute_process(COMMAND ${CONAN_CMD} remote add ${CONAN_NAME} ${CONAN_INDEX_ARG} -f ${CONAN_URL} ${CONAN_VERIFY_SSL_ARG} + RESULT_VARIABLE return_code) + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan remote failed='${return_code}'") + endif() +endfunction() + +macro(conan_config_install) + # install a full configuration from a local or remote zip file + # Argument ITEM is required, arguments TYPE, SOURCE, TARGET and VERIFY_SSL are optional + # Example usage: + # conan_config_install(ITEM https://github.com/conan-io/cmake-conan.git + # TYPE git SOURCE source-folder TARGET target-folder VERIFY_SSL false) + set(oneValueArgs ITEM TYPE SOURCE TARGET VERIFY_SSL) + set(multiValueArgs ARGS) + cmake_parse_arguments(CONAN "" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + if(DEFINED CONAN_VERIFY_SSL) + set(CONAN_VERIFY_SSL_ARG "--verify-ssl=${CONAN_VERIFY_SSL}") + endif() + + if(DEFINED CONAN_TYPE) + set(CONAN_TYPE_ARG "--type=${CONAN_TYPE}") + endif() + + if(DEFINED CONAN_ARGS) + set(CONAN_ARGS_ARGS "--args=\"${CONAN_ARGS}\"") + endif() + + if(DEFINED CONAN_SOURCE) + set(CONAN_SOURCE_ARGS "--source-folder=${CONAN_SOURCE}") + endif() + + if(DEFINED CONAN_TARGET) + set(CONAN_TARGET_ARGS "--target-folder=${CONAN_TARGET}") + endif() + + set (CONAN_CONFIG_INSTALL_ARGS ${CONAN_VERIFY_SSL_ARG} + ${CONAN_TYPE_ARG} + ${CONAN_ARGS_ARGS} + ${CONAN_SOURCE_ARGS} + ${CONAN_TARGET_ARGS}) + + message(STATUS "Conan: Installing config from ${CONAN_ITEM}") + execute_process(COMMAND ${CONAN_CMD} config install ${CONAN_ITEM} ${CONAN_CONFIG_INSTALL_ARGS} + RESULT_VARIABLE return_code) + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan config failed='${return_code}'") + endif() +endmacro() diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan_provider.cmake b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan_provider.cmake new file mode 100644 index 0000000..e5fa9ce --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan_provider.cmake @@ -0,0 +1,655 @@ +# https://github.com/conan-io/cmake-conan/blob/develop2/conan_provider.cmake +# commit: f6464d1e13ef7a47c569f5061f9607ea63339d39 +# +# The MIT License (MIT) +# +# Copyright (c) 2019 JFrog +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +set(CONAN_MINIMUM_VERSION 2.0.5) + + +function(detect_os OS OS_API_LEVEL OS_SDK OS_SUBSYSTEM OS_VERSION) + # it could be cross compilation + message(STATUS "CMake-Conan: cmake_system_name=${CMAKE_SYSTEM_NAME}") + if(CMAKE_SYSTEM_NAME AND NOT CMAKE_SYSTEM_NAME STREQUAL "Generic") + if(CMAKE_SYSTEM_NAME STREQUAL "Darwin") + set(${OS} Macos PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME STREQUAL "QNX") + set(${OS} Neutrino PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME STREQUAL "CYGWIN") + set(${OS} Windows PARENT_SCOPE) + set(${OS_SUBSYSTEM} cygwin PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME MATCHES "^MSYS") + set(${OS} Windows PARENT_SCOPE) + set(${OS_SUBSYSTEM} msys2 PARENT_SCOPE) + else() + set(${OS} ${CMAKE_SYSTEM_NAME} PARENT_SCOPE) + endif() + if(CMAKE_SYSTEM_NAME STREQUAL "Android") + if(DEFINED ANDROID_PLATFORM) + string(REGEX MATCH "[0-9]+" _OS_API_LEVEL ${ANDROID_PLATFORM}) + elseif(DEFINED CMAKE_SYSTEM_VERSION) + set(_OS_API_LEVEL ${CMAKE_SYSTEM_VERSION}) + endif() + message(STATUS "CMake-Conan: android api level=${_OS_API_LEVEL}") + set(${OS_API_LEVEL} ${_OS_API_LEVEL} PARENT_SCOPE) + endif() + if(CMAKE_SYSTEM_NAME MATCHES "Darwin|iOS|tvOS|watchOS") + # CMAKE_OSX_SYSROOT contains the full path to the SDK for MakeFile/Ninja + # generators, but just has the original input string for Xcode. + if(NOT IS_DIRECTORY ${CMAKE_OSX_SYSROOT}) + set(_OS_SDK ${CMAKE_OSX_SYSROOT}) + else() + if(CMAKE_OSX_SYSROOT MATCHES Simulator) + set(apple_platform_suffix simulator) + else() + set(apple_platform_suffix os) + endif() + if(CMAKE_OSX_SYSROOT MATCHES AppleTV) + set(_OS_SDK "appletv${apple_platform_suffix}") + elseif(CMAKE_OSX_SYSROOT MATCHES iPhone) + set(_OS_SDK "iphone${apple_platform_suffix}") + elseif(CMAKE_OSX_SYSROOT MATCHES Watch) + set(_OS_SDK "watch${apple_platform_suffix}") + endif() + endif() + if(DEFINED _OS_SDK) + message(STATUS "CMake-Conan: cmake_osx_sysroot=${CMAKE_OSX_SYSROOT}") + set(${OS_SDK} ${_OS_SDK} PARENT_SCOPE) + endif() + if(DEFINED CMAKE_OSX_DEPLOYMENT_TARGET) + message(STATUS "CMake-Conan: cmake_osx_deployment_target=${CMAKE_OSX_DEPLOYMENT_TARGET}") + set(${OS_VERSION} ${CMAKE_OSX_DEPLOYMENT_TARGET} PARENT_SCOPE) + endif() + endif() + endif() +endfunction() + + +function(detect_arch ARCH) + # CMAKE_OSX_ARCHITECTURES can contain multiple architectures, but Conan only supports one. + # Therefore this code only finds one. If the recipes support multiple architectures, the + # build will work. Otherwise, there will be a linker error for the missing architecture(s). + if(DEFINED CMAKE_OSX_ARCHITECTURES) + string(REPLACE " " ";" apple_arch_list "${CMAKE_OSX_ARCHITECTURES}") + list(LENGTH apple_arch_list apple_arch_count) + if(apple_arch_count GREATER 1) + message(WARNING "CMake-Conan: Multiple architectures detected, this will only work if Conan recipe(s) produce fat binaries.") + endif() + endif() + if(CMAKE_SYSTEM_NAME MATCHES "Darwin|iOS|tvOS|watchOS" AND NOT CMAKE_OSX_ARCHITECTURES STREQUAL "") + set(host_arch ${CMAKE_OSX_ARCHITECTURES}) + elseif(MSVC) + set(host_arch ${CMAKE_CXX_COMPILER_ARCHITECTURE_ID}) + else() + set(host_arch ${CMAKE_SYSTEM_PROCESSOR}) + endif() + if(host_arch MATCHES "aarch64|arm64|ARM64") + set(_ARCH armv8) + elseif(host_arch MATCHES "armv7|armv7-a|armv7l|ARMV7") + set(_ARCH armv7) + elseif(host_arch MATCHES armv7s) + set(_ARCH armv7s) + elseif(host_arch MATCHES "i686|i386|X86") + set(_ARCH x86) + elseif(host_arch MATCHES "AMD64|amd64|x86_64|x64") + set(_ARCH x86_64) + endif() + message(STATUS "CMake-Conan: cmake_system_processor=${_ARCH}") + set(${ARCH} ${_ARCH} PARENT_SCOPE) +endfunction() + + +function(detect_cxx_standard CXX_STANDARD) + set(${CXX_STANDARD} ${CMAKE_CXX_STANDARD} PARENT_SCOPE) + if(CMAKE_CXX_EXTENSIONS) + set(${CXX_STANDARD} "gnu${CMAKE_CXX_STANDARD}" PARENT_SCOPE) + endif() +endfunction() + + +macro(detect_gnu_libstdcxx) + # _CONAN_IS_GNU_LIBSTDCXX true if GNU libstdc++ + check_cxx_source_compiles(" + #include + #if !defined(__GLIBCXX__) && !defined(__GLIBCPP__) + static_assert(false); + #endif + int main(){}" _CONAN_IS_GNU_LIBSTDCXX) + + # _CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI true if C++11 ABI + check_cxx_source_compiles(" + #include + static_assert(sizeof(std::string) != sizeof(void*), \"using libstdc++\"); + int main () {}" _CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) + + set(_CONAN_GNU_LIBSTDCXX_SUFFIX "") + if(_CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) + set(_CONAN_GNU_LIBSTDCXX_SUFFIX "11") + endif() + unset (_CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) +endmacro() + + +macro(detect_libcxx) + # _CONAN_IS_LIBCXX true if LLVM libc++ + check_cxx_source_compiles(" + #include + #if !defined(_LIBCPP_VERSION) + static_assert(false); + #endif + int main(){}" _CONAN_IS_LIBCXX) +endmacro() + + +function(detect_lib_cxx LIB_CXX) + if(CMAKE_SYSTEM_NAME STREQUAL "Android") + message(STATUS "CMake-Conan: android_stl=${CMAKE_ANDROID_STL_TYPE}") + set(${LIB_CXX} ${CMAKE_ANDROID_STL_TYPE} PARENT_SCOPE) + return() + endif() + + include(CheckCXXSourceCompiles) + + if(CMAKE_CXX_COMPILER_ID MATCHES "GNU") + detect_gnu_libstdcxx() + set(${LIB_CXX} "libstdc++${_CONAN_GNU_LIBSTDCXX_SUFFIX}" PARENT_SCOPE) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang") + set(${LIB_CXX} "libc++" PARENT_SCOPE) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND NOT CMAKE_SYSTEM_NAME MATCHES "Windows") + # Check for libc++ + detect_libcxx() + if(_CONAN_IS_LIBCXX) + set(${LIB_CXX} "libc++" PARENT_SCOPE) + return() + endif() + + # Check for libstdc++ + detect_gnu_libstdcxx() + if(_CONAN_IS_GNU_LIBSTDCXX) + set(${LIB_CXX} "libstdc++${_CONAN_GNU_LIBSTDCXX_SUFFIX}" PARENT_SCOPE) + return() + endif() + + # TODO: it would be an error if we reach this point + elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") + # Do nothing - compiler.runtime and compiler.runtime_type + # should be handled separately: https://github.com/conan-io/cmake-conan/pull/516 + return() + else() + # TODO: unable to determine, ask user to provide a full profile file instead + endif() +endfunction() + + +function(detect_compiler COMPILER COMPILER_VERSION COMPILER_RUNTIME COMPILER_RUNTIME_TYPE) + if(DEFINED CMAKE_CXX_COMPILER_ID) + set(_COMPILER ${CMAKE_CXX_COMPILER_ID}) + set(_COMPILER_VERSION ${CMAKE_CXX_COMPILER_VERSION}) + else() + if(NOT DEFINED CMAKE_C_COMPILER_ID) + message(FATAL_ERROR "C or C++ compiler not defined") + endif() + set(_COMPILER ${CMAKE_C_COMPILER_ID}) + set(_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) + endif() + + message(STATUS "CMake-Conan: CMake compiler=${_COMPILER}") + message(STATUS "CMake-Conan: CMake compiler version=${_COMPILER_VERSION}") + + if(_COMPILER MATCHES MSVC) + set(_COMPILER "msvc") + string(SUBSTRING ${MSVC_VERSION} 0 3 _COMPILER_VERSION) + # Configure compiler.runtime and compiler.runtime_type settings for MSVC + if(CMAKE_MSVC_RUNTIME_LIBRARY) + set(_msvc_runtime_library ${CMAKE_MSVC_RUNTIME_LIBRARY}) + else() + set(_msvc_runtime_library MultiThreaded$<$:Debug>DLL) # default value documented by CMake + endif() + + set(_KNOWN_MSVC_RUNTIME_VALUES "") + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded MultiThreadedDLL) + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreadedDebug MultiThreadedDebugDLL) + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded$<$:Debug> MultiThreaded$<$:Debug>DLL) + + # only accept the 6 possible values, otherwise we don't don't know to map this + if(NOT _msvc_runtime_library IN_LIST _KNOWN_MSVC_RUNTIME_VALUES) + message(FATAL_ERROR "CMake-Conan: unable to map MSVC runtime: ${_msvc_runtime_library} to Conan settings") + endif() + + # Runtime is "dynamic" in all cases if it ends in DLL + if(_msvc_runtime_library MATCHES ".*DLL$") + set(_COMPILER_RUNTIME "dynamic") + else() + set(_COMPILER_RUNTIME "static") + endif() + message(STATUS "CMake-Conan: CMake compiler.runtime=${_COMPILER_RUNTIME}") + + # Only define compiler.runtime_type when explicitly requested + # If a generator expression is used, let Conan handle it conditional on build_type + if(NOT _msvc_runtime_library MATCHES ":Debug>") + if(_msvc_runtime_library MATCHES "Debug") + set(_COMPILER_RUNTIME_TYPE "Debug") + else() + set(_COMPILER_RUNTIME_TYPE "Release") + endif() + message(STATUS "CMake-Conan: CMake compiler.runtime_type=${_COMPILER_RUNTIME_TYPE}") + endif() + + unset(_KNOWN_MSVC_RUNTIME_VALUES) + + elseif(_COMPILER MATCHES AppleClang) + set(_COMPILER "apple-clang") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + elseif(_COMPILER MATCHES Clang) + set(_COMPILER "clang") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + elseif(_COMPILER MATCHES GNU) + set(_COMPILER "gcc") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + endif() + + message(STATUS "CMake-Conan: [settings] compiler=${_COMPILER}") + message(STATUS "CMake-Conan: [settings] compiler.version=${_COMPILER_VERSION}") + if (_COMPILER_RUNTIME) + message(STATUS "CMake-Conan: [settings] compiler.runtime=${_COMPILER_RUNTIME}") + endif() + if (_COMPILER_RUNTIME_TYPE) + message(STATUS "CMake-Conan: [settings] compiler.runtime_type=${_COMPILER_RUNTIME_TYPE}") + endif() + + set(${COMPILER} ${_COMPILER} PARENT_SCOPE) + set(${COMPILER_VERSION} ${_COMPILER_VERSION} PARENT_SCOPE) + set(${COMPILER_RUNTIME} ${_COMPILER_RUNTIME} PARENT_SCOPE) + set(${COMPILER_RUNTIME_TYPE} ${_COMPILER_RUNTIME_TYPE} PARENT_SCOPE) +endfunction() + + +function(detect_build_type BUILD_TYPE) + get_property(_MULTICONFIG_GENERATOR GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(NOT _MULTICONFIG_GENERATOR) + # Only set when we know we are in a single-configuration generator + # Note: we may want to fail early if `CMAKE_BUILD_TYPE` is not defined + set(${BUILD_TYPE} ${CMAKE_BUILD_TYPE} PARENT_SCOPE) + endif() +endfunction() + +macro(set_conan_compiler_if_appleclang lang command output_variable) + if(CMAKE_${lang}_COMPILER_ID STREQUAL "AppleClang") + execute_process(COMMAND xcrun --find ${command} + OUTPUT_VARIABLE _xcrun_out OUTPUT_STRIP_TRAILING_WHITESPACE) + cmake_path(GET _xcrun_out PARENT_PATH _xcrun_toolchain_path) + cmake_path(GET CMAKE_${lang}_COMPILER PARENT_PATH _compiler_parent_path) + if ("${_xcrun_toolchain_path}" STREQUAL "${_compiler_parent_path}") + set(${output_variable} "") + endif() + unset(_xcrun_out) + unset(_xcrun_toolchain_path) + unset(_compiler_parent_path) + endif() +endmacro() + + +macro(append_compiler_executables_configuration) + set(_conan_c_compiler "") + set(_conan_cpp_compiler "") + if(CMAKE_C_COMPILER) + set(_conan_c_compiler "\"c\":\"${CMAKE_C_COMPILER}\",") + set_conan_compiler_if_appleclang(C cc _conan_c_compiler) + else() + message(WARNING "CMake-Conan: The C compiler is not defined. " + "Please define CMAKE_C_COMPILER or enable the C language.") + endif() + if(CMAKE_CXX_COMPILER) + set(_conan_cpp_compiler "\"cpp\":\"${CMAKE_CXX_COMPILER}\"") + set_conan_compiler_if_appleclang(CXX c++ _conan_cpp_compiler) + else() + message(WARNING "CMake-Conan: The C++ compiler is not defined. " + "Please define CMAKE_CXX_COMPILER or enable the C++ language.") + endif() + + if(NOT "x${_conan_c_compiler}${_conan_cpp_compiler}" STREQUAL "x") + string(APPEND PROFILE "tools.build:compiler_executables={${_conan_c_compiler}${_conan_cpp_compiler}}\n") + endif() + unset(_conan_c_compiler) + unset(_conan_cpp_compiler) +endmacro() + + +function(detect_host_profile output_file) + detect_os(MYOS MYOS_API_LEVEL MYOS_SDK MYOS_SUBSYSTEM MYOS_VERSION) + detect_arch(MYARCH) + detect_compiler(MYCOMPILER MYCOMPILER_VERSION MYCOMPILER_RUNTIME MYCOMPILER_RUNTIME_TYPE) + detect_cxx_standard(MYCXX_STANDARD) + detect_lib_cxx(MYLIB_CXX) + detect_build_type(MYBUILD_TYPE) + + set(PROFILE "") + string(APPEND PROFILE "[settings]\n") + if(MYARCH) + string(APPEND PROFILE arch=${MYARCH} "\n") + endif() + if(MYOS) + string(APPEND PROFILE os=${MYOS} "\n") + endif() + if(MYOS_API_LEVEL) + string(APPEND PROFILE os.api_level=${MYOS_API_LEVEL} "\n") + endif() + if(MYOS_VERSION) + string(APPEND PROFILE os.version=${MYOS_VERSION} "\n") + endif() + if(MYOS_SDK) + string(APPEND PROFILE os.sdk=${MYOS_SDK} "\n") + endif() + if(MYOS_SUBSYSTEM) + string(APPEND PROFILE os.subsystem=${MYOS_SUBSYSTEM} "\n") + endif() + if(MYCOMPILER) + string(APPEND PROFILE compiler=${MYCOMPILER} "\n") + endif() + if(MYCOMPILER_VERSION) + string(APPEND PROFILE compiler.version=${MYCOMPILER_VERSION} "\n") + endif() + if(MYCOMPILER_RUNTIME) + string(APPEND PROFILE compiler.runtime=${MYCOMPILER_RUNTIME} "\n") + endif() + if(MYCOMPILER_RUNTIME_TYPE) + string(APPEND PROFILE compiler.runtime_type=${MYCOMPILER_RUNTIME_TYPE} "\n") + endif() + if(MYCXX_STANDARD) + string(APPEND PROFILE compiler.cppstd=${MYCXX_STANDARD} "\n") + endif() + if(MYLIB_CXX) + string(APPEND PROFILE compiler.libcxx=${MYLIB_CXX} "\n") + endif() + if(MYBUILD_TYPE) + string(APPEND PROFILE "build_type=${MYBUILD_TYPE}\n") + endif() + + if(NOT DEFINED output_file) + set(_FN "${CMAKE_BINARY_DIR}/profile") + else() + set(_FN ${output_file}) + endif() + + string(APPEND PROFILE "[conf]\n") + string(APPEND PROFILE "tools.cmake.cmaketoolchain:generator=${CMAKE_GENERATOR}\n") + + # propagate compilers via profile + append_compiler_executables_configuration() + + if(MYOS STREQUAL "Android") + string(APPEND PROFILE "tools.android:ndk_path=${CMAKE_ANDROID_NDK}\n") + endif() + + message(STATUS "CMake-Conan: Creating profile ${_FN}") + file(WRITE ${_FN} ${PROFILE}) + message(STATUS "CMake-Conan: Profile: \n${PROFILE}") +endfunction() + + +function(conan_profile_detect_default) + message(STATUS "CMake-Conan: Checking if a default profile exists") + execute_process(COMMAND ${CONAN_COMMAND} profile path default + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + ECHO_OUTPUT_VARIABLE + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + if(NOT ${return_code} EQUAL "0") + message(STATUS "CMake-Conan: The default profile doesn't exist, detecting it.") + execute_process(COMMAND ${CONAN_COMMAND} profile detect + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + ECHO_OUTPUT_VARIABLE + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + endif() +endfunction() + + +function(conan_install) + cmake_parse_arguments(ARGS CONAN_ARGS ${ARGN}) + set(CONAN_OUTPUT_FOLDER ${CMAKE_BINARY_DIR}/conan) + # Invoke "conan install" with the provided arguments + set(CONAN_ARGS ${CONAN_ARGS} -of=${CONAN_OUTPUT_FOLDER}) + message(STATUS "CMake-Conan: conan install ${CMAKE_SOURCE_DIR} ${CONAN_ARGS} ${ARGN}") + + + # In case there was not a valid cmake executable in the PATH, we inject the + # same we used to invoke the provider to the PATH + if(DEFINED PATH_TO_CMAKE_BIN) + set(_OLD_PATH $ENV{PATH}) + set(ENV{PATH} "$ENV{PATH}:${PATH_TO_CMAKE_BIN}") + endif() + + execute_process(COMMAND ${CONAN_COMMAND} install ${CMAKE_SOURCE_DIR} ${CONAN_ARGS} ${ARGN} --format=json + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(DEFINED PATH_TO_CMAKE_BIN) + set(ENV{PATH} "${_OLD_PATH}") + endif() + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan install failed='${return_code}'") + else() + # the files are generated in a folder that depends on the layout used, if + # one is specified, but we don't know a priori where this is. + # TODO: this can be made more robust if Conan can provide this in the json output + string(JSON CONAN_GENERATORS_FOLDER GET ${conan_stdout} graph nodes 0 generators_folder) + cmake_path(CONVERT ${CONAN_GENERATORS_FOLDER} TO_CMAKE_PATH_LIST CONAN_GENERATORS_FOLDER) + # message("conan stdout: ${conan_stdout}") + message(STATUS "CMake-Conan: CONAN_GENERATORS_FOLDER=${CONAN_GENERATORS_FOLDER}") + set_property(GLOBAL PROPERTY CONAN_GENERATORS_FOLDER "${CONAN_GENERATORS_FOLDER}") + # reconfigure on conanfile changes + string(JSON CONANFILE GET ${conan_stdout} graph nodes 0 label) + message(STATUS "CMake-Conan: CONANFILE=${CMAKE_SOURCE_DIR}/${CONANFILE}") + set_property(DIRECTORY ${CMAKE_SOURCE_DIR} APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${CMAKE_SOURCE_DIR}/${CONANFILE}") + # success + set_property(GLOBAL PROPERTY CONAN_INSTALL_SUCCESS TRUE) + endif() +endfunction() + + +function(conan_get_version conan_command conan_current_version) + execute_process( + COMMAND ${conan_command} --version + OUTPUT_VARIABLE conan_output + RESULT_VARIABLE conan_result + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(conan_result) + message(FATAL_ERROR "CMake-Conan: Error when trying to run Conan") + endif() + + string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" conan_version ${conan_output}) + set(${conan_current_version} ${conan_version} PARENT_SCOPE) +endfunction() + + +function(conan_version_check) + set(options ) + set(oneValueArgs MINIMUM CURRENT) + set(multiValueArgs ) + cmake_parse_arguments(CONAN_VERSION_CHECK + "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + + if(NOT CONAN_VERSION_CHECK_MINIMUM) + message(FATAL_ERROR "CMake-Conan: Required parameter MINIMUM not set!") + endif() + if(NOT CONAN_VERSION_CHECK_CURRENT) + message(FATAL_ERROR "CMake-Conan: Required parameter CURRENT not set!") + endif() + + if(CONAN_VERSION_CHECK_CURRENT VERSION_LESS CONAN_VERSION_CHECK_MINIMUM) + message(FATAL_ERROR "CMake-Conan: Conan version must be ${CONAN_VERSION_CHECK_MINIMUM} or later") + endif() +endfunction() + + +macro(construct_profile_argument argument_variable profile_list) + set(${argument_variable} "") + if("${profile_list}" STREQUAL "CONAN_HOST_PROFILE") + set(_arg_flag "--profile:host=") + elseif("${profile_list}" STREQUAL "CONAN_BUILD_PROFILE") + set(_arg_flag "--profile:build=") + endif() + + set(_profile_list "${${profile_list}}") + list(TRANSFORM _profile_list REPLACE "auto-cmake" "${CMAKE_BINARY_DIR}/conan_host_profile") + list(TRANSFORM _profile_list PREPEND ${_arg_flag}) + set(${argument_variable} ${_profile_list}) + + unset(_arg_flag) + unset(_profile_list) +endmacro() + + +macro(conan_provide_dependency method package_name) + set_property(GLOBAL PROPERTY CONAN_PROVIDE_DEPENDENCY_INVOKED TRUE) + get_property(_conan_install_success GLOBAL PROPERTY CONAN_INSTALL_SUCCESS) + if(NOT _conan_install_success) + find_program(CONAN_COMMAND "conan" REQUIRED) + conan_get_version(${CONAN_COMMAND} CONAN_CURRENT_VERSION) + conan_version_check(MINIMUM ${CONAN_MINIMUM_VERSION} CURRENT ${CONAN_CURRENT_VERSION}) + message(STATUS "CMake-Conan: first find_package() found. Installing dependencies with Conan") + if("default" IN_LIST CONAN_HOST_PROFILE OR "default" IN_LIST CONAN_BUILD_PROFILE) + conan_profile_detect_default() + endif() + if("auto-cmake" IN_LIST CONAN_HOST_PROFILE) + detect_host_profile(${CMAKE_BINARY_DIR}/conan_host_profile) + endif() + construct_profile_argument(_host_profile_flags CONAN_HOST_PROFILE) + construct_profile_argument(_build_profile_flags CONAN_BUILD_PROFILE) + if(EXISTS "${CMAKE_SOURCE_DIR}/conanfile.py") + file(READ "${CMAKE_SOURCE_DIR}/conanfile.py" outfile) + if(NOT "${outfile}" MATCHES ".*CMakeDeps.*") + message(WARNING "Cmake-conan: CMakeDeps generator was not defined in the conanfile") + endif() + set(generator "") + elseif (EXISTS "${CMAKE_SOURCE_DIR}/conanfile.txt") + file(READ "${CMAKE_SOURCE_DIR}/conanfile.txt" outfile) + if(NOT "${outfile}" MATCHES ".*CMakeDeps.*") + message(WARNING "Cmake-conan: CMakeDeps generator was not defined in the conanfile. " + "Please define the generator as it will be mandatory in the future") + endif() + set(generator "-g;CMakeDeps") + endif() + get_property(_multiconfig_generator GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(NOT _multiconfig_generator) + message(STATUS "CMake-Conan: Installing single configuration ${CMAKE_BUILD_TYPE}") + conan_install(${_host_profile_flags} ${_build_profile_flags} ${CONAN_INSTALL_ARGS} ${generator}) + else() + message(STATUS "CMake-Conan: Installing both Debug and Release") + conan_install(${_host_profile_flags} ${_build_profile_flags} -s build_type=Release ${CONAN_INSTALL_ARGS} ${generator}) + conan_install(${_host_profile_flags} ${_build_profile_flags} -s build_type=Debug ${CONAN_INSTALL_ARGS} ${generator}) + endif() + unset(_host_profile_flags) + unset(_build_profile_flags) + unset(_multiconfig_generator) + unset(_conan_install_success) + else() + message(STATUS "CMake-Conan: find_package(${ARGV1}) found, 'conan install' already ran") + unset(_conan_install_success) + endif() + + get_property(_conan_generators_folder GLOBAL PROPERTY CONAN_GENERATORS_FOLDER) + + # Ensure that we consider Conan-provided packages ahead of any other, + # irrespective of other settings that modify the search order or search paths + # This follows the guidelines from the find_package documentation + # (https://cmake.org/cmake/help/latest/command/find_package.html): + # find_package ( PATHS paths... NO_DEFAULT_PATH) + # find_package () + + # Filter out `REQUIRED` from the argument list, as the first call may fail + set(_find_args_${package_name} "${ARGN}") + list(REMOVE_ITEM _find_args_${package_name} "REQUIRED") + if(NOT "MODULE" IN_LIST _find_args_${package_name}) + find_package(${package_name} ${_find_args_${package_name}} BYPASS_PROVIDER PATHS "${_conan_generators_folder}" NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + unset(_find_args_${package_name}) + endif() + + # Invoke find_package a second time - if the first call succeeded, + # this will simply reuse the result. If not, fall back to CMake default search + # behaviour, also allowing modules to be searched. + if(NOT ${package_name}_FOUND) + list(FIND CMAKE_MODULE_PATH "${_conan_generators_folder}" _index) + if(_index EQUAL -1) + list(PREPEND CMAKE_MODULE_PATH "${_conan_generators_folder}") + endif() + unset(_index) + find_package(${package_name} ${ARGN} BYPASS_PROVIDER) + list(REMOVE_ITEM CMAKE_MODULE_PATH "${_conan_generators_folder}") + endif() +endmacro() + +#[=[ not needed by Qt Creator, and if not commented it would break the auto-setup feature + +cmake_language( + SET_DEPENDENCY_PROVIDER conan_provide_dependency + SUPPORTED_METHODS FIND_PACKAGE +) + + +macro(conan_provide_dependency_check) + set(_CONAN_PROVIDE_DEPENDENCY_INVOKED FALSE) + get_property(_CONAN_PROVIDE_DEPENDENCY_INVOKED GLOBAL PROPERTY CONAN_PROVIDE_DEPENDENCY_INVOKED) + if(NOT _CONAN_PROVIDE_DEPENDENCY_INVOKED) + message(WARNING "Conan is correctly configured as dependency provider, " + "but Conan has not been invoked. Please add at least one " + "call to `find_package()`.") + if(DEFINED CONAN_COMMAND) + # supress warning in case `CONAN_COMMAND` was specified but unused. + set(_CONAN_COMMAND ${CONAN_COMMAND}) + unset(_CONAN_COMMAND) + endif() + endif() + unset(_CONAN_PROVIDE_DEPENDENCY_INVOKED) +endmacro() + + +# Add a deferred call at the end of processing the top-level directory +# to check if the dependency provider was invoked at all. +cmake_language(DEFER DIRECTORY "${CMAKE_SOURCE_DIR}" CALL conan_provide_dependency_check) + +]=] + +# Configurable variables for Conan profiles +set(CONAN_HOST_PROFILE "default;auto-cmake" CACHE STRING "Conan host profile") +set(CONAN_BUILD_PROFILE "default" CACHE STRING "Conan build profile") +set(CONAN_INSTALL_ARGS "--build=missing" CACHE STRING "Command line arguments for conan install") + +find_program(_cmake_program NAMES cmake NO_PACKAGE_ROOT_PATH NO_CMAKE_PATH NO_CMAKE_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH NO_CMAKE_FIND_ROOT_PATH) +if(NOT _cmake_program) + get_filename_component(PATH_TO_CMAKE_BIN "${CMAKE_COMMAND}" DIRECTORY) + set(PATH_TO_CMAKE_BIN "${PATH_TO_CMAKE_BIN}" CACHE INTERNAL "Path where the CMake executable is") +endif() + diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.188AC94D2D5F07DB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.188AC94D2D5F07DB.idx new file mode 100644 index 0000000..7a019eb Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.188AC94D2D5F07DB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QDir.949CFDFE2CE8085C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QDir.949CFDFE2CE8085C.idx new file mode 100644 index 0000000..e3f3e7f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QDir.949CFDFE2CE8085C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMainWindow.CB736650B8400980.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMainWindow.CB736650B8400980.idx new file mode 100644 index 0000000..ecb15d3 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMainWindow.CB736650B8400980.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPluginLoader.4B14155B7CABCAF2.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPluginLoader.4B14155B7CABCAF2.idx new file mode 100644 index 0000000..4490399 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QPluginLoader.4B14155B7CABCAF2.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QString.5EB4D1905D9A4EB8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QString.5EB4D1905D9A4EB8.idx new file mode 100644 index 0000000..60b9129 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QString.5EB4D1905D9A4EB8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtPlugin.51BABBE0A7245B43.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtPlugin.51BABBE0A7245B43.idx new file mode 100644 index 0000000..4f91b6a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtPlugin.51BABBE0A7245B43.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___gnuc_va_list.h.E3B4DE1A775D738C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___gnuc_va_list.h.E3B4DE1A775D738C.idx new file mode 100644 index 0000000..035cf9f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___gnuc_va_list.h.E3B4DE1A775D738C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___va_copy.h.57FB91DB25BE2DF6.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___va_copy.h.57FB91DB25BE2DF6.idx new file mode 100644 index 0000000..ab03782 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___va_copy.h.57FB91DB25BE2DF6.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_arg.h.EE34CD6927073710.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_arg.h.EE34CD6927073710.idx new file mode 100644 index 0000000..ad0d3b0 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_arg.h.EE34CD6927073710.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_copy.h.43CCCEA63074B63C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_copy.h.43CCCEA63074B63C.idx new file mode 100644 index 0000000..de98bbb Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_copy.h.43CCCEA63074B63C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_list.h.AE9FAD9DCB79CCE5.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_list.h.AE9FAD9DCB79CCE5.idx new file mode 100644 index 0000000..2b90568 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_list.h.AE9FAD9DCB79CCE5.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.6EDE18E563042F87.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.6EDE18E563042F87.idx new file mode 100644 index 0000000..98ab364 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.6EDE18E563042F87.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_null.h.C4BC2DA60FC605B2.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_null.h.C4BC2DA60FC605B2.idx new file mode 100644 index 0000000..f93c79d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_null.h.C4BC2DA60FC605B2.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_nullptr_t.h.8F21E9DFABF6CEF0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_nullptr_t.h.8F21E9DFABF6CEF0.idx new file mode 100644 index 0000000..89c9d56 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_nullptr_t.h.8F21E9DFABF6CEF0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_offsetof.h.C195D2857CD0D6CE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_offsetof.h.C195D2857CD0D6CE.idx new file mode 100644 index 0000000..4aff6fd Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_offsetof.h.C195D2857CD0D6CE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_ptrdiff_t.h.999D87F80CBFE81E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_ptrdiff_t.h.999D87F80CBFE81E.idx new file mode 100644 index 0000000..3472ae0 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_ptrdiff_t.h.999D87F80CBFE81E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_size_t.h.44AC726005E5DB49.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_size_t.h.44AC726005E5DB49.idx new file mode 100644 index 0000000..a4bdb20 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_size_t.h.44AC726005E5DB49.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wchar_t.h.CC163415C6FEADEA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wchar_t.h.CC163415C6FEADEA.idx new file mode 100644 index 0000000..e82c26a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wchar_t.h.CC163415C6FEADEA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wint_t.h.F27B83269001BBA0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wint_t.h.F27B83269001BBA0.idx new file mode 100644 index 0000000..06f4bf9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wint_t.h.F27B83269001BBA0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.9717ED80F6994E93.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.9717ED80F6994E93.idx new file mode 100644 index 0000000..5ca1b8a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.9717ED80F6994E93.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.FB41EB6A8311F5EB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.FB41EB6A8311F5EB.idx new file mode 100644 index 0000000..0779f50 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.FB41EB6A8311F5EB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.F9164C6D63B40434.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.F9164C6D63B40434.idx new file mode 100644 index 0000000..68a36d6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.F9164C6D63B40434.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.6453DD6E54B996DD.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.6453DD6E54B996DD.idx new file mode 100644 index 0000000..d8fd670 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.6453DD6E54B996DD.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.D86BAEE7AE97F5AD.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.D86BAEE7AE97F5AD.idx new file mode 100644 index 0000000..a2b60c5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.D86BAEE7AE97F5AD.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.A74323887CE4B4A3.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.A74323887CE4B4A3.idx new file mode 100644 index 0000000..213fced Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.A74323887CE4B4A3.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.4835EC1E4BBE25AE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.4835EC1E4BBE25AE.idx new file mode 100644 index 0000000..38d9ef9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.4835EC1E4BBE25AE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.F283F81AA91E0450.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.F283F81AA91E0450.idx new file mode 100644 index 0000000..3e8f0bd Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.F283F81AA91E0450.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.3B41BEB858D30C93.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.3B41BEB858D30C93.idx new file mode 100644 index 0000000..3d5bc79 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.3B41BEB858D30C93.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.88322FFA93A2A117.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.88322FFA93A2A117.idx new file mode 100644 index 0000000..735b779 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.88322FFA93A2A117.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.77920C5A486C7BCC.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.77920C5A486C7BCC.idx new file mode 100644 index 0000000..530fb53 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.77920C5A486C7BCC.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.00D4816B7AB2E2C8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.00D4816B7AB2E2C8.idx new file mode 100644 index 0000000..4a621b5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.00D4816B7AB2E2C8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.7CFBD298781FA216.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.7CFBD298781FA216.idx new file mode 100644 index 0000000..461c576 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.7CFBD298781FA216.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.F3A45C5BC294933D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.F3A45C5BC294933D.idx new file mode 100644 index 0000000..2eea228 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.F3A45C5BC294933D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.E52986B961420A8D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.E52986B961420A8D.idx new file mode 100644 index 0000000..5c535ce Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.E52986B961420A8D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.39AB7B18FD5F970F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.39AB7B18FD5F970F.idx new file mode 100644 index 0000000..62e9c73 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.39AB7B18FD5F970F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.5DE0CEE97AE7DB5A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.5DE0CEE97AE7DB5A.idx new file mode 100644 index 0000000..9f0eeb5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.5DE0CEE97AE7DB5A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.543F550C2CAFC461.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.543F550C2CAFC461.idx new file mode 100644 index 0000000..d899ca6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.543F550C2CAFC461.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.C72577E4CD5490B8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.C72577E4CD5490B8.idx new file mode 100644 index 0000000..8acf97a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.C72577E4CD5490B8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.F15511415AD86837.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.F15511415AD86837.idx new file mode 100644 index 0000000..81fb146 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.F15511415AD86837.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.353FE7B5BA050A77.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.353FE7B5BA050A77.idx new file mode 100644 index 0000000..961fcb4 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.353FE7B5BA050A77.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.EC751638F7B20706.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.EC751638F7B20706.idx new file mode 100644 index 0000000..248bcd7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.EC751638F7B20706.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.24C17557BBFA66A7.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.24C17557BBFA66A7.idx new file mode 100644 index 0000000..3c884bf Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.24C17557BBFA66A7.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.EDF0018AB85AC6C6.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.EDF0018AB85AC6C6.idx new file mode 100644 index 0000000..65c1580 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.EDF0018AB85AC6C6.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.h.FACF1A4590EC3664.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.h.FACF1A4590EC3664.idx new file mode 100644 index 0000000..562035b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.h.FACF1A4590EC3664.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.tcc.95651F1DEA11483E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.tcc.95651F1DEA11483E.idx new file mode 100644 index 0000000..e13dc35 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_ios.tcc.95651F1DEA11483E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.78B2761F5DB2A235.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.78B2761F5DB2A235.idx new file mode 100644 index 0000000..36cf4b1 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.78B2761F5DB2A235.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.B28AF853A646AB26.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.B28AF853A646AB26.idx new file mode 100644 index 0000000..44cf31c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.B28AF853A646AB26.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.83149AE0BA5F53D4.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.83149AE0BA5F53D4.idx new file mode 100644 index 0000000..d6db9ae Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.83149AE0BA5F53D4.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.009DFAFBB0772188.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.009DFAFBB0772188.idx new file mode 100644 index 0000000..da9f825 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.009DFAFBB0772188.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.C23BDF1091D946E6.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.C23BDF1091D946E6.idx new file mode 100644 index 0000000..a5db7cc Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.C23BDF1091D946E6.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.EE9223057BE6CD4E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.EE9223057BE6CD4E.idx new file mode 100644 index 0000000..2f8e698 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.EE9223057BE6CD4E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.4FB8508A1A6D56AE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.4FB8508A1A6D56AE.idx new file mode 100644 index 0000000..043c279 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.4FB8508A1A6D56AE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.81F56C14ADC8C6DA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.81F56C14ADC8C6DA.idx new file mode 100644 index 0000000..bd05edd Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.81F56C14ADC8C6DA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.DD93838535F87368.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.DD93838535F87368.idx new file mode 100644 index 0000000..94f5dfd Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.DD93838535F87368.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cassert.0166AA67D9029FDF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cassert.0166AA67D9029FDF.idx new file mode 100644 index 0000000..4b73eb8 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cassert.0166AA67D9029FDF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.521B47CD3E187E74.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.521B47CD3E187E74.idx new file mode 100644 index 0000000..bce0a9d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.521B47CD3E187E74.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.A603249F68BAC16C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.A603249F68BAC16C.idx new file mode 100644 index 0000000..0c37438 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.A603249F68BAC16C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.FC63F0F81577F875.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.FC63F0F81577F875.idx new file mode 100644 index 0000000..cc9b8ee Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.FC63F0F81577F875.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.75C283B33C1A6891.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.75C283B33C1A6891.idx new file mode 100644 index 0000000..eebfa7a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.75C283B33C1A6891.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.79C9714F4955E996.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.79C9714F4955E996.idx new file mode 100644 index 0000000..15fd147 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.79C9714F4955E996.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.h.1DAF3F759B8D3EDE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.h.1DAF3F759B8D3EDE.idx new file mode 100644 index 0000000..894e7db Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.h.1DAF3F759B8D3EDE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.F423B838638A6B19.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.F423B838638A6B19.idx new file mode 100644 index 0000000..4b7c57f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.F423B838638A6B19.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.7F8482780280C769.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.7F8482780280C769.idx new file mode 100644 index 0000000..19fb2b2 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.7F8482780280C769.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.cpp.F661E47C86C8D602.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.cpp.F661E47C86C8D602.idx new file mode 100644 index 0000000..07037bd Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.cpp.F661E47C86C8D602.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.h.FFDABA2D3327A137.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.h.FFDABA2D3327A137.idx new file mode 100644 index 0000000..92a4c09 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.h.FFDABA2D3327A137.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.D167E3ED34BBF76A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.D167E3ED34BBF76A.idx new file mode 100644 index 0000000..7a64782 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.D167E3ED34BBF76A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.E4F293F96257E598.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.E4F293F96257E598.idx new file mode 100644 index 0000000..006946d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.E4F293F96257E598.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.h.E6A472E65A6C7AEF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.h.E6A472E65A6C7AEF.idx new file mode 100644 index 0000000..d218f4e Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/codecvt.h.E6A472E65A6C7AEF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/compare.3D1BAB4C71307DD6.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/compare.3D1BAB4C71307DD6.idx new file mode 100644 index 0000000..0587fc9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/compare.3D1BAB4C71307DD6.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.C18AE13023F76484.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.C18AE13023F76484.idx new file mode 100644 index 0000000..1a4fda5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.C18AE13023F76484.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.1A57A18C8FC7D1C5.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.1A57A18C8FC7D1C5.idx new file mode 100644 index 0000000..dd55a9d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.1A57A18C8FC7D1C5.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.91FFED440C496553.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.91FFED440C496553.idx new file mode 100644 index 0000000..38ff128 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.91FFED440C496553.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.0574045B9E8BA854.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.0574045B9E8BA854.idx new file mode 100644 index 0000000..3896a86 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.0574045B9E8BA854.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.B50F2793FA6E16FF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.B50F2793FA6E16FF.idx new file mode 100644 index 0000000..669e8bf Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.B50F2793FA6E16FF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.5E6D6DF67F778DB5.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.5E6D6DF67F778DB5.idx new file mode 100644 index 0000000..6a68eec Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.5E6D6DF67F778DB5.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.F722D5AD11F1268F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.F722D5AD11F1268F.idx new file mode 100644 index 0000000..823f520 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.F722D5AD11F1268F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.A2A4F72478FEAC9B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.A2A4F72478FEAC9B.idx new file mode 100644 index 0000000..741656a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.A2A4F72478FEAC9B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.264B73ED209417C9.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.264B73ED209417C9.idx new file mode 100644 index 0000000..b86fd5b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.264B73ED209417C9.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.F4411CBF44822BC8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.F4411CBF44822BC8.idx new file mode 100644 index 0000000..ef508c5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.F4411CBF44822BC8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.320E91D4A067C09F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.320E91D4A067C09F.idx new file mode 100644 index 0000000..5f6baea Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.320E91D4A067C09F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.0AA2EF29E0BCAE6E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.0AA2EF29E0BCAE6E.idx new file mode 100644 index 0000000..a71331d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.0AA2EF29E0BCAE6E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.4C4100D031DD8133.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.4C4100D031DD8133.idx new file mode 100644 index 0000000..f137a09 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.4C4100D031DD8133.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.C4AD4EF234B90A22.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.C4AD4EF234B90A22.idx new file mode 100644 index 0000000..56dbd28 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.C4AD4EF234B90A22.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.D9F78403778E61AC.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.D9F78403778E61AC.idx new file mode 100644 index 0000000..ec1b268 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.D9F78403778E61AC.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.31E88DD6D9FD92A7.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.31E88DD6D9FD92A7.idx new file mode 100644 index 0000000..28e3dcd Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.31E88DD6D9FD92A7.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_base.h.86092007BEC79F39.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_base.h.86092007BEC79F39.idx new file mode 100644 index 0000000..4d7a8d9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_base.h.86092007BEC79F39.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_inline.h.E44484578FEC4B7F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_inline.h.E44484578FEC4B7F.idx new file mode 100644 index 0000000..c5409d5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype_inline.h.E44484578FEC4B7F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.B20962833FEEED5D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.B20962833FEEED5D.idx new file mode 100644 index 0000000..994cb1a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.B20962833FEEED5D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwctype.FC64F8C12C4AA83E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwctype.FC64F8C12C4AA83E.idx new file mode 100644 index 0000000..3aa3652 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwctype.FC64F8C12C4AA83E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.682ABAFCEE4920BE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.682ABAFCEE4920BE.idx new file mode 100644 index 0000000..480a376 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.682ABAFCEE4920BE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.D1F69354C8D30D0A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.D1F69354C8D30D0A.idx new file mode 100644 index 0000000..d908daf Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.D1F69354C8D30D0A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.18F111068D3C9EC4.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.18F111068D3C9EC4.idx new file mode 100644 index 0000000..bb64f10 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.18F111068D3C9EC4.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.9C6B56BA6081C482.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.9C6B56BA6081C482.idx new file mode 100644 index 0000000..e83c1c9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.9C6B56BA6081C482.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.3A1A952160F21732.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.3A1A952160F21732.idx new file mode 100644 index 0000000..464df45 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.3A1A952160F21732.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.91214BD874CB7E33.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.91214BD874CB7E33.idx new file mode 100644 index 0000000..b223329 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.91214BD874CB7E33.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.9280179BBF7933D6.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.9280179BBF7933D6.idx new file mode 100644 index 0000000..a538013 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.9280179BBF7933D6.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.9842103A5A9C3A69.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.9842103A5A9C3A69.idx new file mode 100644 index 0000000..b419d5e Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.9842103A5A9C3A69.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.3F3AC25BBC225B9C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.3F3AC25BBC225B9C.idx new file mode 100644 index 0000000..f484282 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.3F3AC25BBC225B9C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.3057D404702421BC.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.3057D404702421BC.idx new file mode 100644 index 0000000..1d0efc4 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.3057D404702421BC.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.8FC63004507631CB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.8FC63004507631CB.idx new file mode 100644 index 0000000..93a4305 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.8FC63004507631CB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.702998FFBF6BABB0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.702998FFBF6BABB0.idx new file mode 100644 index 0000000..47fb45b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.702998FFBF6BABB0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.6ED2EB3F267824E4.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.6ED2EB3F267824E4.idx new file mode 100644 index 0000000..4d661b5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.6ED2EB3F267824E4.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.39CBDA50FF5F14BF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.39CBDA50FF5F14BF.idx new file mode 100644 index 0000000..01a4190 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.39CBDA50FF5F14BF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/filesystem.8D9F8F572ECC8562.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/filesystem.8D9F8F572ECC8562.idx new file mode 100644 index 0000000..848c273 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/filesystem.8D9F8F572ECC8562.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_dir.h.BE3B7D4E94432A6F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_dir.h.BE3B7D4E94432A6F.idx new file mode 100644 index 0000000..ac4ce42 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_dir.h.BE3B7D4E94432A6F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_fwd.h.F476DB9D0429C0F2.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_fwd.h.F476DB9D0429C0F2.idx new file mode 100644 index 0000000..c293af9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_fwd.h.F476DB9D0429C0F2.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_ops.h.AD070A594608BBD3.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_ops.h.AD070A594608BBD3.idx new file mode 100644 index 0000000..6cd0482 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_ops.h.AD070A594608BBD3.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_path.h.0F74759D9247C2EF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_path.h.0F74759D9247C2EF.idx new file mode 100644 index 0000000..a59be38 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/fs_path.h.0F74759D9247C2EF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.2F54B8A5E45CD4C9.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.2F54B8A5E45CD4C9.idx new file mode 100644 index 0000000..57e5619 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.2F54B8A5E45CD4C9.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.40A20C33195418F0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.40A20C33195418F0.idx new file mode 100644 index 0000000..db9e558 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.40A20C33195418F0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.F121DED80726E0BE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.F121DED80726E0BE.idx new file mode 100644 index 0000000..f157ae0 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.F121DED80726E0BE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.FAEF068DE6E02F62.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.FAEF068DE6E02F62.idx new file mode 100644 index 0000000..faa0c33 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.FAEF068DE6E02F62.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.DFBC18507681A683.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.DFBC18507681A683.idx new file mode 100644 index 0000000..32a786d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.DFBC18507681A683.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.FF6778122421F159.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.FF6778122421F159.idx new file mode 100644 index 0000000..9a0ecac Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.FF6778122421F159.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.CD8D00185D343FD9.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.CD8D00185D343FD9.idx new file mode 100644 index 0000000..a8c480f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.CD8D00185D343FD9.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.8B441E53410D88BA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.8B441E53410D88BA.idx new file mode 100644 index 0000000..d16d8a5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.8B441E53410D88BA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.534B9BDA11A4DA0F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.534B9BDA11A4DA0F.idx new file mode 100644 index 0000000..2573621 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.534B9BDA11A4DA0F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.77D5C3F86373CD76.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.77D5C3F86373CD76.idx new file mode 100644 index 0000000..0a64e95 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.77D5C3F86373CD76.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.33361502E5E748CC.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.33361502E5E748CC.idx new file mode 100644 index 0000000..94eb9f9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.33361502E5E748CC.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.F61098E9A90B451C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.F61098E9A90B451C.idx new file mode 100644 index 0000000..ca925a1 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.F61098E9A90B451C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.045AE4809E7175D0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.045AE4809E7175D0.idx new file mode 100644 index 0000000..2e7aca1 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.045AE4809E7175D0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ifontprovider.h.50FE5FB4C35740DC.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ifontprovider.h.50FE5FB4C35740DC.idx new file mode 100644 index 0000000..f28a819 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ifontprovider.h.50FE5FB4C35740DC.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.7524BBB4E75991DF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.7524BBB4E75991DF.idx new file mode 100644 index 0000000..1152af3 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.7524BBB4E75991DF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.39A33F95E57C1B0E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.39A33F95E57C1B0E.idx new file mode 100644 index 0000000..9bfa6be Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.39A33F95E57C1B0E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iomanip.39D25BB2E0944A06.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iomanip.39D25BB2E0944A06.idx new file mode 100644 index 0000000..7f0c7be Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iomanip.39D25BB2E0944A06.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios.28D209C7F5C51399.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios.28D209C7F5C51399.idx new file mode 100644 index 0000000..738edc1 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios.28D209C7F5C51399.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.EE77BA181F8F922E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.EE77BA181F8F922E.idx new file mode 100644 index 0000000..60ce6b8 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.EE77BA181F8F922E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.007B189B77488216.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.007B189B77488216.idx new file mode 100644 index 0000000..b5d11a0 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.007B189B77488216.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.B09AFA1D87F27C29.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.B09AFA1D87F27C29.idx new file mode 100644 index 0000000..0e35032 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.B09AFA1D87F27C29.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.tcc.63D6C659D8600659.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.tcc.63D6C659D8600659.idx new file mode 100644 index 0000000..ed7287c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/istream.tcc.63D6C659D8600659.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.6A4DD839D54A9319.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.6A4DD839D54A9319.idx new file mode 100644 index 0000000..978ff4b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.6A4DD839D54A9319.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.8B933620627A6CFD.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.8B933620627A6CFD.idx new file mode 100644 index 0000000..a0672dc Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.8B933620627A6CFD.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.341B53349264D8C2.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.341B53349264D8C2.idx new file mode 100644 index 0000000..5eb0ebc Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.341B53349264D8C2.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.B7088A29B5B32F97.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.B7088A29B5B32F97.idx new file mode 100644 index 0000000..2027426 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.B7088A29B5B32F97.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.CED4D1D71838D549.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.CED4D1D71838D549.idx new file mode 100644 index 0000000..5485a57 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.CED4D1D71838D549.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.39AF5AD05F6E643D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.39AF5AD05F6E643D.idx new file mode 100644 index 0000000..5a97109 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.39AF5AD05F6E643D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.4339571EC7B689AF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.4339571EC7B689AF.idx new file mode 100644 index 0000000..4032212 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.4339571EC7B689AF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.59C31D7FF52C1A3E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.59C31D7FF52C1A3E.idx new file mode 100644 index 0000000..da5d46d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.59C31D7FF52C1A3E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.1F6BB5129F2908DA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.1F6BB5129F2908DA.idx new file mode 100644 index 0000000..d574ebf Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.1F6BB5129F2908DA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.EFFEA9DA08D9D271.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.EFFEA9DA08D9D271.idx new file mode 100644 index 0000000..3307d92 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.EFFEA9DA08D9D271.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.BC6C7713E589DCFB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.BC6C7713E589DCFB.idx new file mode 100644 index 0000000..b304f00 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.BC6C7713E589DCFB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_conv.h.C297B0351B3D2578.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_conv.h.C297B0351B3D2578.idx new file mode 100644 index 0000000..de37724 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_conv.h.C297B0351B3D2578.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.h.79B5B80D225059A7.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.h.79B5B80D225059A7.idx new file mode 100644 index 0000000..dccda93 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.h.79B5B80D225059A7.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.tcc.4EC1DF46EBC395BE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.tcc.4EC1DF46EBC395BE.idx new file mode 100644 index 0000000..04d3d97 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets.tcc.4EC1DF46EBC395BE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.h.48D74AFE5D8FE23E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.h.48D74AFE5D8FE23E.idx new file mode 100644 index 0000000..29f3ea2 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.h.48D74AFE5D8FE23E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.tcc.B1A6ACCD18EE3157.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.tcc.B1A6ACCD18EE3157.idx new file mode 100644 index 0000000..35c336a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.tcc.B1A6ACCD18EE3157.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.3DADEF5A180B8221.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.3DADEF5A180B8221.idx new file mode 100644 index 0000000..9ec5b3a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.3DADEF5A180B8221.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.ADF0C9C5AC94232F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.ADF0C9C5AC94232F.idx new file mode 100644 index 0000000..3fa4b77 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.ADF0C9C5AC94232F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.8652F336CCBCE739.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.8652F336CCBCE739.idx new file mode 100644 index 0000000..4fae606 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.8652F336CCBCE739.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.ADDA10F030C1B0EA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.ADDA10F030C1B0EA.idx new file mode 100644 index 0000000..7a6576c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.ADDA10F030C1B0EA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.F997C0941CFC7859.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.F997C0941CFC7859.idx new file mode 100644 index 0000000..1f03ac9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.F997C0941CFC7859.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.6A35E0723196E38F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.6A35E0723196E38F.idx new file mode 100644 index 0000000..224d34c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.6A35E0723196E38F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory_resource.h.949F75803E618383.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory_resource.h.949F75803E618383.idx new file mode 100644 index 0000000..535d2ca Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory_resource.h.949F75803E618383.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.88C3DCE5983EBBEF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.88C3DCE5983EBBEF.idx new file mode 100644 index 0000000..e586f17 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.88C3DCE5983EBBEF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/messages_members.h.1103507E7A52C5CE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/messages_members.h.1103507E7A52C5CE.idx new file mode 100644 index 0000000..bc7847d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/messages_members.h.1103507E7A52C5CE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.0C172CB22B11E5AA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.0C172CB22B11E5AA.idx new file mode 100644 index 0000000..b1483b8 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.0C172CB22B11E5AA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.214164428DB64FAD.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.214164428DB64FAD.idx new file mode 100644 index 0000000..adced4d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.214164428DB64FAD.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.5D1F9D6408256E4B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.5D1F9D6408256E4B.idx new file mode 100644 index 0000000..abded58 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.5D1F9D6408256E4B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.7BD4F36917CF248D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.7BD4F36917CF248D.idx new file mode 100644 index 0000000..f9ed2c8 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.7BD4F36917CF248D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.33C83A9D077341A5.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.33C83A9D077341A5.idx new file mode 100644 index 0000000..64c72c9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.33C83A9D077341A5.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.AF994E96FEA5FBF7.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.AF994E96FEA5FBF7.idx new file mode 100644 index 0000000..f2f8250 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.AF994E96FEA5FBF7.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.E26ADE863B937BD0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.E26ADE863B937BD0.idx new file mode 100644 index 0000000..7d9ad63 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.E26ADE863B937BD0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.BC1C3C66052C2BF1.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.BC1C3C66052C2BF1.idx new file mode 100644 index 0000000..44b70ef Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.BC1C3C66052C2BF1.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.34B5BAA4F0B42816.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.34B5BAA4F0B42816.idx new file mode 100644 index 0000000..6fad0bf Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.34B5BAA4F0B42816.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.9D6F368BCB0044D2.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.9D6F368BCB0044D2.idx new file mode 100644 index 0000000..26ead4f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.9D6F368BCB0044D2.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.246DDA2DA29840CF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.246DDA2DA29840CF.idx new file mode 100644 index 0000000..17b6163 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.246DDA2DA29840CF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.B20FFD3D38003ADE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.B20FFD3D38003ADE.idx new file mode 100644 index 0000000..c6c7836 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.B20FFD3D38003ADE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.tcc.9AD0F45BD6AB1855.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.tcc.9AD0F45BD6AB1855.idx new file mode 100644 index 0000000..2b6cb12 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream.tcc.9AD0F45BD6AB1855.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.53675B8219EAF7D8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.53675B8219EAF7D8.idx new file mode 100644 index 0000000..2a95be6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.53675B8219EAF7D8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.9F35C43BEF2FCF68.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.9F35C43BEF2FCF68.idx new file mode 100644 index 0000000..3cc81e5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.9F35C43BEF2FCF68.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.487DA3CF6D8EBEEC.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.487DA3CF6D8EBEEC.idx new file mode 100644 index 0000000..d5062c9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.487DA3CF6D8EBEEC.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.8F9A56A13412DA07.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.8F9A56A13412DA07.idx new file mode 100644 index 0000000..4f7685a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.8F9A56A13412DA07.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.A9B5AE5CDD10DE0A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.A9B5AE5CDD10DE0A.idx new file mode 100644 index 0000000..c844db4 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.A9B5AE5CDD10DE0A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.F0FD890EC402829A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.F0FD890EC402829A.idx new file mode 100644 index 0000000..61a5fbe Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.F0FD890EC402829A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.1A5D633586FF2F31.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.1A5D633586FF2F31.idx new file mode 100644 index 0000000..ab167e5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.1A5D633586FF2F31.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.8AC5780B0EE8B43D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.8AC5780B0EE8B43D.idx new file mode 100644 index 0000000..0c3b610 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.8AC5780B0EE8B43D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.E9C453A042E2E6AB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.E9C453A042E2E6AB.idx new file mode 100644 index 0000000..130b4eb Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.E9C453A042E2E6AB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.249A8020DEDE984A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.249A8020DEDE984A.idx new file mode 100644 index 0000000..cee31ec Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.249A8020DEDE984A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BE58531F88ADD0DE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BE58531F88ADD0DE.idx new file mode 100644 index 0000000..716b2b4 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BE58531F88ADD0DE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.5B7735246C07E51A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.5B7735246C07E51A.idx new file mode 100644 index 0000000..7a13cbe Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.5B7735246C07E51A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.687BC92285D30836.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.687BC92285D30836.idx new file mode 100644 index 0000000..88892c7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.687BC92285D30836.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.120B91EBBA5B5090.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.120B91EBBA5B5090.idx new file mode 100644 index 0000000..ef232bf Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.120B91EBBA5B5090.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20algorithm.h.1CF033F3FAF2EC88.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20algorithm.h.1CF033F3FAF2EC88.idx new file mode 100644 index 0000000..4b77ea7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20algorithm.h.1CF033F3FAF2EC88.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.D103E615DAEC3235.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.D103E615DAEC3235.idx new file mode 100644 index 0000000..6647399 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.D103E615DAEC3235.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20iterator.h.1E64C5D8C8B04C5C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20iterator.h.1E64C5D8C8B04C5C.idx new file mode 100644 index 0000000..aea0847 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20iterator.h.1E64C5D8C8B04C5C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.5FF189F19597B5AA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.5FF189F19597B5AA.idx new file mode 100644 index 0000000..20b5c8f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.5FF189F19597B5AA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.F331A0A07284141E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.F331A0A07284141E.idx new file mode 100644 index 0000000..671a67f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.F331A0A07284141E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.12DFE12F7AE93C02.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.12DFE12F7AE93C02.idx new file mode 100644 index 0000000..2adc5c3 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.12DFE12F7AE93C02.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.0315B420395B45CB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.0315B420395B45CB.idx new file mode 100644 index 0000000..df39199 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.0315B420395B45CB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.B38C6ECC3EE22E1F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.B38C6ECC3EE22E1F.idx new file mode 100644 index 0000000..cbd0f1f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.B38C6ECC3EE22E1F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.25697AD8652FF851.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.25697AD8652FF851.idx new file mode 100644 index 0000000..8e46c17 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.25697AD8652FF851.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.7539EC5C7DA892F3.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.7539EC5C7DA892F3.idx new file mode 100644 index 0000000..6a77926 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.7539EC5C7DA892F3.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.610E70AD47818057.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.610E70AD47818057.idx new file mode 100644 index 0000000..72708e6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.610E70AD47818057.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.CB26903B27676FCF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.CB26903B27676FCF.idx new file mode 100644 index 0000000..1fec77a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.CB26903B27676FCF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.6515CDFF8DB71B80.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.6515CDFF8DB71B80.idx new file mode 100644 index 0000000..781f263 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.6515CDFF8DB71B80.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.9C5CEB21BBCFA003.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.9C5CEB21BBCFA003.idx new file mode 100644 index 0000000..2a224cb Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.9C5CEB21BBCFA003.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.FCE6C7A4B6186767.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.FCE6C7A4B6186767.idx new file mode 100644 index 0000000..323a98f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.FCE6C7A4B6186767.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.A756A5C7B1DAC1D2.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.A756A5C7B1DAC1D2.idx new file mode 100644 index 0000000..6a81ae2 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.A756A5C7B1DAC1D2.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.ECF76C8B039A79CA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.ECF76C8B039A79CA.idx new file mode 100644 index 0000000..dd29f91 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.ECF76C8B039A79CA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.A5C2ADA897173EB4.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.A5C2ADA897173EB4.idx new file mode 100644 index 0000000..4834cda Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.A5C2ADA897173EB4.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.B6ED5FF6DD016E2A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.B6ED5FF6DD016E2A.idx new file mode 100644 index 0000000..b21ef4f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.B6ED5FF6DD016E2A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.810E8BBAD2F1EE66.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.810E8BBAD2F1EE66.idx new file mode 100644 index 0000000..b2e103c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.810E8BBAD2F1EE66.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.ECAD744CEE0CF72A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.ECAD744CEE0CF72A.idx new file mode 100644 index 0000000..2c6c49e Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.ECAD744CEE0CF72A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.0584F8035A2C16A8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.0584F8035A2C16A8.idx new file mode 100644 index 0000000..87d0fb2 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.0584F8035A2C16A8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.860700041C375C96.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.860700041C375C96.idx new file mode 100644 index 0000000..1d242e7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.860700041C375C96.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F4CE9325C6D3663.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F4CE9325C6D3663.idx new file mode 100644 index 0000000..87cb1f0 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F4CE9325C6D3663.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.D935582FF29946C7.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.D935582FF29946C7.idx new file mode 100644 index 0000000..272fbd9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.D935582FF29946C7.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborcommon.h.4F4E3E96116225B9.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborcommon.h.4F4E3E96116225B9.idx new file mode 100644 index 0000000..5fa0f10 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborcommon.h.4F4E3E96116225B9.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborvalue.h.B82CA35B28F94612.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborvalue.h.B82CA35B28F94612.idx new file mode 100644 index 0000000..8568c2d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborvalue.h.B82CA35B28F94612.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.BAD3A4C5B4F677F5.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.BAD3A4C5B4F677F5.idx new file mode 100644 index 0000000..fb5c6fd Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.BAD3A4C5B4F677F5.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.9C337F539071621E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.9C337F539071621E.idx new file mode 100644 index 0000000..0cdf645 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.9C337F539071621E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.91CA278745818518.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.91CA278745818518.idx new file mode 100644 index 0000000..692da62 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.91CA278745818518.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.71347AD4611B45B0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.71347AD4611B45B0.idx new file mode 100644 index 0000000..c99ee8b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.71347AD4611B45B0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.2F22D650CFA7B3AD.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.2F22D650CFA7B3AD.idx new file mode 100644 index 0000000..d02b732 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.2F22D650CFA7B3AD.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.0BDDA3B3FD20D13C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.0BDDA3B3FD20D13C.idx new file mode 100644 index 0000000..3e54ac8 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.0BDDA3B3FD20D13C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.8F38301826F1D25A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.8F38301826F1D25A.idx new file mode 100644 index 0000000..642e4a7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.8F38301826F1D25A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2C9583E2D48F2277.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2C9583E2D48F2277.idx new file mode 100644 index 0000000..4c6e0e3 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2C9583E2D48F2277.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.1F56BC73EF0B4F42.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.1F56BC73EF0B4F42.idx new file mode 100644 index 0000000..6a72036 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.1F56BC73EF0B4F42.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.449179BAB180A83F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.449179BAB180A83F.idx new file mode 100644 index 0000000..9af694b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.449179BAB180A83F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.E526B85CD8391D4C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.E526B85CD8391D4C.idx new file mode 100644 index 0000000..b0ddd77 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.E526B85CD8391D4C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.96E999CC9DE1B181.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.96E999CC9DE1B181.idx new file mode 100644 index 0000000..d79a8ad Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.96E999CC9DE1B181.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.4CE8A5235491B501.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.4CE8A5235491B501.idx new file mode 100644 index 0000000..a4e9dda Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.4CE8A5235491B501.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.8869157F07043678.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.8869157F07043678.idx new file mode 100644 index 0000000..82ebf84 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.8869157F07043678.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E897829E64A0E663.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E897829E64A0E663.idx new file mode 100644 index 0000000..68b688c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E897829E64A0E663.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.20B2B643D4F343E9.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.20B2B643D4F343E9.idx new file mode 100644 index 0000000..7dde8c4 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.20B2B643D4F343E9.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.E71CB00ADFFDB2BF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.E71CB00ADFFDB2BF.idx new file mode 100644 index 0000000..d21c260 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.E71CB00ADFFDB2BF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.F02B2C4DD16D1F1A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.F02B2C4DD16D1F1A.idx new file mode 100644 index 0000000..a69108b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.F02B2C4DD16D1F1A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.1CEFEDE236C5F6E7.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.1CEFEDE236C5F6E7.idx new file mode 100644 index 0000000..79a4ff2 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.1CEFEDE236C5F6E7.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.132FF805B82AC412.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.132FF805B82AC412.idx new file mode 100644 index 0000000..ebd38a9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.132FF805B82AC412.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.864316BE1149FDF4.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.864316BE1149FDF4.idx new file mode 100644 index 0000000..3072b33 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.864316BE1149FDF4.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdir.h.8B0B11254379D542.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdir.h.8B0B11254379D542.idx new file mode 100644 index 0000000..6b5ec92 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdir.h.8B0B11254379D542.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdirlisting.h.4133BDF609DC09F6.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdirlisting.h.4133BDF609DC09F6.idx new file mode 100644 index 0000000..d5a93da Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdirlisting.h.4133BDF609DC09F6.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.4C08E370C2D685F9.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.4C08E370C2D685F9.idx new file mode 100644 index 0000000..1f651a9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.4C08E370C2D685F9.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.6C7F69968AE01434.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.6C7F69968AE01434.idx new file mode 100644 index 0000000..da736fa Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.6C7F69968AE01434.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.F543FF8294A084E0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.F543FF8294A084E0.idx new file mode 100644 index 0000000..f5df533 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.F543FF8294A084E0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.7705B1967E36C3D5.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.7705B1967E36C3D5.idx new file mode 100644 index 0000000..0899e85 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.7705B1967E36C3D5.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfile.h.6840208E865587E7.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfile.h.6840208E865587E7.idx new file mode 100644 index 0000000..0293083 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfile.h.6840208E865587E7.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfiledevice.h.2C9E393788EDD8A1.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfiledevice.h.2C9E393788EDD8A1.idx new file mode 100644 index 0000000..b3d79e7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfiledevice.h.2C9E393788EDD8A1.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfileinfo.h.E36BE742FBB3788C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfileinfo.h.E36BE742FBB3788C.idx new file mode 100644 index 0000000..80e9b46 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfileinfo.h.E36BE742FBB3788C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.7527C82DBBDF3CD7.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.7527C82DBBDF3CD7.idx new file mode 100644 index 0000000..5b1766b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.7527C82DBBDF3CD7.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.BDB36B1FE7DB45B2.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.BDB36B1FE7DB45B2.idx new file mode 100644 index 0000000..6340d28 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.BDB36B1FE7DB45B2.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.A1C05849216C7586.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.A1C05849216C7586.idx new file mode 100644 index 0000000..84e19be Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.A1C05849216C7586.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.5063CB93D7C62005.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.5063CB93D7C62005.idx new file mode 100644 index 0000000..2b81862 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.5063CB93D7C62005.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.6896BAEA6445F1AE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.6896BAEA6445F1AE.idx new file mode 100644 index 0000000..084620d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.6896BAEA6445F1AE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.9072E9576D89BEDE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.9072E9576D89BEDE.idx new file mode 100644 index 0000000..1197349 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.9072E9576D89BEDE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.17FCFD203456BBE1.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.17FCFD203456BBE1.idx new file mode 100644 index 0000000..16d3bbb Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.17FCFD203456BBE1.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.D8843FC9924C702A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.D8843FC9924C702A.idx new file mode 100644 index 0000000..048eba7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.D8843FC9924C702A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.F4FF6FFFA615E8F8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.F4FF6FFFA615E8F8.idx new file mode 100644 index 0000000..52df49c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.F4FF6FFFA615E8F8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.A0D67BF2FF6BD5E1.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.A0D67BF2FF6BD5E1.idx new file mode 100644 index 0000000..f299c7e Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.A0D67BF2FF6BD5E1.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.21382A614497DF2D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.21382A614497DF2D.idx new file mode 100644 index 0000000..b7156d3 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.21382A614497DF2D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.EAE94C0CBFB79A4B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.EAE94C0CBFB79A4B.idx new file mode 100644 index 0000000..a9cacf0 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.EAE94C0CBFB79A4B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.09B1B494C86015C4.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.09B1B494C86015C4.idx new file mode 100644 index 0000000..50aabdd Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.09B1B494C86015C4.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.1B80C9DE6CF7C6B2.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.1B80C9DE6CF7C6B2.idx new file mode 100644 index 0000000..4a7fa21 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.1B80C9DE6CF7C6B2.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.43B9E80C2BC3275F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.43B9E80C2BC3275F.idx new file mode 100644 index 0000000..ccd66be Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.43B9E80C2BC3275F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.611F8E6A8FF251D3.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.611F8E6A8FF251D3.idx new file mode 100644 index 0000000..b88ddef Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.611F8E6A8FF251D3.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.01FB5F33914BA335.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.01FB5F33914BA335.idx new file mode 100644 index 0000000..0852c3f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.01FB5F33914BA335.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.F0E6427A0D3CDD2B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.F0E6427A0D3CDD2B.idx new file mode 100644 index 0000000..0dfc4eb Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.F0E6427A0D3CDD2B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevice.h.756287EF110D7421.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevice.h.756287EF110D7421.idx new file mode 100644 index 0000000..ef1b179 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevice.h.756287EF110D7421.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.B2828E5CCFA10E36.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.B2828E5CCFA10E36.idx new file mode 100644 index 0000000..8a3443b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.B2828E5CCFA10E36.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.DEA4F2A307492F3C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.DEA4F2A307492F3C.idx new file mode 100644 index 0000000..a42353b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.DEA4F2A307492F3C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.80843145DADC61E9.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.80843145DADC61E9.idx new file mode 100644 index 0000000..eb8b06a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.80843145DADC61E9.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonobject.h.2ED7E9916AA81F55.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonobject.h.2ED7E9916AA81F55.idx new file mode 100644 index 0000000..f99d0c4 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonobject.h.2ED7E9916AA81F55.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.C85C84BDE2EF6289.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.C85C84BDE2EF6289.idx new file mode 100644 index 0000000..53d96b2 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.C85C84BDE2EF6289.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.A464F03335EF6D03.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.A464F03335EF6D03.idx new file mode 100644 index 0000000..ac74a29 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.A464F03335EF6D03.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.1CA0BF709C13A0F9.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.1CA0BF709C13A0F9.idx new file mode 100644 index 0000000..00e9ed6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.1CA0BF709C13A0F9.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlibrary.h.BD9E8EB3B980DAED.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlibrary.h.BD9E8EB3B980DAED.idx new file mode 100644 index 0000000..6c5a4e7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlibrary.h.BD9E8EB3B980DAED.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.D8F034107BD28D20.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.D8F034107BD28D20.idx new file mode 100644 index 0000000..107b367 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.D8F034107BD28D20.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.E8B55DD06AEE0B0A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.E8B55DD06AEE0B0A.idx new file mode 100644 index 0000000..64bfe2a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.E8B55DD06AEE0B0A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.E627982AF1F7F50D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.E627982AF1F7F50D.idx new file mode 100644 index 0000000..737e325 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.E627982AF1F7F50D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.33380003B933298B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.33380003B933298B.idx new file mode 100644 index 0000000..373d4a5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.33380003B933298B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmainwindow.h.E1465F7B71C20A64.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmainwindow.h.E1465F7B71C20A64.idx new file mode 100644 index 0000000..eb8d7c5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmainwindow.h.E1465F7B71C20A64.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.DF1971518A60E221.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.DF1971518A60E221.idx new file mode 100644 index 0000000..f6cda3b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.DF1971518A60E221.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.48FB2DAF12EDE0A5.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.48FB2DAF12EDE0A5.idx new file mode 100644 index 0000000..a880b46 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.48FB2DAF12EDE0A5.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.35FE1D654ADEA6EA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.35FE1D654ADEA6EA.idx new file mode 100644 index 0000000..fc8faf2 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.35FE1D654ADEA6EA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.0311B1EE0ECDDD67.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.0311B1EE0ECDDD67.idx new file mode 100644 index 0000000..60fb33d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.0311B1EE0ECDDD67.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F0AAA350227B36C0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F0AAA350227B36C0.idx new file mode 100644 index 0000000..aacc5cc Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F0AAA350227B36C0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.3916E415BD846CEA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.3916E415BD846CEA.idx new file mode 100644 index 0000000..a82845c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.3916E415BD846CEA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.208D103B6BF0A96E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.208D103B6BF0A96E.idx new file mode 100644 index 0000000..edfb73e Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.208D103B6BF0A96E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.A1FA19F877429892.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.A1FA19F877429892.idx new file mode 100644 index 0000000..04e828b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.A1FA19F877429892.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.7484A57DD623CFE1.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.7484A57DD623CFE1.idx new file mode 100644 index 0000000..f2ca6c9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.7484A57DD623CFE1.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.9E3BCE6245F9BD3C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.9E3BCE6245F9BD3C.idx new file mode 100644 index 0000000..2adc73b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.9E3BCE6245F9BD3C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.E266AD4198FF3DF6.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.E266AD4198FF3DF6.idx new file mode 100644 index 0000000..378839c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.E266AD4198FF3DF6.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.EF3EAC364342A7DD.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.EF3EAC364342A7DD.idx new file mode 100644 index 0000000..f5810b8 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.EF3EAC364342A7DD.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.23ECACA039E551A1.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.23ECACA039E551A1.idx new file mode 100644 index 0000000..8c646bb Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.23ECACA039E551A1.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.DDF20EF11F22ADE2.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.DDF20EF11F22ADE2.idx new file mode 100644 index 0000000..2ab40e0 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.DDF20EF11F22ADE2.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.79B4A1A16F0A6CC4.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.79B4A1A16F0A6CC4.idx new file mode 100644 index 0000000..1056805 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.79B4A1A16F0A6CC4.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.2298705672B19591.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.2298705672B19591.idx new file mode 100644 index 0000000..99bba20 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.2298705672B19591.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.6C99C47E3B31D32F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.6C99C47E3B31D32F.idx new file mode 100644 index 0000000..3f9cf52 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.6C99C47E3B31D32F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.1704EF55276F317D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.1704EF55276F317D.idx new file mode 100644 index 0000000..707d8c9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.1704EF55276F317D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.6BBAFCC12F7655F5.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.6BBAFCC12F7655F5.idx new file mode 100644 index 0000000..8757e56 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.6BBAFCC12F7655F5.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.090CEF06F46F3E81.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.090CEF06F46F3E81.idx new file mode 100644 index 0000000..9d8f5fb Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.090CEF06F46F3E81.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.348F1EB6AC585AC8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.348F1EB6AC585AC8.idx new file mode 100644 index 0000000..8a05f04 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.348F1EB6AC585AC8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qplugin.h.5EB2FCB9AB7AE0B0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qplugin.h.5EB2FCB9AB7AE0B0.idx new file mode 100644 index 0000000..d67be9a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qplugin.h.5EB2FCB9AB7AE0B0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpluginloader.h.8B069CC733FBB8F0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpluginloader.h.8B069CC733FBB8F0.idx new file mode 100644 index 0000000..3439f2b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpluginloader.h.8B069CC733FBB8F0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.2C6D602E06FDF080.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.2C6D602E06FDF080.idx new file mode 100644 index 0000000..ddd1d35 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.2C6D602E06FDF080.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointer.h.AC735C8A8209D104.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointer.h.AC735C8A8209D104.idx new file mode 100644 index 0000000..2d0e030 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointer.h.AC735C8A8209D104.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.A23BBC75ACC897AE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.A23BBC75ACC897AE.idx new file mode 100644 index 0000000..2d4a64e Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.A23BBC75ACC897AE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.3EC375EE60BDCB35.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.3EC375EE60BDCB35.idx new file mode 100644 index 0000000..7395154 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.3EC375EE60BDCB35.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.72055C4F8B6BD14D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.72055C4F8B6BD14D.idx new file mode 100644 index 0000000..f98a4de Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.72055C4F8B6BD14D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.02742B52D52CE4BF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.02742B52D52CE4BF.idx new file mode 100644 index 0000000..a364b62 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.02742B52D52CE4BF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.A97BE739D9AEB688.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.A97BE739D9AEB688.idx new file mode 100644 index 0000000..0e47f3d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.A97BE739D9AEB688.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.A41D06C4C35721A5.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.A41D06C4C35721A5.idx new file mode 100644 index 0000000..2649b4a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.A41D06C4C35721A5.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.C98D4E3FFC18AE8F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.C98D4E3FFC18AE8F.idx new file mode 100644 index 0000000..047ee69 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.C98D4E3FFC18AE8F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.3B7722603556A6FE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.3B7722603556A6FE.idx new file mode 100644 index 0000000..be2c643 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.3B7722603556A6FE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BFEC73A14D6B1EDB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BFEC73A14D6B1EDB.idx new file mode 100644 index 0000000..bb167ac Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BFEC73A14D6B1EDB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.0712C65B84F5F4CF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.0712C65B84F5F4CF.idx new file mode 100644 index 0000000..4c5d8af Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.0712C65B84F5F4CF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.CA4C722908859606.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.CA4C722908859606.idx new file mode 100644 index 0000000..b87f96d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.CA4C722908859606.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.5FE9A0A390D5F8D0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.5FE9A0A390D5F8D0.idx new file mode 100644 index 0000000..2c41145 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.5FE9A0A390D5F8D0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.D3636059744C7457.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.D3636059744C7457.idx new file mode 100644 index 0000000..0b6f1d9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.D3636059744C7457.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.81798856425FF491.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.81798856425FF491.idx new file mode 100644 index 0000000..f7ea8fb Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.81798856425FF491.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.054AFB79501FA3DF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.054AFB79501FA3DF.idx new file mode 100644 index 0000000..18cb1ba Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.054AFB79501FA3DF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.A8A921579E6D9D5B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.A8A921579E6D9D5B.idx new file mode 100644 index 0000000..84d24af Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.A8A921579E6D9D5B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.D1602DBBC46E4AF6.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.D1602DBBC46E4AF6.idx new file mode 100644 index 0000000..70d1549 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.D1602DBBC46E4AF6.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspan.h.6D336F82A5825A90.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspan.h.6D336F82A5825A90.idx new file mode 100644 index 0000000..df5fef7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspan.h.6D336F82A5825A90.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.D9AC4094DEC06B10.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.D9AC4094DEC06B10.idx new file mode 100644 index 0000000..d6a6fe6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.D9AC4094DEC06B10.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.80EDAC45F0F5FF5E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.80EDAC45F0F5FF5E.idx new file mode 100644 index 0000000..5e725f1 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.80EDAC45F0F5FF5E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.06895C38D9F79CAA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.06895C38D9F79CAA.idx new file mode 100644 index 0000000..00078f6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.06895C38D9F79CAA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.5A2509BE36B296CB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.5A2509BE36B296CB.idx new file mode 100644 index 0000000..ded0ca9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.5A2509BE36B296CB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.31A674CA4A1EBF3D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.31A674CA4A1EBF3D.idx new file mode 100644 index 0000000..714762d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.31A674CA4A1EBF3D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.5ABAB6D4F7252872.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.5ABAB6D4F7252872.idx new file mode 100644 index 0000000..6b8212d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.5ABAB6D4F7252872.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.B5BA0F9EAC8D787A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.B5BA0F9EAC8D787A.idx new file mode 100644 index 0000000..390d839 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.B5BA0F9EAC8D787A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.236184EE5B37EC75.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.236184EE5B37EC75.idx new file mode 100644 index 0000000..78447c6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.236184EE5B37EC75.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.139856B7260D3650.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.139856B7260D3650.idx new file mode 100644 index 0000000..36a0047 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.139856B7260D3650.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.82B05D85F50B57DE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.82B05D85F50B57DE.idx new file mode 100644 index 0000000..1484cf3 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.82B05D85F50B57DE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.88F7A2F7E7A150C0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.88F7A2F7E7A150C0.idx new file mode 100644 index 0000000..6b83ad9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.88F7A2F7E7A150C0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.C6CC30634BF2DE23.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.C6CC30634BF2DE23.idx new file mode 100644 index 0000000..c895520 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.C6CC30634BF2DE23.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.1DB754040D5DFB28.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.1DB754040D5DFB28.idx new file mode 100644 index 0000000..034e5ef Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.1DB754040D5DFB28.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.28E27933A361C7B9.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.28E27933A361C7B9.idx new file mode 100644 index 0000000..0ce6727 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.28E27933A361C7B9.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.26A5703403E19360.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.26A5703403E19360.idx new file mode 100644 index 0000000..ba5ae81 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.26A5703403E19360.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EAAE3A8253B1E072.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EAAE3A8253B1E072.idx new file mode 100644 index 0000000..54ecde2 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EAAE3A8253B1E072.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.A34790BBDFB0B7FF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.A34790BBDFB0B7FF.idx new file mode 100644 index 0000000..2f1f69b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.A34790BBDFB0B7FF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.FD08BDA2795A7AD8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.FD08BDA2795A7AD8.idx new file mode 100644 index 0000000..6440376 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.FD08BDA2795A7AD8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.3F8C754E3945E3B0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.3F8C754E3945E3B0.idx new file mode 100644 index 0000000..c3e794a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.3F8C754E3945E3B0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.C85358304EF44AEB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.C85358304EF44AEB.idx new file mode 100644 index 0000000..328b129 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.C85358304EF44AEB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.72711CB930E9991C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.72711CB930E9991C.idx new file mode 100644 index 0000000..880f98d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.72711CB930E9991C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationdefinitions.h.AE6587DC590CCC16.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationdefinitions.h.AE6587DC590CCC16.idx new file mode 100644 index 0000000..4644769 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationdefinitions.h.AE6587DC590CCC16.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.6C8AB4CD55E0B702.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.6C8AB4CD55E0B702.idx new file mode 100644 index 0000000..19658f4 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.6C8AB4CD55E0B702.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.3267D44CB3C41E22.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.3267D44CB3C41E22.idx new file mode 100644 index 0000000..598b574 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.3267D44CB3C41E22.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.53EA265FADCFAA83.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.53EA265FADCFAA83.idx new file mode 100644 index 0000000..606f62f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.53EA265FADCFAA83.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.9E3DABC28685F66D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.9E3DABC28685F66D.idx new file mode 100644 index 0000000..1bbf159 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.9E3DABC28685F66D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B625D4E5AB74B129.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B625D4E5AB74B129.idx new file mode 100644 index 0000000..fd22b03 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B625D4E5AB74B129.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.7667007C1E90B615.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.7667007C1E90B615.idx new file mode 100644 index 0000000..c5b518b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.7667007C1E90B615.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimezone.h.593596E791C7F655.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimezone.h.593596E791C7F655.idx new file mode 100644 index 0000000..eec4a33 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtimezone.h.593596E791C7F655.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0C1057B7F3280C34.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0C1057B7F3280C34.idx new file mode 100644 index 0000000..aa8ceac Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0C1057B7F3280C34.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.1B77AD87460A158D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.1B77AD87460A158D.idx new file mode 100644 index 0000000..7618b69 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.1B77AD87460A158D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.1A7B12B6A28DDE9E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.1A7B12B6A28DDE9E.idx new file mode 100644 index 0000000..3116c3c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.1A7B12B6A28DDE9E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.0DCE957EBACC17A8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.0DCE957EBACC17A8.idx new file mode 100644 index 0000000..e845d21 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.0DCE957EBACC17A8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.90E962CC56F524CF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.90E962CC56F524CF.idx new file mode 100644 index 0000000..4eb2eb5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.90E962CC56F524CF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.C37D97D86D7AF984.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.C37D97D86D7AF984.idx new file mode 100644 index 0000000..22fc75f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.C37D97D86D7AF984.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.B157A2B93E8E83C3.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.B157A2B93E8E83C3.idx new file mode 100644 index 0000000..80779ef Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.B157A2B93E8E83C3.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.F6EDA72951BA8721.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.F6EDA72951BA8721.idx new file mode 100644 index 0000000..2d36cd3 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.F6EDA72951BA8721.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.4A0A6E1B3A018AFF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.4A0A6E1B3A018AFF.idx new file mode 100644 index 0000000..4db7400 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.4A0A6E1B3A018AFF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.949587EC675F60CA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.949587EC675F60CA.idx new file mode 100644 index 0000000..0c49c9f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.949587EC675F60CA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.448D8D3A4A8D1E36.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.448D8D3A4A8D1E36.idx new file mode 100644 index 0000000..ffeef6d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.448D8D3A4A8D1E36.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.FD6B3163C4011C1F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.FD6B3163C4011C1F.idx new file mode 100644 index 0000000..ab705e1 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.FD6B3163C4011C1F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.1BE2B6F23F9BA6EA.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.1BE2B6F23F9BA6EA.idx new file mode 100644 index 0000000..7d2a612 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.1BE2B6F23F9BA6EA.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.104CBC91D012C3FB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.104CBC91D012C3FB.idx new file mode 100644 index 0000000..d74385a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.104CBC91D012C3FB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quoted_string.h.7DE93AF3FF8D673C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quoted_string.h.7DE93AF3FF8D673C.idx new file mode 100644 index 0000000..542c189 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quoted_string.h.7DE93AF3FF8D673C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.7A3B0AF242E39946.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.7A3B0AF242E39946.idx new file mode 100644 index 0000000..329967f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.7A3B0AF242E39946.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.0C7F2F0FB46967AC.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.0C7F2F0FB46967AC.idx new file mode 100644 index 0000000..f6bd71e Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.0C7F2F0FB46967AC.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quuid.h.32A9A76D906BB64A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quuid.h.32A9A76D906BB64A.idx new file mode 100644 index 0000000..92bf5c4 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quuid.h.32A9A76D906BB64A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.BFB9C3DF6FEA0D86.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.BFB9C3DF6FEA0D86.idx new file mode 100644 index 0000000..5b58f6c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.BFB9C3DF6FEA0D86.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.F596D280F0BB6817.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.F596D280F0BB6817.idx new file mode 100644 index 0000000..a8a6460 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.F596D280F0BB6817.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.A6212A2629A6B0CE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.A6212A2629A6B0CE.idx new file mode 100644 index 0000000..5afca3a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.A6212A2629A6B0CE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.C2A50D6204DADE8E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.C2A50D6204DADE8E.idx new file mode 100644 index 0000000..c7a260f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.C2A50D6204DADE8E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.365A38A9D1677A10.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.365A38A9D1677A10.idx new file mode 100644 index 0000000..18c62e7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.365A38A9D1677A10.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.D6E5CE2D40924022.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.D6E5CE2D40924022.idx new file mode 100644 index 0000000..66bc53b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.D6E5CE2D40924022.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.D4F501E35A9A33F6.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.D4F501E35A9A33F6.idx new file mode 100644 index 0000000..370baaf Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.D4F501E35A9A33F6.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.4733286DC454B283.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.4733286DC454B283.idx new file mode 100644 index 0000000..cf3adac Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.4733286DC454B283.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.92AE8F1A01995227.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.92AE8F1A01995227.idx new file mode 100644 index 0000000..17e9c30 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.92AE8F1A01995227.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.5787628C48CC76FF.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.5787628C48CC76FF.idx new file mode 100644 index 0000000..ceb90b1 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.5787628C48CC76FF.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.E59F53E7397F84C0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.E59F53E7397F84C0.idx new file mode 100644 index 0000000..317a02f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.E59F53E7397F84C0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/requires_hosted.h.B3A773D766F336EE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/requires_hosted.h.B3A773D766F336EE.idx new file mode 100644 index 0000000..0a00f54 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/requires_hosted.h.B3A773D766F336EE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.1D2218925356AF59.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.1D2218925356AF59.idx new file mode 100644 index 0000000..de05a88 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.1D2218925356AF59.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.5F747AD519B4B50B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.5F747AD519B4B50B.idx new file mode 100644 index 0000000..171fdc8 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.5F747AD519B4B50B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.BC369C5ED073BC62.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.BC369C5ED073BC62.idx new file mode 100644 index 0000000..cd62c4f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.BC369C5ED073BC62.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.686BEF03E133F064.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.686BEF03E133F064.idx new file mode 100644 index 0000000..de2baca Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.686BEF03E133F064.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.318DCCEC1230A527.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.318DCCEC1230A527.idx new file mode 100644 index 0000000..859aab2 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.318DCCEC1230A527.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.E10AAD67EC430C58.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.E10AAD67EC430C58.idx new file mode 100644 index 0000000..3a33dcc Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.E10AAD67EC430C58.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.39F7F74D54E48BBB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.39F7F74D54E48BBB.idx new file mode 100644 index 0000000..ad50abe Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.39F7F74D54E48BBB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.317E493A756416A4.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.317E493A756416A4.idx new file mode 100644 index 0000000..5a649b6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.317E493A756416A4.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.tcc.BA232CD269450A45.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.tcc.BA232CD269450A45.idx new file mode 100644 index 0000000..622a5dc Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/sstream.tcc.BA232CD269450A45.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.B59E4D7EC95983AC.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.B59E4D7EC95983AC.idx new file mode 100644 index 0000000..27d8fd5 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.B59E4D7EC95983AC.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.C9F958FB53C9DDEB.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.C9F958FB53C9DDEB.idx new file mode 100644 index 0000000..c043e0e Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.C9F958FB53C9DDEB.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.9A02EFE2BFC9F7C0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.9A02EFE2BFC9F7C0.idx new file mode 100644 index 0000000..b20b251 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.9A02EFE2BFC9F7C0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.58C723B7490FDC9B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.58C723B7490FDC9B.idx new file mode 100644 index 0000000..76005d6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.58C723B7490FDC9B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.488A7E228F35CE08.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.488A7E228F35CE08.idx new file mode 100644 index 0000000..cbfabd9 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.488A7E228F35CE08.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.9B994323DBC6FB43.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.9B994323DBC6FB43.idx new file mode 100644 index 0000000..e2b162b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.9B994323DBC6FB43.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.B178FA6FFE54A376.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.B178FA6FFE54A376.idx new file mode 100644 index 0000000..9ef7d0f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.B178FA6FFE54A376.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.FC6439B7BF2F5648.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.FC6439B7BF2F5648.idx new file mode 100644 index 0000000..aaa2da7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.FC6439B7BF2F5648.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.00C3287D615C7C3C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.00C3287D615C7C3C.idx new file mode 100644 index 0000000..e3557f7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.00C3287D615C7C3C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.E0917B076884990B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.E0917B076884990B.idx new file mode 100644 index 0000000..da55551 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.E0917B076884990B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.0B596607CAC70D73.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.0B596607CAC70D73.idx new file mode 100644 index 0000000..5a7e1f7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.0B596607CAC70D73.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.6AFBC033B64CCF07.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.6AFBC033B64CCF07.idx new file mode 100644 index 0000000..92bc2cc Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.6AFBC033B64CCF07.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.6ADA891E94E89635.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.6ADA891E94E89635.idx new file mode 100644 index 0000000..63a75fb Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.6ADA891E94E89635.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.83BDFFCDECE59B41.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.83BDFFCDECE59B41.idx new file mode 100644 index 0000000..209585c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.83BDFFCDECE59B41.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AFD3600C2063B483.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AFD3600C2063B483.idx new file mode 100644 index 0000000..0ea239c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AFD3600C2063B483.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.885F25CA530E3A77.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.885F25CA530E3A77.idx new file mode 100644 index 0000000..aa54242 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.885F25CA530E3A77.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.51285E445E84487F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.51285E445E84487F.idx new file mode 100644 index 0000000..8fee27a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.51285E445E84487F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.B41C9B39159E520D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.B41C9B39159E520D.idx new file mode 100644 index 0000000..f21cee4 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.B41C9B39159E520D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.54068F013EA45335.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.54068F013EA45335.idx new file mode 100644 index 0000000..0b15f36 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.54068F013EA45335.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.D24DD7EFA2C64E4E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.D24DD7EFA2C64E4E.idx new file mode 100644 index 0000000..9067183 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.D24DD7EFA2C64E4E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.C0E9F33CE7539A7B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.C0E9F33CE7539A7B.idx new file mode 100644 index 0000000..173b375 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.C0E9F33CE7539A7B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.8CAA236A886A07FE.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.8CAA236A886A07FE.idx new file mode 100644 index 0000000..1516e38 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.8CAA236A886A07FE.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.1A518E94EEA8726D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.1A518E94EEA8726D.idx new file mode 100644 index 0000000..92cda6b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.1A518E94EEA8726D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.D7FC128CA5C4E962.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.D7FC128CA5C4E962.idx new file mode 100644 index 0000000..68c366e Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.D7FC128CA5C4E962.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.C15779483C7B562B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.C15779483C7B562B.idx new file mode 100644 index 0000000..86376c4 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.C15779483C7B562B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.7D583E923EF43124.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.7D583E923EF43124.idx new file mode 100644 index 0000000..9f6e4ce Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.7D583E923EF43124.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.D044FA60BD63A09A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.D044FA60BD63A09A.idx new file mode 100644 index 0000000..460af50 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.D044FA60BD63A09A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.A9B3D367431D3623.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.A9B3D367431D3623.idx new file mode 100644 index 0000000..d284bd1 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.A9B3D367431D3623.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.C6AFE899E8B6C12C.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.C6AFE899E8B6C12C.idx new file mode 100644 index 0000000..9a1c03b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.C6AFE899E8B6C12C.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.C5F17FE1B1407367.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.C5F17FE1B1407367.idx new file mode 100644 index 0000000..df908bf Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.C5F17FE1B1407367.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.C97349FB64063F3A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.C97349FB64063F3A.idx new file mode 100644 index 0000000..2bbdcb1 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.C97349FB64063F3A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.A0E7A276BCAED677.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.A0E7A276BCAED677.idx new file mode 100644 index 0000000..2f36432 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.A0E7A276BCAED677.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.20B4E1B133BD5142.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.20B4E1B133BD5142.idx new file mode 100644 index 0000000..be59bbd Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.20B4E1B133BD5142.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.A44D2DB4828F5114.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.A44D2DB4828F5114.idx new file mode 100644 index 0000000..9fec65b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.A44D2DB4828F5114.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.92ECDEE05F309D98.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.92ECDEE05F309D98.idx new file mode 100644 index 0000000..237ac4c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.92ECDEE05F309D98.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.4FEFFC07A4E66121.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.4FEFFC07A4E66121.idx new file mode 100644 index 0000000..f8a7208 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.4FEFFC07A4E66121.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.D5902559B3B3032D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.D5902559B3B3032D.idx new file mode 100644 index 0000000..18784ed Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.D5902559B3B3032D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.54007C9D03AF9D28.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.54007C9D03AF9D28.idx new file mode 100644 index 0000000..667a071 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.54007C9D03AF9D28.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.E5368193EB4C3796.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.E5368193EB4C3796.idx new file mode 100644 index 0000000..dc1efbf Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.E5368193EB4C3796.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.62BDBE242C7E962F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.62BDBE242C7E962F.idx new file mode 100644 index 0000000..c3f0337 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.62BDBE242C7E962F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.D70A01580E3EF201.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.D70A01580E3EF201.idx new file mode 100644 index 0000000..6222550 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.D70A01580E3EF201.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.C028ECF105F19EA7.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.C028ECF105F19EA7.idx new file mode 100644 index 0000000..d085dc6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.C028ECF105F19EA7.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.02A8D4C24377CF53.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.02A8D4C24377CF53.idx new file mode 100644 index 0000000..64c0e24 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.02A8D4C24377CF53.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.1D460EA342DBE04D.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.1D460EA342DBE04D.idx new file mode 100644 index 0000000..3e986e4 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.1D460EA342DBE04D.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.7F40120112BCA7AD.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.7F40120112BCA7AD.idx new file mode 100644 index 0000000..e36bef8 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.7F40120112BCA7AD.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.875D642C0148A94F.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.875D642C0148A94F.idx new file mode 100644 index 0000000..f0cd7fd Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.875D642C0148A94F.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.724DF011BB330EF7.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.724DF011BB330EF7.idx new file mode 100644 index 0000000..99c5b0d Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.724DF011BB330EF7.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time_members.h.B9E5550B5FC3A55E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time_members.h.B9E5550B5FC3A55E.idx new file mode 100644 index 0000000..e87eccf Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time_members.h.B9E5550B5FC3A55E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.DF67834746399554.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.DF67834746399554.idx new file mode 100644 index 0000000..bdd8732 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.DF67834746399554.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.2920031896084516.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.2920031896084516.idx new file mode 100644 index 0000000..bc31fe7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.2920031896084516.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.9AEF752A3C62AE6B.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.9AEF752A3C62AE6B.idx new file mode 100644 index 0000000..0b5b031 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.9AEF752A3C62AE6B.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.50D0C9D5F0D2CB68.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.50D0C9D5F0D2CB68.idx new file mode 100644 index 0000000..37b22e6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.50D0C9D5F0D2CB68.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.A04FE3FE02787689.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.A04FE3FE02787689.idx new file mode 100644 index 0000000..711040c Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.A04FE3FE02787689.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.811C3604E4D04429.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.811C3604E4D04429.idx new file mode 100644 index 0000000..afa2ed7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.811C3604E4D04429.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.7CEC2F421DD32CD5.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.7CEC2F421DD32CD5.idx new file mode 100644 index 0000000..c3a9976 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.7CEC2F421DD32CD5.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.123388CFB189BFD1.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.123388CFB189BFD1.idx new file mode 100644 index 0000000..b71b651 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.123388CFB189BFD1.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.E4C8F50B24DE044E.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.E4C8F50B24DE044E.idx new file mode 100644 index 0000000..17ee4b0 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.E4C8F50B24DE044E.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.204832C65F3C994A.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.204832C65F3C994A.idx new file mode 100644 index 0000000..cab9e2b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.204832C65F3C994A.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.1B1E72626F8610FD.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.1B1E72626F8610FD.idx new file mode 100644 index 0000000..185e587 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.1B1E72626F8610FD.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.E10432212A77F203.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.E10432212A77F203.idx new file mode 100644 index 0000000..ec2ec94 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.E10432212A77F203.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.C934EFC91FF706A8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.C934EFC91FF706A8.idx new file mode 100644 index 0000000..86fc1d3 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.C934EFC91FF706A8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.08192F6BD1017D43.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.08192F6BD1017D43.idx new file mode 100644 index 0000000..83c7a73 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.08192F6BD1017D43.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.h.D7BF09B530AD0BC5.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.h.D7BF09B530AD0BC5.idx new file mode 100644 index 0000000..52820b0 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.h.D7BF09B530AD0BC5.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.1689146E01EF1909.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.1689146E01EF1909.idx new file mode 100644 index 0000000..9e4b154 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.1689146E01EF1909.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.C6151C7F15298086.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.C6151C7F15298086.idx new file mode 100644 index 0000000..8e1e3b6 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.C6151C7F15298086.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.C138F4EA17E13377.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.C138F4EA17E13377.idx new file mode 100644 index 0000000..4e0b494 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.C138F4EA17E13377.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.7042D592D3999043.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.7042D592D3999043.idx new file mode 100644 index 0000000..bc84408 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.7042D592D3999043.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.2801D3DC0C7F6E99.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.2801D3DC0C7F6E99.idx new file mode 100644 index 0000000..39ee2e7 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.2801D3DC0C7F6E99.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.796217028ADCB0F8.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.796217028ADCB0F8.idx new file mode 100644 index 0000000..4487112 Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.796217028ADCB0F8.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.50F5BE55A4A30485.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.50F5BE55A4A30485.idx new file mode 100644 index 0000000..3c4985b Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.50F5BE55A4A30485.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.CEB12EF941C1E7F0.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.CEB12EF941C1E7F0.idx new file mode 100644 index 0000000..2d91caf Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.CEB12EF941C1E7F0.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wctype.h.CE2B70DF5B02B0A3.idx b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wctype.h.CE2B70DF5B02B0A3.idx new file mode 100644 index 0000000..1adaeac Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wctype.h.CE2B70DF5B02B0A3.idx differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeCache.txt b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeCache.txt new file mode 100644 index 0000000..3c7e5c5 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeCache.txt @@ -0,0 +1,1311 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug +# It was generated by CMake: C:/dev/Qt/Tools/CMake_64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Debug + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=1 + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//No help, variable specified on the command line. +CMAKE_CXX_FLAGS_INIT:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +CMAKE_CXX_OUTPUT_EXTENSION:STRING=.obj + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//No help, variable specified on the command line. +CMAKE_C_COMPILER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc.exe + +CMAKE_C_OUTPUT_EXTENSION:STRING= + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/dlltool.exe + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/pkgRedirects + +//No help, variable specified on the command line. +CMAKE_GENERATOR:STRING=Ninja + +//Convert GNU import libraries to MS format (requires Visual Studio) +CMAKE_GNUtoMS:BOOL=OFF + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/fontManager + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/dev/Qt/Tools/Ninja/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe + +//No help, variable specified on the command line. +CMAKE_PREFIX_PATH:PATH=C:/dev/Qt/6.8.0/mingw_64 + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//No help, variable specified on the command line. +CMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=fontManager + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe + +//Flags for Windows Resource Compiler during all build types. +CMAKE_RC_FLAGS:STRING= + +//Flags for Windows Resource Compiler during DEBUG builds. +CMAKE_RC_FLAGS_DEBUG:STRING= + +//Flags for Windows Resource Compiler during MINSIZEREL builds. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during RELEASE builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Additional directories where find(Qt6 ...) host Qt components +// are searched +QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH:STRING= + +//Additional directories where find(Qt6 ...) components are searched +QT_ADDITIONAL_PACKAGES_PREFIX_PATH:STRING= + +//Skip Qt Creator's package manager auto-setup +QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP:BOOL=OFF + +//The directory containing a CMake configuration file for QT. +QT_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6 + +//No help, variable specified on the command line. +QT_QMAKE_EXECUTABLE:FILEPATH=C:/dev/Qt/6.8.0/mingw_64/bin/qmake.exe + +//The directory containing a CMake configuration file for Qt6CoreTools. +Qt6CoreTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools + +//The directory containing a CMake configuration file for Qt6Core. +Qt6Core_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core + +//The directory containing a CMake configuration file for Qt6EntryPointPrivate. +Qt6EntryPointPrivate_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate + +//The directory containing a CMake configuration file for Qt6GuiTools. +Qt6GuiTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools + +//The directory containing a CMake configuration file for Qt6Gui. +Qt6Gui_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui + +//The directory containing a CMake configuration file for Qt6WidgetsTools. +Qt6WidgetsTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools + +//The directory containing a CMake configuration file for Qt6Widgets. +Qt6Widgets_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets + +//The directory containing a CMake configuration file for Qt6ZlibPrivate. +Qt6ZlibPrivate_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate + +//The directory containing a CMake configuration file for Qt6. +Qt6_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6 + +//Path to a program. +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE:FILEPATH=Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND + +//Path to a program. +Vulkan_GLSLC_EXECUTABLE:FILEPATH=Vulkan_GLSLC_EXECUTABLE-NOTFOUND + +//Path to a file. +Vulkan_INCLUDE_DIR:PATH=Vulkan_INCLUDE_DIR-NOTFOUND + +//Path to a library. +Vulkan_LIBRARY:FILEPATH=Vulkan_LIBRARY-NOTFOUND + +//Path to a program. +WINDEPLOYQT_EXECUTABLE:FILEPATH=C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe + +//Value Computed by CMake +fontManager_BINARY_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug + +//Value Computed by CMake +fontManager_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +fontManager_SOURCE_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/app + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=29 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/herwi/Documents/GitHub/qt/fontManager/app +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/dev/Qt/Tools/CMake_64/share/cmake-3.29 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//Details about finding WrapAtomic +FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic:INTERNAL=[1][v()] +//Test HAVE_STDATOMIC +HAVE_STDATOMIC:INTERNAL=1 +//Qt feature: abstractbutton (from target Qt6::Widgets) +QT_FEATURE_abstractbutton:INTERNAL=ON +//Qt feature: abstractslider (from target Qt6::Widgets) +QT_FEATURE_abstractslider:INTERNAL=ON +//Qt feature: accessibility (from target Qt6::Gui) +QT_FEATURE_accessibility:INTERNAL=ON +//Qt feature: accessibility_atspi_bridge (from target Qt6::Gui) +QT_FEATURE_accessibility_atspi_bridge:INTERNAL=OFF +//Qt feature: action (from target Qt6::Gui) +QT_FEATURE_action:INTERNAL=ON +//Qt feature: aesni (from target Qt6::Core) +QT_FEATURE_aesni:INTERNAL=ON +//Qt feature: alloca (from target Qt6::Core) +QT_FEATURE_alloca:INTERNAL=ON +//Qt feature: alloca_h (from target Qt6::Core) +QT_FEATURE_alloca_h:INTERNAL=OFF +//Qt feature: alloca_malloc_h (from target Qt6::Core) +QT_FEATURE_alloca_malloc_h:INTERNAL=ON +//Qt feature: android_style_assets (from target Qt6::Core) +QT_FEATURE_android_style_assets:INTERNAL=OFF +//Qt feature: animation (from target Qt6::Core) +QT_FEATURE_animation:INTERNAL=ON +//Qt feature: appstore_compliant (from target Qt6::Core) +QT_FEATURE_appstore_compliant:INTERNAL=OFF +//Qt feature: arm_crc32 (from target Qt6::Core) +QT_FEATURE_arm_crc32:INTERNAL=OFF +//Qt feature: arm_crypto (from target Qt6::Core) +QT_FEATURE_arm_crypto:INTERNAL=OFF +//Qt feature: avx (from target Qt6::Core) +QT_FEATURE_avx:INTERNAL=ON +//Qt feature: avx2 (from target Qt6::Core) +QT_FEATURE_avx2:INTERNAL=ON +//Qt feature: avx512bw (from target Qt6::Core) +QT_FEATURE_avx512bw:INTERNAL=ON +//Qt feature: avx512cd (from target Qt6::Core) +QT_FEATURE_avx512cd:INTERNAL=ON +//Qt feature: avx512dq (from target Qt6::Core) +QT_FEATURE_avx512dq:INTERNAL=ON +//Qt feature: avx512er (from target Qt6::Core) +QT_FEATURE_avx512er:INTERNAL=ON +//Qt feature: avx512f (from target Qt6::Core) +QT_FEATURE_avx512f:INTERNAL=ON +//Qt feature: avx512ifma (from target Qt6::Core) +QT_FEATURE_avx512ifma:INTERNAL=ON +//Qt feature: avx512pf (from target Qt6::Core) +QT_FEATURE_avx512pf:INTERNAL=ON +//Qt feature: avx512vbmi (from target Qt6::Core) +QT_FEATURE_avx512vbmi:INTERNAL=ON +//Qt feature: avx512vbmi2 (from target Qt6::Core) +QT_FEATURE_avx512vbmi2:INTERNAL=ON +//Qt feature: avx512vl (from target Qt6::Core) +QT_FEATURE_avx512vl:INTERNAL=ON +//Qt feature: backtrace (from target Qt6::Core) +QT_FEATURE_backtrace:INTERNAL=OFF +//Qt feature: buttongroup (from target Qt6::Widgets) +QT_FEATURE_buttongroup:INTERNAL=ON +//Qt feature: calendarwidget (from target Qt6::Widgets) +QT_FEATURE_calendarwidget:INTERNAL=ON +//Qt feature: cborstreamreader (from target Qt6::Core) +QT_FEATURE_cborstreamreader:INTERNAL=ON +//Qt feature: cborstreamwriter (from target Qt6::Core) +QT_FEATURE_cborstreamwriter:INTERNAL=ON +//Qt feature: checkbox (from target Qt6::Widgets) +QT_FEATURE_checkbox:INTERNAL=ON +//Qt feature: clipboard (from target Qt6::Gui) +QT_FEATURE_clipboard:INTERNAL=ON +//Qt feature: clock_gettime (from target Qt6::Core) +QT_FEATURE_clock_gettime:INTERNAL=OFF +//Qt feature: clock_monotonic (from target Qt6::Core) +QT_FEATURE_clock_monotonic:INTERNAL=OFF +//Qt feature: close_range (from target Qt6::Core) +QT_FEATURE_close_range:INTERNAL=OFF +//Qt feature: colordialog (from target Qt6::Widgets) +QT_FEATURE_colordialog:INTERNAL=ON +//Qt feature: colornames (from target Qt6::Gui) +QT_FEATURE_colornames:INTERNAL=ON +//Qt feature: columnview (from target Qt6::Widgets) +QT_FEATURE_columnview:INTERNAL=ON +//Qt feature: combobox (from target Qt6::Widgets) +QT_FEATURE_combobox:INTERNAL=ON +//Qt feature: commandlineparser (from target Qt6::Core) +QT_FEATURE_commandlineparser:INTERNAL=ON +//Qt feature: commandlinkbutton (from target Qt6::Widgets) +QT_FEATURE_commandlinkbutton:INTERNAL=ON +//Qt feature: completer (from target Qt6::Widgets) +QT_FEATURE_completer:INTERNAL=ON +//Qt feature: concatenatetablesproxymodel (from target Qt6::Core) +QT_FEATURE_concatenatetablesproxymodel:INTERNAL=ON +//Qt feature: concurrent (from target Qt6::Core) +QT_FEATURE_concurrent:INTERNAL=ON +//Qt feature: contextmenu (from target Qt6::Widgets) +QT_FEATURE_contextmenu:INTERNAL=ON +//Qt feature: cpp_winrt (from target Qt6::Core) +QT_FEATURE_cpp_winrt:INTERNAL=OFF +//Qt feature: cross_compile (from target Qt6::Core) +QT_FEATURE_cross_compile:INTERNAL=OFF +//Qt feature: cssparser (from target Qt6::Gui) +QT_FEATURE_cssparser:INTERNAL=ON +//Qt feature: ctf (from target Qt6::Core) +QT_FEATURE_ctf:INTERNAL=OFF +//Qt feature: cursor (from target Qt6::Gui) +QT_FEATURE_cursor:INTERNAL=ON +//Qt feature: cxx11_future (from target Qt6::Core) +QT_FEATURE_cxx11_future:INTERNAL=ON +//Qt feature: cxx17_filesystem (from target Qt6::Core) +QT_FEATURE_cxx17_filesystem:INTERNAL=ON +//Qt feature: cxx20 (from target Qt6::Core) +QT_FEATURE_cxx20:INTERNAL=OFF +//Qt feature: cxx23_stacktrace (from target Qt6::Core) +QT_FEATURE_cxx23_stacktrace:INTERNAL=OFF +//Qt feature: cxx2a (from target Qt6::Core) +QT_FEATURE_cxx2a:INTERNAL=OFF +//Qt feature: cxx2b (from target Qt6::Core) +QT_FEATURE_cxx2b:INTERNAL=OFF +//Qt feature: datawidgetmapper (from target Qt6::Widgets) +QT_FEATURE_datawidgetmapper:INTERNAL=ON +//Qt feature: datestring (from target Qt6::Core) +QT_FEATURE_datestring:INTERNAL=ON +//Qt feature: datetimeedit (from target Qt6::Widgets) +QT_FEATURE_datetimeedit:INTERNAL=ON +//Qt feature: datetimeparser (from target Qt6::Core) +QT_FEATURE_datetimeparser:INTERNAL=ON +//Qt feature: dbus (from target Qt6::Core) +QT_FEATURE_dbus:INTERNAL=ON +//Qt feature: dbus_linked (from target Qt6::Core) +QT_FEATURE_dbus_linked:INTERNAL=OFF +//Qt feature: debug (from target Qt6::Core) +QT_FEATURE_debug:INTERNAL=OFF +//Qt feature: debug_and_release (from target Qt6::Core) +QT_FEATURE_debug_and_release:INTERNAL=OFF +//Qt feature: desktopservices (from target Qt6::Gui) +QT_FEATURE_desktopservices:INTERNAL=ON +//Qt feature: developer_build (from target Qt6::Core) +QT_FEATURE_developer_build:INTERNAL=OFF +//Qt feature: dial (from target Qt6::Widgets) +QT_FEATURE_dial:INTERNAL=ON +//Qt feature: dialog (from target Qt6::Widgets) +QT_FEATURE_dialog:INTERNAL=ON +//Qt feature: dialogbuttonbox (from target Qt6::Widgets) +QT_FEATURE_dialogbuttonbox:INTERNAL=ON +//Qt feature: direct2d (from target Qt6::Gui) +QT_FEATURE_direct2d:INTERNAL=ON +//Qt feature: direct2d1_1 (from target Qt6::Gui) +QT_FEATURE_direct2d1_1:INTERNAL=ON +//Qt feature: directfb (from target Qt6::Gui) +QT_FEATURE_directfb:INTERNAL=OFF +//Qt feature: directwrite (from target Qt6::Gui) +QT_FEATURE_directwrite:INTERNAL=ON +//Qt feature: directwrite3 (from target Qt6::Gui) +QT_FEATURE_directwrite3:INTERNAL=ON +//Qt feature: dladdr (from target Qt6::Core) +QT_FEATURE_dladdr:INTERNAL=OFF +//Qt feature: dlopen (from target Qt6::Core) +QT_FEATURE_dlopen:INTERNAL=OFF +//Qt feature: dockwidget (from target Qt6::Widgets) +QT_FEATURE_dockwidget:INTERNAL=ON +//Qt feature: doubleconversion (from target Qt6::Core) +QT_FEATURE_doubleconversion:INTERNAL=ON +//Qt feature: draganddrop (from target Qt6::Gui) +QT_FEATURE_draganddrop:INTERNAL=ON +//Qt feature: drm_atomic (from target Qt6::Gui) +QT_FEATURE_drm_atomic:INTERNAL=OFF +//Qt feature: dynamicgl (from target Qt6::Gui) +QT_FEATURE_dynamicgl:INTERNAL=ON +//Qt feature: easingcurve (from target Qt6::Core) +QT_FEATURE_easingcurve:INTERNAL=ON +//Qt feature: effects (from target Qt6::Widgets) +QT_FEATURE_effects:INTERNAL=ON +//Qt feature: egl (from target Qt6::Gui) +QT_FEATURE_egl:INTERNAL=OFF +//Qt feature: egl_x11 (from target Qt6::Gui) +QT_FEATURE_egl_x11:INTERNAL=OFF +//Qt feature: eglfs (from target Qt6::Gui) +QT_FEATURE_eglfs:INTERNAL=OFF +//Qt feature: eglfs_brcm (from target Qt6::Gui) +QT_FEATURE_eglfs_brcm:INTERNAL=OFF +//Qt feature: eglfs_egldevice (from target Qt6::Gui) +QT_FEATURE_eglfs_egldevice:INTERNAL=OFF +//Qt feature: eglfs_gbm (from target Qt6::Gui) +QT_FEATURE_eglfs_gbm:INTERNAL=OFF +//Qt feature: eglfs_mali (from target Qt6::Gui) +QT_FEATURE_eglfs_mali:INTERNAL=OFF +//Qt feature: eglfs_openwfd (from target Qt6::Gui) +QT_FEATURE_eglfs_openwfd:INTERNAL=OFF +//Qt feature: eglfs_rcar (from target Qt6::Gui) +QT_FEATURE_eglfs_rcar:INTERNAL=OFF +//Qt feature: eglfs_viv (from target Qt6::Gui) +QT_FEATURE_eglfs_viv:INTERNAL=OFF +//Qt feature: eglfs_viv_wl (from target Qt6::Gui) +QT_FEATURE_eglfs_viv_wl:INTERNAL=OFF +//Qt feature: eglfs_vsp2 (from target Qt6::Gui) +QT_FEATURE_eglfs_vsp2:INTERNAL=OFF +//Qt feature: eglfs_x11 (from target Qt6::Gui) +QT_FEATURE_eglfs_x11:INTERNAL=OFF +//Qt feature: elf_private_full_version (from target Qt6::Core) +QT_FEATURE_elf_private_full_version:INTERNAL=OFF +//Qt feature: errormessage (from target Qt6::Widgets) +QT_FEATURE_errormessage:INTERNAL=ON +//Qt feature: etw (from target Qt6::Core) +QT_FEATURE_etw:INTERNAL=OFF +//Qt feature: evdev (from target Qt6::Gui) +QT_FEATURE_evdev:INTERNAL=OFF +//Qt feature: f16c (from target Qt6::Core) +QT_FEATURE_f16c:INTERNAL=ON +//Qt feature: filedialog (from target Qt6::Widgets) +QT_FEATURE_filedialog:INTERNAL=ON +//Qt feature: filesystemiterator (from target Qt6::Core) +QT_FEATURE_filesystemiterator:INTERNAL=ON +//Qt feature: filesystemmodel (from target Qt6::Gui) +QT_FEATURE_filesystemmodel:INTERNAL=ON +//Qt feature: filesystemwatcher (from target Qt6::Core) +QT_FEATURE_filesystemwatcher:INTERNAL=ON +//Qt feature: fontcombobox (from target Qt6::Widgets) +QT_FEATURE_fontcombobox:INTERNAL=ON +//Qt feature: fontconfig (from target Qt6::Gui) +QT_FEATURE_fontconfig:INTERNAL=OFF +//Qt feature: fontdialog (from target Qt6::Widgets) +QT_FEATURE_fontdialog:INTERNAL=ON +//Qt feature: force_asserts (from target Qt6::Core) +QT_FEATURE_force_asserts:INTERNAL=OFF +//Qt feature: force_debug_info (from target Qt6::Core) +QT_FEATURE_force_debug_info:INTERNAL=ON +//Qt feature: forkfd_pidfd (from target Qt6::Core) +QT_FEATURE_forkfd_pidfd:INTERNAL=OFF +//Qt feature: formlayout (from target Qt6::Widgets) +QT_FEATURE_formlayout:INTERNAL=ON +//Qt feature: framework (from target Qt6::Core) +QT_FEATURE_framework:INTERNAL=OFF +//Qt feature: freetype (from target Qt6::Gui) +QT_FEATURE_freetype:INTERNAL=ON +//Qt feature: fscompleter (from target Qt6::Widgets) +QT_FEATURE_fscompleter:INTERNAL=ON +//Qt feature: futimens (from target Qt6::Core) +QT_FEATURE_futimens:INTERNAL=OFF +//Qt feature: future (from target Qt6::Core) +QT_FEATURE_future:INTERNAL=ON +//Qt feature: gc_binaries (from target Qt6::Core) +QT_FEATURE_gc_binaries:INTERNAL=OFF +//Qt feature: gestures (from target Qt6::Core) +QT_FEATURE_gestures:INTERNAL=ON +//Qt feature: getauxval (from target Qt6::Core) +QT_FEATURE_getauxval:INTERNAL=OFF +//Qt feature: getentropy (from target Qt6::Core) +QT_FEATURE_getentropy:INTERNAL=OFF +//Qt feature: gif (from target Qt6::Gui) +QT_FEATURE_gif:INTERNAL=ON +//Qt feature: glib (from target Qt6::Core) +QT_FEATURE_glib:INTERNAL=OFF +//Qt feature: glibc_fortify_source (from target Qt6::Core) +QT_FEATURE_glibc_fortify_source:INTERNAL=OFF +//Qt feature: graphicseffect (from target Qt6::Widgets) +QT_FEATURE_graphicseffect:INTERNAL=ON +//Qt feature: graphicsframecapture (from target Qt6::Gui) +QT_FEATURE_graphicsframecapture:INTERNAL=OFF +//Qt feature: graphicsview (from target Qt6::Widgets) +QT_FEATURE_graphicsview:INTERNAL=ON +//Qt feature: groupbox (from target Qt6::Widgets) +QT_FEATURE_groupbox:INTERNAL=ON +//Qt feature: gtk3 (from target Qt6::Widgets) +QT_FEATURE_gtk3:INTERNAL=OFF +//Qt feature: gui (from target Qt6::Core) +QT_FEATURE_gui:INTERNAL=ON +//Qt feature: harfbuzz (from target Qt6::Gui) +QT_FEATURE_harfbuzz:INTERNAL=ON +//Qt feature: highdpiscaling (from target Qt6::Gui) +QT_FEATURE_highdpiscaling:INTERNAL=ON +//Qt feature: hijricalendar (from target Qt6::Core) +QT_FEATURE_hijricalendar:INTERNAL=ON +//Qt feature: ico (from target Qt6::Gui) +QT_FEATURE_ico:INTERNAL=ON +//Qt feature: icu (from target Qt6::Core) +QT_FEATURE_icu:INTERNAL=OFF +//Qt feature: identityproxymodel (from target Qt6::Core) +QT_FEATURE_identityproxymodel:INTERNAL=ON +//Qt feature: im (from target Qt6::Gui) +QT_FEATURE_im:INTERNAL=ON +//Qt feature: image_heuristic_mask (from target Qt6::Gui) +QT_FEATURE_image_heuristic_mask:INTERNAL=ON +//Qt feature: image_text (from target Qt6::Gui) +QT_FEATURE_image_text:INTERNAL=ON +//Qt feature: imageformat_bmp (from target Qt6::Gui) +QT_FEATURE_imageformat_bmp:INTERNAL=ON +//Qt feature: imageformat_jpeg (from target Qt6::Gui) +QT_FEATURE_imageformat_jpeg:INTERNAL=ON +//Qt feature: imageformat_png (from target Qt6::Gui) +QT_FEATURE_imageformat_png:INTERNAL=ON +//Qt feature: imageformat_ppm (from target Qt6::Gui) +QT_FEATURE_imageformat_ppm:INTERNAL=ON +//Qt feature: imageformat_xbm (from target Qt6::Gui) +QT_FEATURE_imageformat_xbm:INTERNAL=ON +//Qt feature: imageformat_xpm (from target Qt6::Gui) +QT_FEATURE_imageformat_xpm:INTERNAL=ON +//Qt feature: imageformatplugin (from target Qt6::Gui) +QT_FEATURE_imageformatplugin:INTERNAL=ON +//Qt feature: imageio_text_loading (from target Qt6::Gui) +QT_FEATURE_imageio_text_loading:INTERNAL=ON +//Qt feature: inotify (from target Qt6::Core) +QT_FEATURE_inotify:INTERNAL=OFF +//Qt feature: inputdialog (from target Qt6::Widgets) +QT_FEATURE_inputdialog:INTERNAL=ON +//Qt feature: integrityfb (from target Qt6::Gui) +QT_FEATURE_integrityfb:INTERNAL=OFF +//Qt feature: integrityhid (from target Qt6::Gui) +QT_FEATURE_integrityhid:INTERNAL=OFF +//Qt feature: intelcet (from target Qt6::Core) +QT_FEATURE_intelcet:INTERNAL=ON +//Qt feature: islamiccivilcalendar (from target Qt6::Core) +QT_FEATURE_islamiccivilcalendar:INTERNAL=ON +//Qt feature: itemmodel (from target Qt6::Core) +QT_FEATURE_itemmodel:INTERNAL=ON +//Qt feature: itemviews (from target Qt6::Widgets) +QT_FEATURE_itemviews:INTERNAL=ON +//Qt feature: jalalicalendar (from target Qt6::Core) +QT_FEATURE_jalalicalendar:INTERNAL=ON +//Qt feature: journald (from target Qt6::Core) +QT_FEATURE_journald:INTERNAL=OFF +//Qt feature: jpeg (from target Qt6::Gui) +QT_FEATURE_jpeg:INTERNAL=ON +//Qt feature: keysequenceedit (from target Qt6::Widgets) +QT_FEATURE_keysequenceedit:INTERNAL=ON +//Qt feature: kms (from target Qt6::Gui) +QT_FEATURE_kms:INTERNAL=OFF +//Qt feature: label (from target Qt6::Widgets) +QT_FEATURE_label:INTERNAL=ON +//Qt feature: largefile (from target Qt6::Core) +QT_FEATURE_largefile:INTERNAL=ON +//Qt feature: lcdnumber (from target Qt6::Widgets) +QT_FEATURE_lcdnumber:INTERNAL=ON +//Qt feature: libcpp_hardening (from target Qt6::Core) +QT_FEATURE_libcpp_hardening:INTERNAL=OFF +//Qt feature: libinput (from target Qt6::Gui) +QT_FEATURE_libinput:INTERNAL=OFF +//Qt feature: libinput_axis_api (from target Qt6::Gui) +QT_FEATURE_libinput_axis_api:INTERNAL=OFF +//Qt feature: libinput_hires_wheel_support (from target Qt6::Gui) +QT_FEATURE_libinput_hires_wheel_support:INTERNAL=OFF +//Qt feature: library (from target Qt6::Core) +QT_FEATURE_library:INTERNAL=ON +//Qt feature: libstdcpp_assertions (from target Qt6::Core) +QT_FEATURE_libstdcpp_assertions:INTERNAL=ON +//Qt feature: libudev (from target Qt6::Core) +QT_FEATURE_libudev:INTERNAL=OFF +//Qt feature: lineedit (from target Qt6::Widgets) +QT_FEATURE_lineedit:INTERNAL=ON +//Qt feature: linkat (from target Qt6::Core) +QT_FEATURE_linkat:INTERNAL=OFF +//Qt feature: linuxfb (from target Qt6::Gui) +QT_FEATURE_linuxfb:INTERNAL=OFF +//Qt feature: listview (from target Qt6::Widgets) +QT_FEATURE_listview:INTERNAL=ON +//Qt feature: listwidget (from target Qt6::Widgets) +QT_FEATURE_listwidget:INTERNAL=ON +//Qt feature: localtime_r (from target Qt6::Core) +QT_FEATURE_localtime_r:INTERNAL=OFF +//Qt feature: localtime_s (from target Qt6::Core) +QT_FEATURE_localtime_s:INTERNAL=ON +//Qt feature: lttng (from target Qt6::Core) +QT_FEATURE_lttng:INTERNAL=OFF +//Qt feature: mainwindow (from target Qt6::Widgets) +QT_FEATURE_mainwindow:INTERNAL=ON +//Qt feature: mdiarea (from target Qt6::Widgets) +QT_FEATURE_mdiarea:INTERNAL=ON +//Qt feature: memmem (from target Qt6::Core) +QT_FEATURE_memmem:INTERNAL=OFF +//Qt feature: memrchr (from target Qt6::Core) +QT_FEATURE_memrchr:INTERNAL=OFF +//Qt feature: menu (from target Qt6::Widgets) +QT_FEATURE_menu:INTERNAL=ON +//Qt feature: menubar (from target Qt6::Widgets) +QT_FEATURE_menubar:INTERNAL=ON +//Qt feature: messagebox (from target Qt6::Widgets) +QT_FEATURE_messagebox:INTERNAL=ON +//Qt feature: metal (from target Qt6::Gui) +QT_FEATURE_metal:INTERNAL=OFF +//Qt feature: mimetype (from target Qt6::Core) +QT_FEATURE_mimetype:INTERNAL=ON +//Qt feature: mimetype_database (from target Qt6::Core) +QT_FEATURE_mimetype_database:INTERNAL=ON +//Qt feature: mips_dsp (from target Qt6::Core) +QT_FEATURE_mips_dsp:INTERNAL=OFF +//Qt feature: mips_dspr2 (from target Qt6::Core) +QT_FEATURE_mips_dspr2:INTERNAL=OFF +//Qt feature: movie (from target Qt6::Gui) +QT_FEATURE_movie:INTERNAL=ON +//Qt feature: mtdev (from target Qt6::Gui) +QT_FEATURE_mtdev:INTERNAL=OFF +//Qt feature: multiprocess (from target Qt6::Gui) +QT_FEATURE_multiprocess:INTERNAL=ON +//Qt feature: neon (from target Qt6::Core) +QT_FEATURE_neon:INTERNAL=OFF +//Qt feature: network (from target Qt6::Core) +QT_FEATURE_network:INTERNAL=ON +//Qt feature: no_direct_extern_access (from target Qt6::Core) +QT_FEATURE_no_direct_extern_access:INTERNAL=OFF +//Qt feature: no_pkg_config (from target Qt6::Core) +QT_FEATURE_no_pkg_config:INTERNAL=ON +//Qt feature: opengl (from target Qt6::Gui) +QT_FEATURE_opengl:INTERNAL=ON +//Qt feature: opengles2 (from target Qt6::Gui) +QT_FEATURE_opengles2:INTERNAL=OFF +//Qt feature: opengles3 (from target Qt6::Gui) +QT_FEATURE_opengles3:INTERNAL=OFF +//Qt feature: opengles31 (from target Qt6::Gui) +QT_FEATURE_opengles31:INTERNAL=OFF +//Qt feature: opengles32 (from target Qt6::Gui) +QT_FEATURE_opengles32:INTERNAL=OFF +//Qt feature: openssl (from target Qt6::Core) +QT_FEATURE_openssl:INTERNAL=ON +//Qt feature: openssl_hash (from target Qt6::Core) +QT_FEATURE_openssl_hash:INTERNAL=OFF +//Qt feature: openssl_linked (from target Qt6::Core) +QT_FEATURE_openssl_linked:INTERNAL=OFF +//Qt feature: opensslv11 (from target Qt6::Core) +QT_FEATURE_opensslv11:INTERNAL=OFF +//Qt feature: opensslv30 (from target Qt6::Core) +QT_FEATURE_opensslv30:INTERNAL=ON +//Qt feature: openvg (from target Qt6::Gui) +QT_FEATURE_openvg:INTERNAL=OFF +//Qt feature: pcre2 (from target Qt6::Core) +QT_FEATURE_pcre2:INTERNAL=ON +//Qt feature: pdf (from target Qt6::Gui) +QT_FEATURE_pdf:INTERNAL=ON +//Qt feature: permissions (from target Qt6::Core) +QT_FEATURE_permissions:INTERNAL=ON +//Qt feature: picture (from target Qt6::Gui) +QT_FEATURE_picture:INTERNAL=ON +//Qt feature: pkg_config (from target Qt6::Core) +QT_FEATURE_pkg_config:INTERNAL=OFF +//Qt feature: plugin_manifest (from target Qt6::Core) +QT_FEATURE_plugin_manifest:INTERNAL=ON +//Qt feature: png (from target Qt6::Gui) +QT_FEATURE_png:INTERNAL=ON +//Qt feature: poll_exit_on_error (from target Qt6::Core) +QT_FEATURE_poll_exit_on_error:INTERNAL=OFF +//Qt feature: poll_poll (from target Qt6::Core) +QT_FEATURE_poll_poll:INTERNAL=OFF +//Qt feature: poll_pollts (from target Qt6::Core) +QT_FEATURE_poll_pollts:INTERNAL=OFF +//Qt feature: poll_ppoll (from target Qt6::Core) +QT_FEATURE_poll_ppoll:INTERNAL=OFF +//Qt feature: poll_select (from target Qt6::Core) +QT_FEATURE_poll_select:INTERNAL=OFF +//Qt feature: posix_fallocate (from target Qt6::Core) +QT_FEATURE_posix_fallocate:INTERNAL=OFF +//Qt feature: posix_sem (from target Qt6::Core) +QT_FEATURE_posix_sem:INTERNAL=ON +//Qt feature: posix_shm (from target Qt6::Core) +QT_FEATURE_posix_shm:INTERNAL=OFF +//Qt feature: precompile_header (from target Qt6::Core) +QT_FEATURE_precompile_header:INTERNAL=ON +//Qt feature: printsupport (from target Qt6::Core) +QT_FEATURE_printsupport:INTERNAL=ON +//Qt feature: private_tests (from target Qt6::Core) +QT_FEATURE_private_tests:INTERNAL=OFF +//Qt feature: process (from target Qt6::Core) +QT_FEATURE_process:INTERNAL=ON +//Qt feature: processenvironment (from target Qt6::Core) +QT_FEATURE_processenvironment:INTERNAL=ON +//Qt feature: progressbar (from target Qt6::Widgets) +QT_FEATURE_progressbar:INTERNAL=ON +//Qt feature: progressdialog (from target Qt6::Widgets) +QT_FEATURE_progressdialog:INTERNAL=ON +//Qt feature: proxymodel (from target Qt6::Core) +QT_FEATURE_proxymodel:INTERNAL=ON +//Qt feature: pushbutton (from target Qt6::Widgets) +QT_FEATURE_pushbutton:INTERNAL=ON +//Qt feature: qqnx_imf (from target Qt6::Gui) +QT_FEATURE_qqnx_imf:INTERNAL=OFF +//Qt feature: qqnx_pps (from target Qt6::Core) +QT_FEATURE_qqnx_pps:INTERNAL=OFF +//Qt feature: radiobutton (from target Qt6::Widgets) +QT_FEATURE_radiobutton:INTERNAL=ON +//Qt feature: raster_64bit (from target Qt6::Gui) +QT_FEATURE_raster_64bit:INTERNAL=ON +//Qt feature: raster_fp (from target Qt6::Gui) +QT_FEATURE_raster_fp:INTERNAL=ON +//Qt feature: rdrnd (from target Qt6::Core) +QT_FEATURE_rdrnd:INTERNAL=ON +//Qt feature: rdseed (from target Qt6::Core) +QT_FEATURE_rdseed:INTERNAL=ON +//Qt feature: reduce_exports (from target Qt6::Core) +QT_FEATURE_reduce_exports:INTERNAL=ON +//Qt feature: reduce_relocations (from target Qt6::Core) +QT_FEATURE_reduce_relocations:INTERNAL=OFF +//Qt feature: regularexpression (from target Qt6::Core) +QT_FEATURE_regularexpression:INTERNAL=ON +//Qt feature: relocatable (from target Qt6::Core) +QT_FEATURE_relocatable:INTERNAL=ON +//Qt feature: relro_now_linker (from target Qt6::Core) +QT_FEATURE_relro_now_linker:INTERNAL=OFF +//Qt feature: renameat2 (from target Qt6::Core) +QT_FEATURE_renameat2:INTERNAL=OFF +//Qt feature: resizehandler (from target Qt6::Widgets) +QT_FEATURE_resizehandler:INTERNAL=ON +//Qt feature: rpath (from target Qt6::Core) +QT_FEATURE_rpath:INTERNAL=OFF +//Qt feature: rubberband (from target Qt6::Widgets) +QT_FEATURE_rubberband:INTERNAL=ON +//Qt feature: scrollarea (from target Qt6::Widgets) +QT_FEATURE_scrollarea:INTERNAL=ON +//Qt feature: scrollbar (from target Qt6::Widgets) +QT_FEATURE_scrollbar:INTERNAL=ON +//Qt feature: scroller (from target Qt6::Widgets) +QT_FEATURE_scroller:INTERNAL=ON +//Qt feature: separate_debug_info (from target Qt6::Core) +QT_FEATURE_separate_debug_info:INTERNAL=ON +//Qt feature: sessionmanager (from target Qt6::Gui) +QT_FEATURE_sessionmanager:INTERNAL=ON +//Qt feature: settings (from target Qt6::Core) +QT_FEATURE_settings:INTERNAL=ON +//Qt feature: sha3_fast (from target Qt6::Core) +QT_FEATURE_sha3_fast:INTERNAL=ON +//Qt feature: shani (from target Qt6::Core) +QT_FEATURE_shani:INTERNAL=ON +//Qt feature: shared (from target Qt6::Core) +QT_FEATURE_shared:INTERNAL=ON +//Qt feature: sharedmemory (from target Qt6::Core) +QT_FEATURE_sharedmemory:INTERNAL=ON +//Qt feature: shortcut (from target Qt6::Core) +QT_FEATURE_shortcut:INTERNAL=ON +//Qt feature: signaling_nan (from target Qt6::Core) +QT_FEATURE_signaling_nan:INTERNAL=ON +//Qt feature: simulator_and_device (from target Qt6::Core) +QT_FEATURE_simulator_and_device:INTERNAL=OFF +//Qt feature: sizegrip (from target Qt6::Widgets) +QT_FEATURE_sizegrip:INTERNAL=ON +//Qt feature: slider (from target Qt6::Widgets) +QT_FEATURE_slider:INTERNAL=ON +//Qt feature: slog2 (from target Qt6::Core) +QT_FEATURE_slog2:INTERNAL=OFF +//Qt feature: sortfilterproxymodel (from target Qt6::Core) +QT_FEATURE_sortfilterproxymodel:INTERNAL=ON +//Qt feature: spinbox (from target Qt6::Widgets) +QT_FEATURE_spinbox:INTERNAL=ON +//Qt feature: splashscreen (from target Qt6::Widgets) +QT_FEATURE_splashscreen:INTERNAL=ON +//Qt feature: splitter (from target Qt6::Widgets) +QT_FEATURE_splitter:INTERNAL=ON +//Qt feature: sql (from target Qt6::Core) +QT_FEATURE_sql:INTERNAL=ON +//Qt feature: sse2 (from target Qt6::Core) +QT_FEATURE_sse2:INTERNAL=ON +//Qt feature: sse3 (from target Qt6::Core) +QT_FEATURE_sse3:INTERNAL=ON +//Qt feature: sse4_1 (from target Qt6::Core) +QT_FEATURE_sse4_1:INTERNAL=ON +//Qt feature: sse4_2 (from target Qt6::Core) +QT_FEATURE_sse4_2:INTERNAL=ON +//Qt feature: ssse3 (from target Qt6::Core) +QT_FEATURE_ssse3:INTERNAL=ON +//Qt feature: stack_clash_protection (from target Qt6::Core) +QT_FEATURE_stack_clash_protection:INTERNAL=ON +//Qt feature: stack_protector (from target Qt6::Core) +QT_FEATURE_stack_protector:INTERNAL=ON +//Qt feature: stackedwidget (from target Qt6::Widgets) +QT_FEATURE_stackedwidget:INTERNAL=ON +//Qt feature: standarditemmodel (from target Qt6::Gui) +QT_FEATURE_standarditemmodel:INTERNAL=ON +//Qt feature: static (from target Qt6::Core) +QT_FEATURE_static:INTERNAL=OFF +//Qt feature: statusbar (from target Qt6::Widgets) +QT_FEATURE_statusbar:INTERNAL=ON +//Qt feature: statustip (from target Qt6::Widgets) +QT_FEATURE_statustip:INTERNAL=ON +//Qt feature: std_atomic64 (from target Qt6::Core) +QT_FEATURE_std_atomic64:INTERNAL=ON +//Qt feature: stdlib_libcpp (from target Qt6::Core) +QT_FEATURE_stdlib_libcpp:INTERNAL=OFF +//Qt feature: stringlistmodel (from target Qt6::Core) +QT_FEATURE_stringlistmodel:INTERNAL=ON +//Qt feature: style_android (from target Qt6::Widgets) +QT_FEATURE_style_android:INTERNAL=OFF +//Qt feature: style_fusion (from target Qt6::Widgets) +QT_FEATURE_style_fusion:INTERNAL=ON +//Qt feature: style_mac (from target Qt6::Widgets) +QT_FEATURE_style_mac:INTERNAL=OFF +//Qt feature: style_stylesheet (from target Qt6::Widgets) +QT_FEATURE_style_stylesheet:INTERNAL=ON +//Qt feature: style_windows (from target Qt6::Widgets) +QT_FEATURE_style_windows:INTERNAL=ON +//Qt feature: style_windows11 (from target Qt6::Widgets) +QT_FEATURE_style_windows11:INTERNAL=ON +//Qt feature: style_windowsvista (from target Qt6::Widgets) +QT_FEATURE_style_windowsvista:INTERNAL=ON +//Qt feature: syntaxhighlighter (from target Qt6::Widgets) +QT_FEATURE_syntaxhighlighter:INTERNAL=ON +//Qt feature: syslog (from target Qt6::Core) +QT_FEATURE_syslog:INTERNAL=OFF +//Qt feature: system_doubleconversion (from target Qt6::Core) +QT_FEATURE_system_doubleconversion:INTERNAL=OFF +//Qt feature: system_freetype (from target Qt6::Gui) +QT_FEATURE_system_freetype:INTERNAL=OFF +//Qt feature: system_harfbuzz (from target Qt6::Gui) +QT_FEATURE_system_harfbuzz:INTERNAL=OFF +//Qt feature: system_jpeg (from target Qt6::Gui) +QT_FEATURE_system_jpeg:INTERNAL=OFF +//Qt feature: system_libb2 (from target Qt6::Core) +QT_FEATURE_system_libb2:INTERNAL=OFF +//Qt feature: system_pcre2 (from target Qt6::Core) +QT_FEATURE_system_pcre2:INTERNAL=OFF +//Qt feature: system_png (from target Qt6::Gui) +QT_FEATURE_system_png:INTERNAL=OFF +//Qt feature: system_textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_system_textmarkdownreader:INTERNAL=OFF +//Qt feature: system_xcb_xinput (from target Qt6::Gui) +QT_FEATURE_system_xcb_xinput:INTERNAL=OFF +//Qt feature: system_zlib (from target Qt6::Core) +QT_FEATURE_system_zlib:INTERNAL=OFF +//Qt feature: systemsemaphore (from target Qt6::Core) +QT_FEATURE_systemsemaphore:INTERNAL=ON +//Qt feature: systemtrayicon (from target Qt6::Gui) +QT_FEATURE_systemtrayicon:INTERNAL=ON +//Qt feature: sysv_sem (from target Qt6::Core) +QT_FEATURE_sysv_sem:INTERNAL=OFF +//Qt feature: sysv_shm (from target Qt6::Core) +QT_FEATURE_sysv_shm:INTERNAL=OFF +//Qt feature: tabbar (from target Qt6::Widgets) +QT_FEATURE_tabbar:INTERNAL=ON +//Qt feature: tabletevent (from target Qt6::Gui) +QT_FEATURE_tabletevent:INTERNAL=ON +//Qt feature: tableview (from target Qt6::Widgets) +QT_FEATURE_tableview:INTERNAL=ON +//Qt feature: tablewidget (from target Qt6::Widgets) +QT_FEATURE_tablewidget:INTERNAL=ON +//Qt feature: tabwidget (from target Qt6::Widgets) +QT_FEATURE_tabwidget:INTERNAL=ON +//Qt feature: temporaryfile (from target Qt6::Core) +QT_FEATURE_temporaryfile:INTERNAL=ON +//Qt feature: testlib (from target Qt6::Core) +QT_FEATURE_testlib:INTERNAL=ON +//Qt feature: textbrowser (from target Qt6::Widgets) +QT_FEATURE_textbrowser:INTERNAL=ON +//Qt feature: textdate (from target Qt6::Core) +QT_FEATURE_textdate:INTERNAL=ON +//Qt feature: textedit (from target Qt6::Widgets) +QT_FEATURE_textedit:INTERNAL=ON +//Qt feature: texthtmlparser (from target Qt6::Gui) +QT_FEATURE_texthtmlparser:INTERNAL=ON +//Qt feature: textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_textmarkdownreader:INTERNAL=ON +//Qt feature: textmarkdownwriter (from target Qt6::Gui) +QT_FEATURE_textmarkdownwriter:INTERNAL=ON +//Qt feature: textodfwriter (from target Qt6::Gui) +QT_FEATURE_textodfwriter:INTERNAL=ON +//Qt feature: thread (from target Qt6::Core) +QT_FEATURE_thread:INTERNAL=ON +//Qt feature: timezone (from target Qt6::Core) +QT_FEATURE_timezone:INTERNAL=ON +//Qt feature: timezone_locale (from target Qt6::Core) +QT_FEATURE_timezone_locale:INTERNAL=OFF +//Qt feature: toolbar (from target Qt6::Widgets) +QT_FEATURE_toolbar:INTERNAL=ON +//Qt feature: toolbox (from target Qt6::Widgets) +QT_FEATURE_toolbox:INTERNAL=ON +//Qt feature: toolbutton (from target Qt6::Widgets) +QT_FEATURE_toolbutton:INTERNAL=ON +//Qt feature: tooltip (from target Qt6::Widgets) +QT_FEATURE_tooltip:INTERNAL=ON +//Qt feature: translation (from target Qt6::Core) +QT_FEATURE_translation:INTERNAL=ON +//Qt feature: transposeproxymodel (from target Qt6::Core) +QT_FEATURE_transposeproxymodel:INTERNAL=ON +//Qt feature: treeview (from target Qt6::Widgets) +QT_FEATURE_treeview:INTERNAL=ON +//Qt feature: treewidget (from target Qt6::Widgets) +QT_FEATURE_treewidget:INTERNAL=ON +//Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core) +QT_FEATURE_trivial_auto_var_init_pattern:INTERNAL=OFF +//Qt feature: tslib (from target Qt6::Gui) +QT_FEATURE_tslib:INTERNAL=OFF +//Qt feature: tuiotouch (from target Qt6::Gui) +QT_FEATURE_tuiotouch:INTERNAL=ON +//Qt feature: undocommand (from target Qt6::Gui) +QT_FEATURE_undocommand:INTERNAL=ON +//Qt feature: undogroup (from target Qt6::Gui) +QT_FEATURE_undogroup:INTERNAL=ON +//Qt feature: undostack (from target Qt6::Gui) +QT_FEATURE_undostack:INTERNAL=ON +//Qt feature: undoview (from target Qt6::Widgets) +QT_FEATURE_undoview:INTERNAL=ON +//Qt feature: use_bfd_linker (from target Qt6::Core) +QT_FEATURE_use_bfd_linker:INTERNAL=OFF +//Qt feature: use_gold_linker (from target Qt6::Core) +QT_FEATURE_use_gold_linker:INTERNAL=OFF +//Qt feature: use_lld_linker (from target Qt6::Core) +QT_FEATURE_use_lld_linker:INTERNAL=OFF +//Qt feature: use_mold_linker (from target Qt6::Core) +QT_FEATURE_use_mold_linker:INTERNAL=OFF +//Qt feature: vaes (from target Qt6::Core) +QT_FEATURE_vaes:INTERNAL=ON +//Qt feature: validator (from target Qt6::Gui) +QT_FEATURE_validator:INTERNAL=ON +//Qt feature: version_tagging (from target Qt6::Core) +QT_FEATURE_version_tagging:INTERNAL=ON +//Qt feature: vkgen (from target Qt6::Gui) +QT_FEATURE_vkgen:INTERNAL=ON +//Qt feature: vkkhrdisplay (from target Qt6::Gui) +QT_FEATURE_vkkhrdisplay:INTERNAL=OFF +//Qt feature: vnc (from target Qt6::Gui) +QT_FEATURE_vnc:INTERNAL=OFF +//Qt feature: vsp2 (from target Qt6::Gui) +QT_FEATURE_vsp2:INTERNAL=OFF +//Qt feature: vulkan (from target Qt6::Gui) +QT_FEATURE_vulkan:INTERNAL=ON +//Qt feature: wasm_exceptions (from target Qt6::Core) +QT_FEATURE_wasm_exceptions:INTERNAL=OFF +//Qt feature: wasm_simd128 (from target Qt6::Core) +QT_FEATURE_wasm_simd128:INTERNAL=OFF +//Qt feature: wayland (from target Qt6::Gui) +QT_FEATURE_wayland:INTERNAL=OFF +//Qt feature: whatsthis (from target Qt6::Gui) +QT_FEATURE_whatsthis:INTERNAL=ON +//Qt feature: wheelevent (from target Qt6::Gui) +QT_FEATURE_wheelevent:INTERNAL=ON +//Qt feature: widgets (from target Qt6::Core) +QT_FEATURE_widgets:INTERNAL=ON +//Qt feature: widgettextcontrol (from target Qt6::Widgets) +QT_FEATURE_widgettextcontrol:INTERNAL=ON +//Qt feature: wizard (from target Qt6::Widgets) +QT_FEATURE_wizard:INTERNAL=ON +//Qt feature: x86intrin (from target Qt6::Core) +QT_FEATURE_x86intrin:INTERNAL=ON +//Qt feature: xcb (from target Qt6::Gui) +QT_FEATURE_xcb:INTERNAL=OFF +//Qt feature: xcb_egl_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_egl_plugin:INTERNAL=OFF +//Qt feature: xcb_glx (from target Qt6::Gui) +QT_FEATURE_xcb_glx:INTERNAL=OFF +//Qt feature: xcb_glx_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_glx_plugin:INTERNAL=OFF +//Qt feature: xcb_native_painting (from target Qt6::Gui) +QT_FEATURE_xcb_native_painting:INTERNAL=OFF +//Qt feature: xcb_sm (from target Qt6::Gui) +QT_FEATURE_xcb_sm:INTERNAL=OFF +//Qt feature: xcb_xlib (from target Qt6::Gui) +QT_FEATURE_xcb_xlib:INTERNAL=OFF +//Qt feature: xkbcommon (from target Qt6::Gui) +QT_FEATURE_xkbcommon:INTERNAL=OFF +//Qt feature: xkbcommon_x11 (from target Qt6::Gui) +QT_FEATURE_xkbcommon_x11:INTERNAL=OFF +//Qt feature: xlib (from target Qt6::Gui) +QT_FEATURE_xlib:INTERNAL=OFF +//Qt feature: xml (from target Qt6::Core) +QT_FEATURE_xml:INTERNAL=ON +//Qt feature: xmlstream (from target Qt6::Core) +QT_FEATURE_xmlstream:INTERNAL=ON +//Qt feature: xmlstreamreader (from target Qt6::Core) +QT_FEATURE_xmlstreamreader:INTERNAL=ON +//Qt feature: xmlstreamwriter (from target Qt6::Core) +QT_FEATURE_xmlstreamwriter:INTERNAL=ON +//Qt feature: xrender (from target Qt6::Gui) +QT_FEATURE_xrender:INTERNAL=OFF +//Qt feature: zstd (from target Qt6::Core) +QT_FEATURE_zstd:INTERNAL=OFF +//ADVANCED property for variable: Vulkan_GLSLANG_VALIDATOR_EXECUTABLE +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_GLSLC_EXECUTABLE +Vulkan_GLSLC_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_INCLUDE_DIR +Vulkan_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_LIBRARY +Vulkan_LIBRARY-ADVANCED:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/fontManager + diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..500b50c --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake @@ -0,0 +1,92 @@ +set(CMAKE_CXX_COMPILER "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "13.1.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "MinGW") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe") +set(CMAKE_RANLIB "C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe") +set(CMAKE_LINKER "C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe") +set(CMAKE_CXX_COMPILER_LINKER_ID "") +set(CMAKE_CXX_COMPILER_LINKER_VERSION ) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;mingw32;gcc_s;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex;kernel32") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0;C:/dev/Qt/Tools/mingw1310_64/lib/gcc;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib;C:/dev/Qt/Tools/mingw1310_64/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeDetermineCompilerABI_CXX.bin b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..abf402a Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeRCCompiler.cmake b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeRCCompiler.cmake new file mode 100644 index 0000000..6c1d08d --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC) +set(CMAKE_RC_OUTPUT_EXTENSION .obj) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeSystem.cmake b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeSystem.cmake new file mode 100644 index 0000000..9c49cbb --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22631") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22631") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.22631") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.22631") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..9a5e8f8 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,878 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/a.exe b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/a.exe new file mode 100644 index 0000000..6d3fc3f Binary files /dev/null and b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/a.exe differ diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeConfigureLog.yaml b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..6135a96 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,404 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:3 (project)" + message: | + The system is: Windows - 10.0.22631 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:3 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe + Build flags: -DQT_QML_DEBUG + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe" + + The CXX compiler identification is GNU, found in: + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/a.exe + + - + kind: "try_compile-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:67 (try_compile)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-2arcky" + binary: "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-2arcky" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-2arcky' + + Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_e5ddf + [1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -fdiagnostics-color=always -v -o CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj -c C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe + Target: x86_64-w64-mingw32 + Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc' + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 13.1.0 (x86_64-posix-seh-rev1, Built by MinGW-Builds project) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_e5ddf.dir/' + C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT -D QT_QML_DEBUG C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_e5ddf.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=core2 -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\herwi\\AppData\\Local\\Temp\\cchWubOm.s + GNU C++17 (x86_64-posix-seh-rev1, Built by MinGW-Builds project) version 13.1.0 (x86_64-w64-mingw32) + compiled by GNU C version 13.1.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.25-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include" + ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64D:/a/_temp/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include" + ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/mingw/include" + #include "..." search starts here: + #include <...> search starts here: + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++ + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32 + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include + End of search list. + Compiler executable checksum: b3d236387f35294e2a73c51628039e05 + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_e5ddf.dir/' + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\herwi\\AppData\\Local\\Temp\\cchWubOm.s + GNU assembler version 2.39 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.39 + COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ + LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -v -Wl,-v CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_e5ddf.exe -Wl,--out-implib,libcmTC_e5ddf.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ." + Using built-in specs. + COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe + COLLECT_LTO_WRAPPER=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe + Target: x86_64-w64-mingw32 + Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc' + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 13.1.0 (x86_64-posix-seh-rev1, Built by MinGW-Builds project) + COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ + LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ + COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_e5ddf.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_e5ddf.' + C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -plugin C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll -plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\cc7ceb8r.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 --sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 -m i386pep -Bdynamic -o cmTC_e5ddf.exe C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_e5ddf.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o + collect2 version 13.1.0 + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ld.exe -plugin C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll -plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\cc7ceb8r.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 --sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 -m i386pep -Bdynamic -o cmTC_e5ddf.exe C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_e5ddf.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o + GNU ld (GNU Binutils) 2.39\x0d + COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_e5ddf.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_e5ddf.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:137 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] + end of search list found + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include] + implicit include dirs: [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include] + + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:173 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-2arcky'] + ignore line: [] + ignore line: [Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_e5ddf] + ignore line: [[1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -fdiagnostics-color=always -v -o CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj -c C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc'] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.1.0 (x86_64-posix-seh-rev1 Built by MinGW-Builds project) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_e5ddf.dir/'] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT -D QT_QML_DEBUG C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_e5ddf.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=core2 -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\herwi\\AppData\\Local\\Temp\\cchWubOm.s] + ignore line: [GNU C++17 (x86_64-posix-seh-rev1 Built by MinGW-Builds project) version 13.1.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 13.1.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.25-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include"] + ignore line: [ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64D:/a/_temp/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: b3d236387f35294e2a73c51628039e05] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_e5ddf.dir/'] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\herwi\\AppData\\Local\\Temp\\cchWubOm.s] + ignore line: [GNU assembler version 2.39 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.39] + ignore line: [COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -v -Wl -v CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_e5ddf.exe -Wl --out-implib libcmTC_e5ddf.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc'] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.1.0 (x86_64-posix-seh-rev1 Built by MinGW-Builds project) ] + ignore line: [COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_e5ddf.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_e5ddf.'] + link line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -plugin C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll -plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\cc7ceb8r.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 --sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 -m i386pep -Bdynamic -o cmTC_e5ddf.exe C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_e5ddf.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\cc7ceb8r.res] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-lpthread] ==> ignore + arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore + arg [-plugin-opt=-pass-through=-lshell32] ==> ignore + arg [-plugin-opt=-pass-through=-luser32] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-liconv] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [--sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64] ==> ignore + arg [-m] ==> ignore + arg [i386pep] ==> ignore + arg [-Bdynamic] ==> search dynamic + arg [-o] ==> ignore + arg [cmTC_e5ddf.exe] ==> ignore + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] ==> obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_e5ddf.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTC_e5ddf.dll.a] ==> ignore + arg [--major-image-version] ==> ignore + arg [0] ==> ignore + arg [--minor-image-version] ==> ignore + arg [0] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lkernel32] ==> lib [kernel32] + arg [-lpthread] ==> lib [pthread] + arg [-ladvapi32] ==> lib [advapi32] + arg [-lshell32] ==> lib [shell32] + arg [-luser32] ==> lib [user32] + arg [-lkernel32] ==> lib [kernel32] + arg [-liconv] ==> lib [iconv] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lkernel32] ==> lib [kernel32] + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] ==> obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + linker tool for 'CXX': ../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe + remove lib [msvcrt] + remove lib [msvcrt] + collapse obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib/crt2.o] + collapse obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] + collapse obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] ==> [C:/dev/Qt/Tools/mingw1310_64/lib] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] ==> [C:/dev/Qt/Tools/mingw1310_64/lib] + implicit libs: [stdc++;mingw32;gcc_s;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex;kernel32] + implicit objs: [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib/crt2.o;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + implicit dirs: [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0;C:/dev/Qt/Tools/mingw1310_64/lib/gcc;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib;C:/dev/Qt/Tools/mingw1310_64/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:210 (cmake_determine_linker_id)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Running the CXX compiler's linker: "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe" "-v" + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:210 (cmake_determine_linker_id)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Running the CXX compiler's linker: "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe" "-V" + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:210 (cmake_determine_linker_id)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:3 (project)" + message: | + Running the CXX compiler's linker: "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe" "--version" + + - + kind: "try_compile-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake:99 (CHECK_CXX_SOURCE_COMPILES)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake:34 (_qt_internal_find_third_party_dependencies)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake:136 (include)" + - "CMakeLists.txt:12 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-kmskdv" + binary: "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-kmskdv" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/kwin" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-kmskdv' + + Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_5528a + [1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DCMAKE_HAVE_LIBC_PTHREAD -DQT_QML_DEBUG -std=gnu++17 -fdiagnostics-color=always -o CMakeFiles/cmTC_5528a.dir/src.cxx.obj -c C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-kmskdv/src.cxx + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG CMakeFiles/cmTC_5528a.dir/src.cxx.obj -o cmTC_5528a.exe -Wl,--out-implib,libcmTC_5528a.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake:36 (check_cxx_source_compiles)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake:35 (_qt_internal_find_third_party_dependencies)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake:45 (include)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:143 (find_dependency)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake:43 (_qt_internal_find_qt_dependencies)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake:43 (include)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake:181 (find_package)" + - "CMakeLists.txt:13 (find_package)" + checks: + - "Performing Test HAVE_STDATOMIC" + directories: + source: "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-32y2ci" + binary: "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-32y2ci" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/kwin;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/kwin" + buildResult: + variable: "HAVE_STDATOMIC" + cached: true + stdout: | + Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-32y2ci' + + Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_d70f9 + [1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DHAVE_STDATOMIC -DQT_QML_DEBUG -std=gnu++17 -fdiagnostics-color=always -o CMakeFiles/cmTC_d70f9.dir/src.cxx.obj -c C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-32y2ci/src.cxx + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG CMakeFiles/cmTC_d70f9.dir/src.cxx.obj -o cmTC_d70f9.exe -Wl,--out-implib,libcmTC_d70f9.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 +... diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/TargetDirectories.txt b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..b8f18af --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,9 @@ +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/fontManager.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/edit_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/rebuild_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/list_install_components.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/install.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/install/local.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/install/strip.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/fontManager_autogen_timestamp_deps.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/fontManager_autogen.dir diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/clean_additional.cmake b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..9731fd5 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/clean_additional.cmake @@ -0,0 +1,10 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "Debug") + file(REMOVE_RECURSE + "CMakeFiles\\fontManager_autogen.dir\\AutogenUsed.txt" + "CMakeFiles\\fontManager_autogen.dir\\ParseCache.txt" + "fontManager_autogen" + ) +endif() diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/cmake.check_cache b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..053662e --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json @@ -0,0 +1,473 @@ +{ + "AUTOGEN_COMMAND_LINE_LENGTH_MAX" : 32000, + "BUILD_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen", + "CMAKE_BINARY_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug", + "CMAKE_CURRENT_BINARY_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug", + "CMAKE_CURRENT_SOURCE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app", + "CMAKE_EXECUTABLE" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe", + "CMAKE_LIST_FILES" : + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/CMakeLists.txt", + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineSystem.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystem.cmake.in", + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeSystem.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeNinjaFindMake.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCXXCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Determine-CXX.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerId.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCompilerIdDetection.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ADSP-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ARMCC-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ARMClang-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/AppleClang-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompilerInternal.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Borland-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompilerInternal.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Cray-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CrayClang-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Embarcadero-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Fujitsu-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GHS-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/HP-CXX-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IAR-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Intel-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/MSVC-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/NVHPC-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/NVIDIA-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/OrangeC-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/PGI-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/PathScale-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/SCO-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/TI-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/TIClang-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Tasking-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Watcom-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/XL-CXX-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindBinUtils.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-FindBinUtils.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompiler.cmake.in", + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineRCCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCCompiler.cmake.in", + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeRCCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestRCCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCompilerCommon.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseImplicitIncludeInfo.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseImplicitLinkInfo.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseLibraryArchitecture.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCompilerCommon.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompileFeatures.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/FeatureTesting.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompiler.cmake.in", + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + ], + "CMAKE_SOURCE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app", + "CROSS_CONFIG" : false, + "DEP_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/deps", + "DEP_FILE_RULE_NAME" : "fontManager_autogen/timestamp", + "HEADERS" : + [ + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.h", + "MU", + "EWIEGA46WW/moc_cmainwindow.cpp", + null + ], + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h", + "MU", + "EWIEGA46WW/moc_ifontprovider.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/include", + "MOC_COMPILATION_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "MINGW_HAS_SECURE_API=1", + "QT_CORE_LIB", + "QT_GUI_LIB", + "QT_NEEDS_QMAIN", + "QT_WIDGETS_LIB", + "UNICODE", + "WIN32", + "WIN64", + "_ENABLE_EXTENDED_ALIGNED_STORAGE", + "_UNICODE", + "_WIN64" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "C:/dev/Qt/6.8.0/mingw_64/include/QtCore", + "C:/dev/Qt/6.8.0/mingw_64/include", + "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++", + "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets", + "C:/dev/Qt/6.8.0/mingw_64/include/QtGui", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed", + "C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe", + "-std=gnu++17", + "-dM", + "-E", + "-c", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : [], + "MULTI_CONFIG" : false, + "PARALLEL" : 16, + "PARSE_CACHE_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/fontManager_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "C:/dev/Qt/6.8.0/mingw_64/bin/moc.exe", + "QT_UIC_EXECUTABLE" : "C:/dev/Qt/6.8.0/mingw_64/bin/uic.exe", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 8, + "SETTINGS_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/fontManager_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.cpp", + "MU", + null + ], + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/main.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : [], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : true, + "VERBOSITY" : 0 +} diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/rules.ninja b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/rules.ninja new file mode 100644 index 0000000..caf56bb --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/rules.ninja @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.29 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: fontManager +# Configurations: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__fontManager_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\dev\Qt\Tools\mingw1310_64\bin\g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX executable. + +rule CXX_EXECUTABLE_LINKER__fontManager_Debug + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\dev\Qt\Tools\mingw1310_64\bin\g++.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE -Wl,--out-implib,$TARGET_IMPLIB -Wl,--major-image-version,0,--minor-image-version,0 $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager\app -BC:\Users\herwi\Documents\GitHub\qt\fontManager\app\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\dev\Qt\Tools\Ninja\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\dev\Qt\Tools\Ninja\ninja.exe -t targets + description = All primary targets available: + diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log new file mode 100644 index 0000000..f7574f6 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log @@ -0,0 +1,3 @@ +Start testing: Oct 25 15:39 W. Europe Daylight Time +---------------------------------------------------------- +End testing: Oct 25 15:39 W. Europe Daylight Time diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/build.ninja b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/build.ninja new file mode 100644 index 0000000..7d41e9b --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/build.ninja @@ -0,0 +1,251 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.29 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: fontManager +# Configurations: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Debug +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/ +# ============================================================================= +# Object build statements for EXECUTABLE target fontManager + + +############################################# +# Order-only phony target for fontManager + +build cmake_object_order_depends_target_fontManager: phony || fontManager_autogen fontManager_autogen/mocs_compilation.cpp fontManager_autogen/timestamp fontManager_autogen_timestamp_deps + +build CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__fontManager_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_fontManager + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = CMakeFiles\fontManager.dir\fontManager_autogen\mocs_compilation.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/include -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui + OBJECT_DIR = CMakeFiles\fontManager.dir + OBJECT_FILE_DIR = CMakeFiles\fontManager.dir\fontManager_autogen + TARGET_COMPILE_PDB = CMakeFiles\fontManager.dir\ + TARGET_PDB = fontManager.pdb + +build CMakeFiles/fontManager.dir/main.cpp.obj: CXX_COMPILER__fontManager_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/main.cpp || cmake_object_order_depends_target_fontManager + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = CMakeFiles\fontManager.dir\main.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/include -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui + OBJECT_DIR = CMakeFiles\fontManager.dir + OBJECT_FILE_DIR = CMakeFiles\fontManager.dir + TARGET_COMPILE_PDB = CMakeFiles\fontManager.dir\ + TARGET_PDB = fontManager.pdb + +build CMakeFiles/fontManager.dir/cmainwindow.cpp.obj: CXX_COMPILER__fontManager_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.cpp || cmake_object_order_depends_target_fontManager + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = CMakeFiles\fontManager.dir\cmainwindow.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/include -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui + OBJECT_DIR = CMakeFiles\fontManager.dir + OBJECT_FILE_DIR = CMakeFiles\fontManager.dir + TARGET_COMPILE_PDB = CMakeFiles\fontManager.dir\ + TARGET_PDB = fontManager.pdb + + +# ============================================================================= +# Link build statements for EXECUTABLE target fontManager + + +############################################# +# Link the executable fontManager.exe + +build fontManager.exe: CXX_EXECUTABLE_LINKER__fontManager_Debug CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj CMakeFiles/fontManager.dir/main.cpp.obj CMakeFiles/fontManager.dir/cmainwindow.cpp.obj | C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Widgets.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Gui.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Core.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6EntryPoint.a || fontManager_autogen fontManager_autogen_timestamp_deps + FLAGS = -DQT_QML_DEBUG -g + LINK_FLAGS = -mwindows + LINK_LIBRARIES = C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Widgets.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Gui.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Core.a -lmpr -luserenv -lmingw32 C:/dev/Qt/6.8.0/mingw_64/lib/libQt6EntryPoint.a -lshell32 -ld3d11 -ldxgi -ldxguid -ld3d12 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + OBJECT_DIR = CMakeFiles\fontManager.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_COMPILE_PDB = CMakeFiles\fontManager.dir\ + TARGET_FILE = fontManager.exe + TARGET_IMPLIB = libfontManager.dll.a + TARGET_PDB = fontManager.pdb + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\app\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake-gui.exe -SC:\Users\herwi\Documents\GitHub\qt\fontManager\app -BC:\Users\herwi\Documents\GitHub\qt\fontManager\app\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\app\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager\app -BC:\Users\herwi\Documents\GitHub\qt\fontManager\app\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build list_install_components: phony + + +############################################# +# Utility command for install + +build CMakeFiles/install.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\app\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build install: phony CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/install/local.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\app\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local: phony CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/install/strip.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\app\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip: phony CMakeFiles/install/strip.util + + +############################################# +# Utility command for fontManager_autogen_timestamp_deps + +build fontManager_autogen_timestamp_deps: phony + + +############################################# +# Utility command for fontManager_autogen + +build fontManager_autogen: phony CMakeFiles/fontManager_autogen fontManager_autogen/include/ui_cmainwindow.h fontManager_autogen/timestamp fontManager_autogen/mocs_compilation.cpp fontManager_autogen_timestamp_deps + + +############################################# +# Custom command for fontManager_autogen\timestamp + +build fontManager_autogen/timestamp fontManager_autogen/mocs_compilation.cpp | ${cmake_ninja_workdir}fontManager_autogen/timestamp ${cmake_ninja_workdir}fontManager_autogen/mocs_compilation.cpp: CUSTOM_COMMAND C$:/dev/Qt/6.8.0/mingw_64/bin/moc.exe C$:/dev/Qt/6.8.0/mingw_64/bin/uic.exe || fontManager_autogen_timestamp_deps + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\app\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_autogen C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E touch C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/timestamp && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_transform_depfile Ninja gccdepfile C:/Users/herwi/Documents/GitHub/qt/fontManager/app C:/Users/herwi/Documents/GitHub/qt/fontManager/app C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager_autogen/deps C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/d/f6f4de82bc1c69947a5aacfc681e45194b4a54ebbb2e707dc2015ba7a709cf7c.d" + DESC = Automatic MOC and UIC for target fontManager + depfile = CMakeFiles\d\f6f4de82bc1c69947a5aacfc681e45194b4a54ebbb2e707dc2015ba7a709cf7c.d + deps = gcc + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\fontManager_autogen + +build CMakeFiles/fontManager_autogen fontManager_autogen/include/ui_cmainwindow.h | ${cmake_ninja_workdir}CMakeFiles/fontManager_autogen ${cmake_ninja_workdir}fontManager_autogen/include/ui_cmainwindow.h: phony fontManager_autogen/timestamp || fontManager_autogen_timestamp_deps + +# ============================================================================= +# Target aliases. + +build fontManager: phony fontManager.exe + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug + +build all: phony fontManager.exe + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | .qtc/package-manager/auto-setup.cmake C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/CMakeLists.txt C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompiler.cmake.in C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCompilerIdDetection.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCXXCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompileFeatures.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerId.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineRCCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineSystem.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindBinUtils.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeNinjaFindMake.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseImplicitLinkInfo.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseLibraryArchitecture.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCCompiler.cmake.in C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystem.cmake.in C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCompilerCommon.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestRCCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-FindBinUtils.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/TI-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/FeatureTesting.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Determine-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake CMakeCache.txt CMakeFiles/3.29.3/CMakeCXXCompiler.cmake CMakeFiles/3.29.3/CMakeRCCompiler.cmake CMakeFiles/3.29.3/CMakeSystem.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build .qtc/package-manager/auto-setup.cmake C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/CMakeLists.txt C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompiler.cmake.in C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCompilerIdDetection.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCXXCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompileFeatures.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerId.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineRCCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineSystem.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindBinUtils.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeNinjaFindMake.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseImplicitLinkInfo.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeParseLibraryArchitecture.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCCompiler.cmake.in C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystem.cmake.in C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCompilerCommon.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestRCCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-FindBinUtils.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/TI-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/TIClang-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/FeatureTesting.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Determine-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake CMakeCache.txt CMakeFiles/3.29.3/CMakeCXXCompiler.cmake CMakeFiles/3.29.3/CMakeRCCompiler.cmake CMakeFiles/3.29.3/CMakeSystem.cmake: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + CONFIG = Debug + + +############################################# +# Clean all the built files. + +build clean: CLEAN CMakeFiles/clean.additional + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/cmake_install.cmake b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/cmake_install.cmake new file mode 100644 index 0000000..64be2ad --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/cmake_install.cmake @@ -0,0 +1,59 @@ +# Install script for directory: C:/Users/herwi/Documents/GitHub/qt/fontManager/app + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/fontManager") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager.exe") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/fontManager.exe" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/fontManager.exe") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/fontManager.exe") + endif() + endif() +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/qtcsettings.cmake b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/qtcsettings.cmake new file mode 100644 index 0000000..08c1fb9 --- /dev/null +++ b/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/qtcsettings.cmake @@ -0,0 +1,10 @@ +# This file is managed by Qt Creator, do not edit! + +set("CMAKE_BUILD_TYPE" "Debug" CACHE "STRING" "" FORCE) +set("CMAKE_PROJECT_INCLUDE_BEFORE" "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" CACHE "FILEPATH" "" FORCE) +set("CMAKE_CXX_FLAGS_INIT" "-DQT_QML_DEBUG" CACHE "STRING" "" FORCE) +set("CMAKE_GENERATOR" "Ninja" CACHE "STRING" "" FORCE) +set("CMAKE_PREFIX_PATH" "C:/dev/Qt/6.8.0/mingw_64" CACHE "PATH" "" FORCE) +set("CMAKE_CXX_COMPILER" "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe" CACHE "FILEPATH" "" FORCE) +set("QT_QMAKE_EXECUTABLE" "C:/dev/Qt/6.8.0/mingw_64/bin/qmake.exe" CACHE "FILEPATH" "" FORCE) +set("CMAKE_C_COMPILER" "C:/dev/Qt/Tools/mingw1310_64/bin/gcc.exe" CACHE "FILEPATH" "" FORCE) \ No newline at end of file diff --git a/app/cmainwindow.cpp b/app/cmainwindow.cpp new file mode 100644 index 0000000..76c6eaf --- /dev/null +++ b/app/cmainwindow.cpp @@ -0,0 +1,43 @@ +#include "cmainwindow.h" +#include "./ui_cmainwindow.h" + + +#include "ifontprovider.h" + +#include +#include +#include + + +cMainWindow::cMainWindow(QWidget *parent) + : QMainWindow(parent) + , ui(new Ui::cMainWindow) +{ + ui->setupUi(this); + + QDir pluginsDir = QDir(QApplication::applicationDirPath()); + + const auto entryList = pluginsDir.entryList(QDir::Files); + for (const QString &fileName : entryList) { + QPluginLoader loader(pluginsDir.absoluteFilePath(fileName)); + QObject *plugin = loader.instance(); + if (plugin) { + auto *interface = qobject_cast(plugin); + if (!interface) + return; + qDebug() << "Name: " << interface->name(); + qDebug() << "Version: " << interface->version(); + } +#if 0 + else + qDebug() << loader.errorString(); +#endif + } + + +} + +cMainWindow::~cMainWindow() +{ + delete ui; +} diff --git a/app/cmainwindow.h b/app/cmainwindow.h new file mode 100644 index 0000000..ab71c0e --- /dev/null +++ b/app/cmainwindow.h @@ -0,0 +1,23 @@ +#ifndef CMAINWINDOW_H +#define CMAINWINDOW_H + +#include + +QT_BEGIN_NAMESPACE +namespace Ui { +class cMainWindow; +} +QT_END_NAMESPACE + +class cMainWindow : public QMainWindow +{ + Q_OBJECT + +public: + cMainWindow(QWidget *parent = nullptr); + ~cMainWindow(); + +private: + Ui::cMainWindow *ui; +}; +#endif // CMAINWINDOW_H diff --git a/app/cmainwindow.ui b/app/cmainwindow.ui new file mode 100644 index 0000000..b61f263 --- /dev/null +++ b/app/cmainwindow.ui @@ -0,0 +1,31 @@ + + + cMainWindow + + + + 0 + 0 + 800 + 600 + + + + cMainWindow + + + + + + 0 + 0 + 800 + 18 + + + + + + + + diff --git a/app/ifontprovider.h b/app/ifontprovider.h new file mode 100644 index 0000000..8cd3b9d --- /dev/null +++ b/app/ifontprovider.h @@ -0,0 +1,22 @@ +#ifndef IFONTPROVIDER_H +#define IFONTPROVIDER_H + + +#include +#include + + +class IFontProvider +{ +public: + virtual ~IFontProvider() = default; + virtual QString name() = 0; + virtual QString version() = 0; +}; + +QT_BEGIN_NAMESPACE +#define IFontProvider_iid "at.windesign.fontManager.IFontProvider/1.0" +Q_DECLARE_INTERFACE(IFontProvider, IFontProvider_iid) +QT_END_NAMESPACE + +#endif // IFONTPROVIDER_H diff --git a/app/main.cpp b/app/main.cpp new file mode 100644 index 0000000..025da0a --- /dev/null +++ b/app/main.cpp @@ -0,0 +1,11 @@ +#include "cmainwindow.h" + +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + cMainWindow w; + w.show(); + return a.exec(); +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cache-v2 b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cmakeFiles-v1 b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/codemodel-v2 b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/query/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cache-v2-91ccb68e9979d435ed24.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cache-v2-91ccb68e9979d435ed24.json new file mode 100644 index 0000000..0abccce --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cache-v2-91ccb68e9979d435ed24.json @@ -0,0 +1,6499 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/addr2line.exe" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "29" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "1" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "STRING", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_INIT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : ".obj" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc.exe" + }, + { + "name" : "CMAKE_C_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/dlltool.exe" + }, + { + "name" : "CMAKE_EDIT_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cache edit program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cmake-gui.exe" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "Unknown" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable output of compile commands during generation." + } + ], + "type" : "BOOL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Ninja" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GNUtoMS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Convert GNU import libraries to MS format (requires Visual Studio)" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CMAKE_HAVE_LIBC_PTHREAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + { + "name" : "CMAKE_INSTALL_BINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "User executables (bin)" + } + ], + "type" : "PATH", + "value" : "bin" + }, + { + "name" : "CMAKE_INSTALL_DATADIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data (DATAROOTDIR)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_DATAROOTDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data root (share)" + } + ], + "type" : "PATH", + "value" : "share" + }, + { + "name" : "CMAKE_INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files (include)" + } + ], + "type" : "PATH", + "value" : "include" + }, + { + "name" : "CMAKE_INSTALL_INFODIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Info documentation (DATAROOTDIR/info)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Object code libraries (lib)" + } + ], + "type" : "PATH", + "value" : "lib" + }, + { + "name" : "CMAKE_INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program executables (libexec)" + } + ], + "type" : "PATH", + "value" : "libexec" + }, + { + "name" : "CMAKE_INSTALL_LOCALEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Locale-dependent data (DATAROOTDIR/locale)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LOCALSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable single-machine data (var)" + } + ], + "type" : "PATH", + "value" : "var" + }, + { + "name" : "CMAKE_INSTALL_MANDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Man documentation (DATAROOTDIR/man)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files for non-gcc (/usr/include)" + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/fontManager" + }, + { + "name" : "CMAKE_INSTALL_RUNSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Run-time variable data (LOCALSTATEDIR/run)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_SBINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "System admin executables (sbin)" + } + ], + "type" : "PATH", + "value" : "sbin" + }, + { + "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable architecture-independent data (com)" + } + ], + "type" : "PATH", + "value" : "com" + }, + { + "name" : "CMAKE_INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only single-machine data (etc)" + } + ], + "type" : "PATH", + "value" : "etc" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program used to build from build.ninja files." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/Ninja/ninja.exe" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "4" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_INCLUDE_BEFORE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "fontManager" + }, + { + "name" : "CMAKE_PROJECT_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0.1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MAJOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MINOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_PATCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_VERSION_TWEAK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe" + }, + { + "name" : "CMAKE_RC_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "RC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe" + }, + { + "name" : "CMAKE_RC_COMPILER_WORKS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_RC_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe" + }, + { + "name" : "CMAKE_TAPI", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_TAPI-NOTFOUND" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Threads" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding WrapAtomic" + } + ], + "type" : "INTERNAL", + "value" : "[1][v()]" + }, + { + "name" : "HAVE_STDATOMIC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_STDATOMIC" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) host Qt components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_ADDITIONAL_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Skip Qt Creator's package manager auto-setup" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for QT." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "QT_FEATURE_abstractbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_abstractslider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractslider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility_atspi_bridge", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility_atspi_bridge (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_action", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: action (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_aesni", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: aesni (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_alloca_malloc_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_android_style_assets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: android_style_assets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_animation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: animation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_appstore_compliant", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: appstore_compliant (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crc32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crc32 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crypto", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crypto (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512bw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512bw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512cd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512cd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512dq", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512dq (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512er", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512er (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512f", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512f (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512ifma", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512ifma (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512pf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512pf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_backtrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: backtrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_buttongroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: buttongroup (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_calendarwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: calendarwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_checkbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: checkbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clipboard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clipboard (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clock_gettime", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_gettime (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_clock_monotonic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_monotonic (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_close_range", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: close_range (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_colordialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colordialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_colornames", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colornames (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_columnview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: columnview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_combobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: combobox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlineparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlineparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlinkbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlinkbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_completer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: completer (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concatenatetablesproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concatenatetablesproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concurrent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concurrent (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_contextmenu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: contextmenu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cpp_winrt", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cpp_winrt (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cross_compile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cross_compile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cssparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cssparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ctf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ctf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cups", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cups (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cupsjobwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cupsjobwidget (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cupspassworddialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cupspassworddialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cursor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cursor (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx11_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx11_future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx17_filesystem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx17_filesystem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx20", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx20 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx23_stacktrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx23_stacktrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2a", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2a (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2b", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2b (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_datawidgetmapper", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datawidgetmapper (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datestring", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datestring (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug_and_release", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug_and_release (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_desktopservices", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: desktopservices (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_developer_build", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: developer_build (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dial", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dial (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialogbuttonbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialogbuttonbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d1_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_directfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_directwrite", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_directwrite3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dladdr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dladdr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dlopen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dlopen (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dockwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dockwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_draganddrop", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: draganddrop (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_drm_atomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: drm_atomic (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dynamicgl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dynamicgl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_easingcurve", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: easingcurve (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_effects", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: effects (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_egl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_egl_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_brcm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_brcm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_egldevice", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_egldevice (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_gbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_gbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_mali", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_mali (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_openwfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_openwfd (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_rcar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_rcar (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv_wl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv_wl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_elf_private_full_version", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: elf_private_full_version (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_errormessage", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: errormessage (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_etw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: etw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_evdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: evdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_f16c", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: f16c (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filedialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filedialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemiterator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemiterator (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemwatcher", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemwatcher (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontcombobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontcombobox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontconfig", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontconfig (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_fontdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_force_asserts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_asserts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_force_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_forkfd_pidfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_formlayout", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: formlayout (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_framework", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: framework (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fscompleter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fscompleter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_futimens", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: futimens (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gc_binaries", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gc_binaries (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gestures", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gestures (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_getauxval", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getauxval (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_getentropy", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getentropy (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gif", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gif (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_glib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_glibc_fortify_source", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glibc_fortify_source (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicseffect", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicseffect (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_graphicsframecapture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsframecapture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicsview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_groupbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: groupbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gtk3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gtk3 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gui", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gui (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_highdpiscaling", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: highdpiscaling (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_hijricalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: hijricalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ico", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ico (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_icu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: icu (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_identityproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: identityproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_im", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: im (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_heuristic_mask", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_heuristic_mask (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_text", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_text (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_bmp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_bmp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_ppm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_ppm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xpm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xpm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformatplugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformatplugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageio_text_loading", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageio_text_loading (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_inotify", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inotify (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_inputdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inputdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_integrityfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_integrityhid", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityhid (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_intelcet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: intelcet (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_islamiccivilcalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: islamiccivilcalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemviews", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemviews (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_jalalicalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jalalicalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_journald", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: journald (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_keysequenceedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: keysequenceedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_kms", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: kms (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_label", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: label (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_largefile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: largefile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lcdnumber", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lcdnumber (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libcpp_hardening", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libcpp_hardening (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_axis_api", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_axis_api (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_hires_wheel_support", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_hires_wheel_support (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_library", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: library (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libstdcpp_assertions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libstdcpp_assertions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libudev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libudev (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_lineedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lineedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_linkat", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linkat (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_linuxfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linuxfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_listview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_listwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_localtime_r", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localtime_r (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_localtime_s", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localtime_s (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lttng", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lttng (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mainwindow", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mainwindow (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mdiarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mdiarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_memmem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: memmem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_memrchr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: memrchr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_menu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_menubar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menubar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_messagebox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: messagebox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_metal", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: metal (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mimetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mimetype_database", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype_database (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mips_dsp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dsp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mips_dspr2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dspr2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_movie", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: movie (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mtdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mtdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_multiprocess", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: multiprocess (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_neon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: neon (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_network", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: network (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_no_direct_extern_access", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_direct_extern_access (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_no_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengles2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles31", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles31 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles32 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openssl_hash", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_hash (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv11 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv30", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv30 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openvg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openvg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pdf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pdf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_permissions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: permissions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_picture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: picture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_plugin_manifest", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: plugin_manifest (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_poll_exit_on_error", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_exit_on_error (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_poll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_poll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_pollts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_pollts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_ppoll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_ppoll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_select", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_select (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_fallocate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_fallocate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_posix_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_precompile_header", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: precompile_header (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printdialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printer (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printpreviewdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printpreviewdialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printpreviewwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printpreviewwidget (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printsupport", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printsupport (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_private_tests", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: private_tests (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_process", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: process (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_processenvironment", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: processenvironment (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_proxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: proxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pushbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pushbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qqnx_imf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_imf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qqnx_pps", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_pps (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_radiobutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: radiobutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_64bit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_64bit (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_fp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_fp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdrnd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdrnd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdseed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdseed (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_exports", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_exports (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_relocations", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_relocations (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_regularexpression", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: regularexpression (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relocatable", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relocatable (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relro_now_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relro_now_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_renameat2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: renameat2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_resizehandler", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: resizehandler (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rpath", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rpath (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_rubberband", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rubberband (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scroller", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scroller (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_separate_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: separate_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sessionmanager", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sessionmanager (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_settings", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: settings (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sha3_fast", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sha3_fast (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shani", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shani (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shared", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shared (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sharedmemory", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sharedmemory (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shortcut", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shortcut (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_signaling_nan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: signaling_nan (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_simulator_and_device", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: simulator_and_device (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sizegrip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sizegrip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slog2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slog2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sortfilterproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_spinbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: spinbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splashscreen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splashscreen (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splitter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splitter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sql", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sql (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_1 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ssse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ssse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stack_clash_protection", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_clash_protection (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stack_protector", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_protector (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stackedwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stackedwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_standarditemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: standarditemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_static", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: static (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_statusbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statusbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_statustip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statustip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_std_atomic64", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: std_atomic64 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stdlib_libcpp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stdlib_libcpp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_stringlistmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stringlistmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_android", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_android (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_fusion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_fusion (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_mac", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_mac (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_stylesheet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_stylesheet (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows11 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windowsvista", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windowsvista (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syntaxhighlighter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syntaxhighlighter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syslog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syslog (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_libb2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_libb2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_xcb_xinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_xcb_xinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_zlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_zlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_systemsemaphore", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemsemaphore (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_systemtrayicon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemtrayicon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sysv_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sysv_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tabbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabletevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabletevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tableview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tableview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tablewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tablewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_temporaryfile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: temporaryfile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_testlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: testlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textbrowser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textbrowser (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textdate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textdate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_texthtmlparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: texthtmlparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textodfwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textodfwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_thread", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: thread (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone_locale", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone_locale (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_toolbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tooltip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tooltip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_translation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: translation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_transposeproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: transposeproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treeview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treeview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_trivial_auto_var_init_pattern", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tslib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tslib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tuiotouch", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tuiotouch (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undocommand", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undocommand (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undogroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undogroup (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undostack", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undostack (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undoview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undoview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_use_bfd_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_bfd_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_gold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_gold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_lld_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_lld_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_mold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_mold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vaes", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vaes (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_validator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: validator (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_version_tagging", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: version_tagging (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkgen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkgen (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkkhrdisplay", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkkhrdisplay (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vnc", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vnc (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vulkan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vulkan (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wasm_exceptions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_exceptions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wasm_simd128", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_simd128 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wayland", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wayland (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_whatsthis", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: whatsthis (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wheelevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wheelevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgettextcontrol", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgettextcontrol (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wizard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wizard (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_x86intrin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: x86intrin (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xcb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_egl_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_egl_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_native_painting", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_native_painting (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_sm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_sm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xml", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xml (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstream", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstream (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xrender", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xrender (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_zstd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: zstd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_QMAKE_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/bin/qmake.exe" + }, + { + "name" : "Qt6CoreTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6CoreTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools" + }, + { + "name" : "Qt6Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Core." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core" + }, + { + "name" : "Qt6EntryPointPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6EntryPointPrivate." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate" + }, + { + "name" : "Qt6GuiTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6GuiTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools" + }, + { + "name" : "Qt6Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Gui." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui" + }, + { + "name" : "Qt6PrintSupport_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6PrintSupport." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport" + }, + { + "name" : "Qt6WidgetsTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6WidgetsTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools" + }, + { + "name" : "Qt6Widgets_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Widgets." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets" + }, + { + "name" : "Qt6ZlibPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6ZlibPrivate." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate" + }, + { + "name" : "Qt6_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_GLSLC_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLC_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "Vulkan_INCLUDE_DIR-NOTFOUND" + }, + { + "name" : "Vulkan_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_LIBRARY-NOTFOUND" + }, + { + "name" : "WINDEPLOYQT_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe" + }, + { + "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "linker supports push/pop state" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files (x86)/fontManager" + }, + { + "name" : "fontManager_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app" + }, + { + "name" : "fontManager_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "OFF" + }, + { + "name" : "fontManager_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cmakeFiles-v1-af90efe3c1dfa494637a.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cmakeFiles-v1-af90efe3c1dfa494637a.json new file mode 100644 index 0000000..4c8ab80 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/cmakeFiles-v1-af90efe3c1dfa494637a.json @@ -0,0 +1,1460 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + }, + { + "path" : "plugins/CMakeLists.txt" + }, + { + "path" : "plugins/googlefonts/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake" + }, + { + "path" : "app/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug", + "source" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-6cec58144dd111fc28c6.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-6cec58144dd111fc28c6.json new file mode 100644 index 0000000..5680a51 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/codemodel-v2-6cec58144dd111fc28c6.json @@ -0,0 +1,166 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "childIndexes" : + [ + 1, + 3 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "projectIndex" : 0, + "source" : "." + }, + { + "build" : "plugins", + "childIndexes" : + [ + 2 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-plugins-Debug-432f0029505b84f51ac1.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "plugins" + }, + { + "build" : "plugins/googlefonts", + "hasInstallRule" : true, + "jsonFile" : "directory-plugins.googlefonts-Debug-52b5caf25e6c978caebd.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "plugins/googlefonts", + "targetIndexes" : + [ + 3, + 4, + 5, + 6 + ] + }, + { + "build" : "app", + "hasInstallRule" : true, + "jsonFile" : "directory-app-Debug-69030c270d8f93fcf634.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "app", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0, + 1, + 2, + 3 + ], + "name" : "fontManager", + "targetIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 3, + "id" : "fontManager::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager-Debug-de6a7bdd62c064f12d43.json", + "name" : "fontManager", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "fontManager_autogen::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager_autogen-Debug-8fdeee9348af548da896.json", + "name" : "fontManager_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json", + "name" : "fontManager_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts-Debug-59eddd2d841fc0561739.json", + "name" : "googlefonts", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts_autogen-Debug-240b70dfb47076b0bc8c.json", + "name" : "googlefonts_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json", + "name" : "googlefonts_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "qt_internal_plugins::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json", + "name" : "qt_internal_plugins", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug", + "source" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + "version" : + { + "major" : 2, + "minor" : 7 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-d0094a50bb2071803777.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-d0094a50bb2071803777.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-.-Debug-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-app-Debug-69030c270d8f93fcf634.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-app-Debug-69030c270d8f93fcf634.json new file mode 100644 index 0000000..22b4ff8 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-app-Debug-69030c270d8f93fcf634.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 64, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "fontManager.exe" + ], + "targetId" : "fontManager::@5f5a17c01335469806cb", + "targetIndex" : 0, + "type" : "target" + } + ], + "paths" : + { + "build" : "app", + "source" : "app" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-plugins-Debug-432f0029505b84f51ac1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-plugins-Debug-432f0029505b84f51ac1.json new file mode 100644 index 0000000..b980c73 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-plugins-Debug-432f0029505b84f51ac1.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "plugins", + "source" : "plugins" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-plugins.googlefonts-Debug-52b5caf25e6c978caebd.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-plugins.googlefonts-Debug-52b5caf25e6c978caebd.json new file mode 100644 index 0000000..970c82e --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/directory-plugins.googlefonts-Debug-52b5caf25e6c978caebd.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 38, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin/app", + "paths" : + [ + "app/googlefonts.dll" + ], + "targetId" : "googlefonts::@eb1341fde24df9e9f4d4", + "targetIndex" : 3, + "type" : "target" + } + ], + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2024-10-25T12-57-09-0315.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2024-10-25T12-57-09-0315.json new file mode 100644 index 0000000..3b395e0 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/index-2024-10-25T12-57-09-0315.json @@ -0,0 +1,89 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe", + "cpack" : "C:/dev/Qt/Tools/CMake_64/bin/cpack.exe", + "ctest" : "C:/dev/Qt/Tools/CMake_64/bin/ctest.exe", + "root" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 29, + "patch" : 3, + "string" : "3.29.3", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-6cec58144dd111fc28c6.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + }, + { + "jsonFile" : "cache-v2-91ccb68e9979d435ed24.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-af90efe3c1dfa494637a.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-91ccb68e9979d435ed24.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-af90efe3c1dfa494637a.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-6cec58144dd111fc28c6.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + } + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-fontManager-Debug-de6a7bdd62c064f12d43.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-fontManager-Debug-de6a7bdd62c064f12d43.json new file mode 100644 index 0000000..f2630f9 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-fontManager-Debug-de6a7bdd62c064f12d43.json @@ -0,0 +1,566 @@ +{ + "artifacts" : + [ + { + "path" : "fontManager.exe" + }, + { + "path" : "fontManager.pdb" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "_qt_internal_create_executable", + "qt6_add_executable", + "qt_add_executable", + "install", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "find_dependency", + "_qt_internal_find_qt_dependencies", + "add_compile_definitions" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "app/CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 957, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 644, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 703, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 64, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 47, + "parent" : 0 + }, + { + "file" : 5 + }, + { + "command" : 8, + "file" : 5, + "line" : 7, + "parent" : 7 + }, + { + "file" : 4, + "parent" : 8 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 3, + "parent" : 10 + }, + { + "command" : 7, + "file" : 3, + "line" : 55, + "parent" : 11 + }, + { + "file" : 2, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 13 + }, + { + "command" : 5, + "file" : 0, + "line" : 645, + "parent" : 2 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 7, + "parent" : 16 + }, + { + "command" : 7, + "file" : 7, + "line" : 57, + "parent" : 17 + }, + { + "file" : 6, + "parent" : 18 + }, + { + "command" : 6, + "file" : 6, + "line" : 61, + "parent" : 19 + }, + { + "command" : 7, + "file" : 7, + "line" : 45, + "parent" : 17 + }, + { + "file" : 12, + "parent" : 21 + }, + { + "command" : 10, + "file" : 12, + "line" : 44, + "parent" : 22 + }, + { + "command" : 9, + "file" : 11, + "line" : 143, + "parent" : 23 + }, + { + "command" : 8, + "file" : 10, + "line" : 76, + "parent" : 24 + }, + { + "file" : 9, + "parent" : 25 + }, + { + "command" : 7, + "file" : 9, + "line" : 55, + "parent" : 26 + }, + { + "file" : 8, + "parent" : 27 + }, + { + "command" : 6, + "file" : 8, + "line" : 61, + "parent" : 28 + }, + { + "command" : 6, + "file" : 8, + "line" : 83, + "parent" : 28 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 14, + "parent" : 31 + }, + { + "command" : 7, + "file" : 14, + "line" : 55, + "parent" : 32 + }, + { + "file" : 13, + "parent" : 33 + }, + { + "command" : 6, + "file" : 13, + "line" : 61, + "parent" : 34 + }, + { + "command" : 11, + "file" : 5, + "line" : 11, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 15, + "define" : "MINGW_HAS_SECURE_API=1" + }, + { + "backtrace" : 15, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 15, + "define" : "QT_NEEDS_QMAIN" + }, + { + "backtrace" : 36, + "define" : "QT_NO_CAST_FROM_ASCII" + }, + { + "backtrace" : 6, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 15, + "define" : "UNICODE" + }, + { + "backtrace" : 15, + "define" : "WIN32" + }, + { + "backtrace" : 15, + "define" : "WIN64" + }, + { + "backtrace" : 15, + "define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE" + }, + { + "backtrace" : 15, + "define" : "_UNICODE" + }, + { + "backtrace" : 15, + "define" : "_WIN64" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/include" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtCore" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtGui" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 15, + 15 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "fontManager_autogen::@5f5a17c01335469806cb" + }, + { + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb" + } + ], + "id" : "fontManager::@5f5a17c01335469806cb", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/fontManager" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g", + "role" : "flags" + }, + { + "fragment" : "-mwindows", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 14, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Core.a", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-lmpr", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-luserenv", + "role" : "libraries" + }, + { + "backtrace" : 29, + "fragment" : "-lmingw32", + "role" : "libraries" + }, + { + "backtrace" : 29, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6EntryPoint.a", + "role" : "libraries" + }, + { + "backtrace" : 30, + "fragment" : "-lshell32", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ld3d11", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ldxgi", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ldxguid", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ld3d12", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "fontManager", + "nameOnDisk" : "fontManager.exe", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 6, + 7 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1, + 2 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 5 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 8 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "app/main.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "app/cmainwindow.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "app/cmainwindow.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "app/cmainwindow.ui", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 4, + "path" : "app/ifontprovider.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/include/ui_cmainwindow.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/timestamp.rule", + "sourceGroupIndex" : 4 + } + ], + "type" : "EXECUTABLE" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-fontManager_autogen-Debug-8fdeee9348af548da896.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-fontManager_autogen-Debug-8fdeee9348af548da896.json new file mode 100644 index 0000000..6c34210 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-fontManager_autogen-Debug-8fdeee9348af548da896.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "fontManager_autogen::@5f5a17c01335469806cb", + "isGeneratorProvided" : true, + "name" : "fontManager_autogen", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json new file mode 100644 index 0000000..79b87b0 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json @@ -0,0 +1,31 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb", + "isGeneratorProvided" : true, + "name" : "fontManager_autogen_timestamp_deps", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-googlefonts-Debug-59eddd2d841fc0561739.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-googlefonts-Debug-59eddd2d841fc0561739.json new file mode 100644 index 0000000..8eaba52 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-googlefonts-Debug-59eddd2d841fc0561739.json @@ -0,0 +1,562 @@ +{ + "artifacts" : + [ + { + "path" : "app/googlefonts.dll" + }, + { + "path" : "app/googlefonts.pdb" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt_add_plugin", + "install", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "target_compile_definitions", + "add_compile_definitions", + "target_include_directories", + "target_sources", + "qt6_extract_metatypes", + "qt6_finalize_target" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "plugins/googlefonts/CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:2648:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2657, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2557, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2767, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 38, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 28, + "parent" : 0 + }, + { + "file" : 5 + }, + { + "command" : 8, + "file" : 5, + "line" : 7, + "parent" : 8 + }, + { + "file" : 4, + "parent" : 9 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 10 + }, + { + "file" : 3, + "parent" : 11 + }, + { + "command" : 7, + "file" : 3, + "line" : 57, + "parent" : 12 + }, + { + "file" : 2, + "parent" : 13 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 14 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 10 + }, + { + "file" : 7, + "parent" : 16 + }, + { + "command" : 7, + "file" : 7, + "line" : 55, + "parent" : 17 + }, + { + "file" : 6, + "parent" : 18 + }, + { + "command" : 6, + "file" : 6, + "line" : 61, + "parent" : 19 + }, + { + "command" : 8, + "file" : 1, + "line" : 9, + "parent" : 0 + }, + { + "file" : 4, + "parent" : 21 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 22 + }, + { + "file" : 9, + "parent" : 23 + }, + { + "command" : 7, + "file" : 9, + "line" : 55, + "parent" : 24 + }, + { + "file" : 8, + "parent" : 25 + }, + { + "command" : 6, + "file" : 8, + "line" : 61, + "parent" : 26 + }, + { + "command" : 9, + "file" : 0, + "line" : 2624, + "parent" : 2 + }, + { + "command" : 10, + "file" : 5, + "line" : 11, + "parent" : 8 + }, + { + "command" : 11, + "file" : 1, + "line" : 16, + "parent" : 0 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 14, + "file" : 10, + "line" : 1, + "parent" : 31 + }, + { + "command" : 13, + "file" : 0, + "line" : 875, + "parent" : 32 + }, + { + "command" : 12, + "file" : 0, + "line" : 1512, + "parent" : 33 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 6, + "define" : "MINGW_HAS_SECURE_API=1" + }, + { + "backtrace" : 6, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 28, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 6, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 29, + "define" : "QT_NO_CAST_FROM_ASCII" + }, + { + "backtrace" : 28, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 7, + "define" : "QT_PRINTSUPPORT_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 6, + "define" : "UNICODE" + }, + { + "backtrace" : 6, + "define" : "WIN32" + }, + { + "backtrace" : 6, + "define" : "WIN64" + }, + { + "backtrace" : 6, + "define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE" + }, + { + "backtrace" : 6, + "define" : "_UNICODE" + }, + { + "backtrace" : 6, + "define" : "_WIN64" + }, + { + "define" : "googlefonts_EXPORTS" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/include" + }, + { + "backtrace" : 30, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/../../app" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtCore" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtGui" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtPrintSupport" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4" + }, + { + "backtrace" : 0, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4" + } + ], + "id" : "googlefonts::@eb1341fde24df9e9f4d4", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin/app" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/fontManager" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "-labstractviewer", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6PrintSupport.a", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 6, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Core.a", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "-lmpr", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "-luserenv", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ld3d11", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ldxgi", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ldxguid", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ld3d12", + "role" : "libraries" + }, + { + "backtrace" : 27, + "fragment" : "-lcomdlg32", + "role" : "libraries" + }, + { + "backtrace" : 27, + "fragment" : "-lwinspool", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "googlefonts", + "nameOnDisk" : "googlefonts.dll", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 4 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 2 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 3 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 5, + 6, + 7 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "plugins/googlefonts/googlefonts.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "plugins/googlefonts/googlefonts.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 34, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/timestamp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.rule", + "sourceGroupIndex" : 4 + } + ], + "type" : "MODULE_LIBRARY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-googlefonts_autogen-Debug-240b70dfb47076b0bc8c.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-googlefonts_autogen-Debug-240b70dfb47076b0bc8c.json new file mode 100644 index 0000000..cddc30e --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-googlefonts_autogen-Debug-240b70dfb47076b0bc8c.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4", + "isGeneratorProvided" : true, + "name" : "googlefonts_autogen", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json new file mode 100644 index 0000000..0136c24 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json @@ -0,0 +1,31 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4", + "isGeneratorProvided" : true, + "name" : "googlefonts_autogen_timestamp_deps", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json new file mode 100644 index 0000000..206eed3 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply.prev/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json @@ -0,0 +1,68 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_add_plugin", + "qt_add_plugin", + "add_dependencies" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 2657, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2631, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2634, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "googlefonts::@eb1341fde24df9e9f4d4" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "qt_internal_plugins::@eb1341fde24df9e9f4d4", + "name" : "qt_internal_plugins", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-91ccb68e9979d435ed24.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-91ccb68e9979d435ed24.json new file mode 100644 index 0000000..0abccce --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cache-v2-91ccb68e9979d435ed24.json @@ -0,0 +1,6499 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/addr2line.exe" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "29" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "1" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "STRING", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_INIT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : ".obj" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc.exe" + }, + { + "name" : "CMAKE_C_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/dlltool.exe" + }, + { + "name" : "CMAKE_EDIT_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cache edit program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cmake-gui.exe" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "Unknown" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable output of compile commands during generation." + } + ], + "type" : "BOOL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Ninja" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GNUtoMS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Convert GNU import libraries to MS format (requires Visual Studio)" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CMAKE_HAVE_LIBC_PTHREAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + { + "name" : "CMAKE_INSTALL_BINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "User executables (bin)" + } + ], + "type" : "PATH", + "value" : "bin" + }, + { + "name" : "CMAKE_INSTALL_DATADIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data (DATAROOTDIR)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_DATAROOTDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data root (share)" + } + ], + "type" : "PATH", + "value" : "share" + }, + { + "name" : "CMAKE_INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files (include)" + } + ], + "type" : "PATH", + "value" : "include" + }, + { + "name" : "CMAKE_INSTALL_INFODIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Info documentation (DATAROOTDIR/info)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Object code libraries (lib)" + } + ], + "type" : "PATH", + "value" : "lib" + }, + { + "name" : "CMAKE_INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program executables (libexec)" + } + ], + "type" : "PATH", + "value" : "libexec" + }, + { + "name" : "CMAKE_INSTALL_LOCALEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Locale-dependent data (DATAROOTDIR/locale)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LOCALSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable single-machine data (var)" + } + ], + "type" : "PATH", + "value" : "var" + }, + { + "name" : "CMAKE_INSTALL_MANDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Man documentation (DATAROOTDIR/man)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files for non-gcc (/usr/include)" + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/fontManager" + }, + { + "name" : "CMAKE_INSTALL_RUNSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Run-time variable data (LOCALSTATEDIR/run)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_SBINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "System admin executables (sbin)" + } + ], + "type" : "PATH", + "value" : "sbin" + }, + { + "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable architecture-independent data (com)" + } + ], + "type" : "PATH", + "value" : "com" + }, + { + "name" : "CMAKE_INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only single-machine data (etc)" + } + ], + "type" : "PATH", + "value" : "etc" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program used to build from build.ninja files." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/Ninja/ninja.exe" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "4" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_INCLUDE_BEFORE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "fontManager" + }, + { + "name" : "CMAKE_PROJECT_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0.1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MAJOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MINOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_PATCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_VERSION_TWEAK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe" + }, + { + "name" : "CMAKE_RC_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "RC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe" + }, + { + "name" : "CMAKE_RC_COMPILER_WORKS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_RC_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe" + }, + { + "name" : "CMAKE_TAPI", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_TAPI-NOTFOUND" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Threads" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding WrapAtomic" + } + ], + "type" : "INTERNAL", + "value" : "[1][v()]" + }, + { + "name" : "HAVE_STDATOMIC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_STDATOMIC" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) host Qt components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_ADDITIONAL_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Skip Qt Creator's package manager auto-setup" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for QT." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "QT_FEATURE_abstractbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_abstractslider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractslider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility_atspi_bridge", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility_atspi_bridge (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_action", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: action (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_aesni", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: aesni (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_alloca_malloc_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_android_style_assets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: android_style_assets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_animation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: animation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_appstore_compliant", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: appstore_compliant (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crc32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crc32 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crypto", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crypto (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512bw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512bw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512cd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512cd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512dq", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512dq (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512er", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512er (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512f", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512f (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512ifma", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512ifma (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512pf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512pf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_backtrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: backtrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_buttongroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: buttongroup (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_calendarwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: calendarwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_checkbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: checkbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clipboard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clipboard (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clock_gettime", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_gettime (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_clock_monotonic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_monotonic (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_close_range", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: close_range (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_colordialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colordialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_colornames", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colornames (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_columnview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: columnview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_combobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: combobox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlineparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlineparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlinkbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlinkbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_completer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: completer (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concatenatetablesproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concatenatetablesproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concurrent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concurrent (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_contextmenu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: contextmenu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cpp_winrt", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cpp_winrt (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cross_compile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cross_compile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cssparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cssparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ctf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ctf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cups", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cups (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cupsjobwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cupsjobwidget (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cupspassworddialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cupspassworddialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cursor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cursor (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx11_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx11_future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx17_filesystem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx17_filesystem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx20", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx20 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx23_stacktrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx23_stacktrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2a", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2a (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2b", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2b (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_datawidgetmapper", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datawidgetmapper (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datestring", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datestring (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug_and_release", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug_and_release (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_desktopservices", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: desktopservices (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_developer_build", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: developer_build (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dial", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dial (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialogbuttonbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialogbuttonbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d1_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_directfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_directwrite", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_directwrite3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dladdr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dladdr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dlopen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dlopen (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dockwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dockwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_draganddrop", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: draganddrop (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_drm_atomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: drm_atomic (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dynamicgl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dynamicgl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_easingcurve", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: easingcurve (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_effects", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: effects (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_egl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_egl_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_brcm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_brcm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_egldevice", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_egldevice (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_gbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_gbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_mali", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_mali (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_openwfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_openwfd (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_rcar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_rcar (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv_wl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv_wl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_elf_private_full_version", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: elf_private_full_version (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_errormessage", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: errormessage (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_etw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: etw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_evdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: evdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_f16c", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: f16c (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filedialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filedialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemiterator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemiterator (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemwatcher", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemwatcher (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontcombobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontcombobox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontconfig", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontconfig (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_fontdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_force_asserts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_asserts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_force_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_forkfd_pidfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_formlayout", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: formlayout (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_framework", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: framework (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fscompleter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fscompleter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_futimens", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: futimens (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gc_binaries", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gc_binaries (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gestures", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gestures (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_getauxval", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getauxval (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_getentropy", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getentropy (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gif", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gif (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_glib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_glibc_fortify_source", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glibc_fortify_source (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicseffect", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicseffect (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_graphicsframecapture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsframecapture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicsview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_groupbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: groupbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gtk3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gtk3 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gui", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gui (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_highdpiscaling", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: highdpiscaling (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_hijricalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: hijricalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ico", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ico (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_icu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: icu (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_identityproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: identityproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_im", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: im (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_heuristic_mask", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_heuristic_mask (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_text", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_text (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_bmp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_bmp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_ppm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_ppm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xpm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xpm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformatplugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformatplugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageio_text_loading", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageio_text_loading (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_inotify", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inotify (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_inputdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inputdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_integrityfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_integrityhid", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityhid (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_intelcet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: intelcet (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_islamiccivilcalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: islamiccivilcalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemviews", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemviews (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_jalalicalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jalalicalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_journald", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: journald (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_keysequenceedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: keysequenceedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_kms", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: kms (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_label", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: label (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_largefile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: largefile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lcdnumber", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lcdnumber (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libcpp_hardening", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libcpp_hardening (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_axis_api", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_axis_api (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_hires_wheel_support", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_hires_wheel_support (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_library", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: library (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libstdcpp_assertions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libstdcpp_assertions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libudev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libudev (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_lineedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lineedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_linkat", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linkat (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_linuxfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linuxfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_listview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_listwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_localtime_r", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localtime_r (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_localtime_s", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localtime_s (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lttng", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lttng (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mainwindow", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mainwindow (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mdiarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mdiarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_memmem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: memmem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_memrchr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: memrchr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_menu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_menubar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menubar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_messagebox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: messagebox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_metal", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: metal (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mimetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mimetype_database", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype_database (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mips_dsp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dsp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mips_dspr2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dspr2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_movie", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: movie (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mtdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mtdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_multiprocess", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: multiprocess (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_neon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: neon (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_network", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: network (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_no_direct_extern_access", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_direct_extern_access (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_no_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengles2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles31", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles31 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles32 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openssl_hash", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_hash (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv11 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv30", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv30 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openvg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openvg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pdf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pdf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_permissions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: permissions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_picture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: picture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_plugin_manifest", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: plugin_manifest (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_poll_exit_on_error", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_exit_on_error (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_poll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_poll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_pollts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_pollts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_ppoll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_ppoll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_select", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_select (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_fallocate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_fallocate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_posix_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_precompile_header", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: precompile_header (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printdialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printer (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printpreviewdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printpreviewdialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printpreviewwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printpreviewwidget (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printsupport", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printsupport (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_private_tests", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: private_tests (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_process", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: process (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_processenvironment", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: processenvironment (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_proxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: proxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pushbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pushbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qqnx_imf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_imf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qqnx_pps", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_pps (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_radiobutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: radiobutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_64bit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_64bit (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_fp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_fp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdrnd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdrnd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdseed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdseed (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_exports", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_exports (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_relocations", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_relocations (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_regularexpression", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: regularexpression (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relocatable", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relocatable (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relro_now_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relro_now_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_renameat2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: renameat2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_resizehandler", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: resizehandler (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rpath", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rpath (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_rubberband", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rubberband (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scroller", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scroller (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_separate_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: separate_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sessionmanager", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sessionmanager (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_settings", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: settings (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sha3_fast", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sha3_fast (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shani", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shani (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shared", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shared (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sharedmemory", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sharedmemory (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shortcut", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shortcut (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_signaling_nan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: signaling_nan (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_simulator_and_device", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: simulator_and_device (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sizegrip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sizegrip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slog2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slog2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sortfilterproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_spinbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: spinbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splashscreen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splashscreen (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splitter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splitter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sql", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sql (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_1 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ssse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ssse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stack_clash_protection", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_clash_protection (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stack_protector", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_protector (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stackedwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stackedwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_standarditemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: standarditemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_static", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: static (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_statusbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statusbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_statustip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statustip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_std_atomic64", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: std_atomic64 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stdlib_libcpp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stdlib_libcpp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_stringlistmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stringlistmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_android", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_android (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_fusion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_fusion (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_mac", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_mac (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_stylesheet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_stylesheet (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows11 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windowsvista", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windowsvista (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syntaxhighlighter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syntaxhighlighter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syslog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syslog (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_libb2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_libb2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_xcb_xinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_xcb_xinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_zlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_zlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_systemsemaphore", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemsemaphore (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_systemtrayicon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemtrayicon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sysv_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sysv_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tabbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabletevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabletevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tableview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tableview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tablewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tablewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_temporaryfile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: temporaryfile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_testlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: testlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textbrowser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textbrowser (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textdate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textdate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_texthtmlparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: texthtmlparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textodfwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textodfwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_thread", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: thread (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone_locale", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone_locale (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_toolbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tooltip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tooltip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_translation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: translation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_transposeproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: transposeproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treeview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treeview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_trivial_auto_var_init_pattern", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tslib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tslib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tuiotouch", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tuiotouch (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undocommand", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undocommand (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undogroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undogroup (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undostack", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undostack (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undoview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undoview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_use_bfd_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_bfd_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_gold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_gold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_lld_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_lld_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_mold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_mold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vaes", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vaes (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_validator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: validator (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_version_tagging", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: version_tagging (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkgen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkgen (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkkhrdisplay", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkkhrdisplay (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vnc", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vnc (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vulkan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vulkan (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wasm_exceptions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_exceptions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wasm_simd128", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_simd128 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wayland", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wayland (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_whatsthis", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: whatsthis (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wheelevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wheelevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgettextcontrol", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgettextcontrol (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wizard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wizard (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_x86intrin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: x86intrin (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xcb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_egl_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_egl_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_native_painting", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_native_painting (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_sm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_sm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xml", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xml (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstream", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstream (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xrender", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xrender (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_zstd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: zstd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_QMAKE_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/bin/qmake.exe" + }, + { + "name" : "Qt6CoreTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6CoreTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools" + }, + { + "name" : "Qt6Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Core." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core" + }, + { + "name" : "Qt6EntryPointPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6EntryPointPrivate." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate" + }, + { + "name" : "Qt6GuiTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6GuiTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools" + }, + { + "name" : "Qt6Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Gui." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui" + }, + { + "name" : "Qt6PrintSupport_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6PrintSupport." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport" + }, + { + "name" : "Qt6WidgetsTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6WidgetsTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools" + }, + { + "name" : "Qt6Widgets_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Widgets." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets" + }, + { + "name" : "Qt6ZlibPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6ZlibPrivate." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate" + }, + { + "name" : "Qt6_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_GLSLC_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLC_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "Vulkan_INCLUDE_DIR-NOTFOUND" + }, + { + "name" : "Vulkan_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_LIBRARY-NOTFOUND" + }, + { + "name" : "WINDEPLOYQT_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe" + }, + { + "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "linker supports push/pop state" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files (x86)/fontManager" + }, + { + "name" : "fontManager_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app" + }, + { + "name" : "fontManager_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "OFF" + }, + { + "name" : "fontManager_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cmakeFiles-v1-af90efe3c1dfa494637a.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cmakeFiles-v1-af90efe3c1dfa494637a.json new file mode 100644 index 0000000..4c8ab80 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/cmakeFiles-v1-af90efe3c1dfa494637a.json @@ -0,0 +1,1460 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + }, + { + "path" : "plugins/CMakeLists.txt" + }, + { + "path" : "plugins/googlefonts/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake" + }, + { + "path" : "app/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug", + "source" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-b3325efbb92513bbbd6d.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-b3325efbb92513bbbd6d.json new file mode 100644 index 0000000..17facdb --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/codemodel-v2-b3325efbb92513bbbd6d.json @@ -0,0 +1,166 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "childIndexes" : + [ + 1, + 3 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "projectIndex" : 0, + "source" : "." + }, + { + "build" : "plugins", + "childIndexes" : + [ + 2 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-plugins-Debug-432f0029505b84f51ac1.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "plugins" + }, + { + "build" : "plugins/googlefonts", + "hasInstallRule" : true, + "jsonFile" : "directory-plugins.googlefonts-Debug-89867994d616812654dc.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "plugins/googlefonts", + "targetIndexes" : + [ + 3, + 4, + 5, + 6 + ] + }, + { + "build" : "app", + "hasInstallRule" : true, + "jsonFile" : "directory-app-Debug-69030c270d8f93fcf634.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "app", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0, + 1, + 2, + 3 + ], + "name" : "fontManager", + "targetIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 3, + "id" : "fontManager::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager-Debug-8667e07a773907cf4ffb.json", + "name" : "fontManager", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "fontManager_autogen::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager_autogen-Debug-8fdeee9348af548da896.json", + "name" : "fontManager_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json", + "name" : "fontManager_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts-Debug-8be39e44a07fda858696.json", + "name" : "googlefonts", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts_autogen-Debug-240b70dfb47076b0bc8c.json", + "name" : "googlefonts_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json", + "name" : "googlefonts_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "qt_internal_plugins::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json", + "name" : "qt_internal_plugins", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug", + "source" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + "version" : + { + "major" : 2, + "minor" : 7 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-app-Debug-69030c270d8f93fcf634.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-app-Debug-69030c270d8f93fcf634.json new file mode 100644 index 0000000..22b4ff8 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-app-Debug-69030c270d8f93fcf634.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 64, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "fontManager.exe" + ], + "targetId" : "fontManager::@5f5a17c01335469806cb", + "targetIndex" : 0, + "type" : "target" + } + ], + "paths" : + { + "build" : "app", + "source" : "app" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-plugins-Debug-432f0029505b84f51ac1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-plugins-Debug-432f0029505b84f51ac1.json new file mode 100644 index 0000000..b980c73 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-plugins-Debug-432f0029505b84f51ac1.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "plugins", + "source" : "plugins" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-plugins.googlefonts-Debug-89867994d616812654dc.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-plugins.googlefonts-Debug-89867994d616812654dc.json new file mode 100644 index 0000000..0e44d5c --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/directory-plugins.googlefonts-Debug-89867994d616812654dc.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 37, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin/app", + "paths" : + [ + "app/googlefonts.dll" + ], + "targetId" : "googlefonts::@eb1341fde24df9e9f4d4", + "targetIndex" : 3, + "type" : "target" + } + ], + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2024-10-25T13-01-36-0655.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2024-10-25T13-01-36-0655.json new file mode 100644 index 0000000..a6e4d78 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/index-2024-10-25T13-01-36-0655.json @@ -0,0 +1,89 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe", + "cpack" : "C:/dev/Qt/Tools/CMake_64/bin/cpack.exe", + "ctest" : "C:/dev/Qt/Tools/CMake_64/bin/ctest.exe", + "root" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 29, + "patch" : 3, + "string" : "3.29.3", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-b3325efbb92513bbbd6d.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + }, + { + "jsonFile" : "cache-v2-91ccb68e9979d435ed24.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-af90efe3c1dfa494637a.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-91ccb68e9979d435ed24.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-af90efe3c1dfa494637a.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-b3325efbb92513bbbd6d.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + } + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager-Debug-8667e07a773907cf4ffb.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager-Debug-8667e07a773907cf4ffb.json new file mode 100644 index 0000000..b7a443e --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager-Debug-8667e07a773907cf4ffb.json @@ -0,0 +1,566 @@ +{ + "artifacts" : + [ + { + "path" : "fontManager.exe" + }, + { + "path" : "fontManager.pdb" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "_qt_internal_create_executable", + "qt6_add_executable", + "qt_add_executable", + "install", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "find_dependency", + "_qt_internal_find_qt_dependencies", + "add_compile_definitions" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "app/CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 957, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 644, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 703, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 64, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 47, + "parent" : 0 + }, + { + "file" : 5 + }, + { + "command" : 8, + "file" : 5, + "line" : 7, + "parent" : 7 + }, + { + "file" : 4, + "parent" : 8 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 3, + "parent" : 10 + }, + { + "command" : 7, + "file" : 3, + "line" : 55, + "parent" : 11 + }, + { + "file" : 2, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 13 + }, + { + "command" : 5, + "file" : 0, + "line" : 645, + "parent" : 2 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 7, + "parent" : 16 + }, + { + "command" : 7, + "file" : 7, + "line" : 57, + "parent" : 17 + }, + { + "file" : 6, + "parent" : 18 + }, + { + "command" : 6, + "file" : 6, + "line" : 61, + "parent" : 19 + }, + { + "command" : 7, + "file" : 7, + "line" : 45, + "parent" : 17 + }, + { + "file" : 12, + "parent" : 21 + }, + { + "command" : 10, + "file" : 12, + "line" : 44, + "parent" : 22 + }, + { + "command" : 9, + "file" : 11, + "line" : 143, + "parent" : 23 + }, + { + "command" : 8, + "file" : 10, + "line" : 76, + "parent" : 24 + }, + { + "file" : 9, + "parent" : 25 + }, + { + "command" : 7, + "file" : 9, + "line" : 55, + "parent" : 26 + }, + { + "file" : 8, + "parent" : 27 + }, + { + "command" : 6, + "file" : 8, + "line" : 61, + "parent" : 28 + }, + { + "command" : 6, + "file" : 8, + "line" : 83, + "parent" : 28 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 14, + "parent" : 31 + }, + { + "command" : 7, + "file" : 14, + "line" : 55, + "parent" : 32 + }, + { + "file" : 13, + "parent" : 33 + }, + { + "command" : 6, + "file" : 13, + "line" : 61, + "parent" : 34 + }, + { + "command" : 11, + "file" : 5, + "line" : 11, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 15, + "define" : "MINGW_HAS_SECURE_API=1" + }, + { + "backtrace" : 15, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 15, + "define" : "QT_NEEDS_QMAIN" + }, + { + "backtrace" : 36, + "define" : "QT_NO_CAST_FROM_ASCII" + }, + { + "backtrace" : 6, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 15, + "define" : "UNICODE" + }, + { + "backtrace" : 15, + "define" : "WIN32" + }, + { + "backtrace" : 15, + "define" : "WIN64" + }, + { + "backtrace" : 15, + "define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE" + }, + { + "backtrace" : 15, + "define" : "_UNICODE" + }, + { + "backtrace" : 15, + "define" : "_WIN64" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/include" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtCore" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtGui" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 15, + 15 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "dependencies" : + [ + { + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb" + }, + { + "backtrace" : 0, + "id" : "fontManager_autogen::@5f5a17c01335469806cb" + } + ], + "id" : "fontManager::@5f5a17c01335469806cb", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/fontManager" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g", + "role" : "flags" + }, + { + "fragment" : "-mwindows", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 14, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Core.a", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-lmpr", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-luserenv", + "role" : "libraries" + }, + { + "backtrace" : 29, + "fragment" : "-lmingw32", + "role" : "libraries" + }, + { + "backtrace" : 29, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6EntryPoint.a", + "role" : "libraries" + }, + { + "backtrace" : 30, + "fragment" : "-lshell32", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ld3d11", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ldxgi", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ldxguid", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ld3d12", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "fontManager", + "nameOnDisk" : "fontManager.exe", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 6, + 7 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1, + 2 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 5 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 8 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "app/main.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "app/cmainwindow.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "app/cmainwindow.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "app/cmainwindow.ui", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 4, + "path" : "app/ifontprovider.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/include/ui_cmainwindow.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/timestamp.rule", + "sourceGroupIndex" : 4 + } + ], + "type" : "EXECUTABLE" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen-Debug-8fdeee9348af548da896.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen-Debug-8fdeee9348af548da896.json new file mode 100644 index 0000000..6c34210 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen-Debug-8fdeee9348af548da896.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "fontManager_autogen::@5f5a17c01335469806cb", + "isGeneratorProvided" : true, + "name" : "fontManager_autogen", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json new file mode 100644 index 0000000..79b87b0 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json @@ -0,0 +1,31 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb", + "isGeneratorProvided" : true, + "name" : "fontManager_autogen_timestamp_deps", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-googlefonts-Debug-8be39e44a07fda858696.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-googlefonts-Debug-8be39e44a07fda858696.json new file mode 100644 index 0000000..eb17298 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-googlefonts-Debug-8be39e44a07fda858696.json @@ -0,0 +1,557 @@ +{ + "artifacts" : + [ + { + "path" : "app/googlefonts.dll" + }, + { + "path" : "app/googlefonts.pdb" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt_add_plugin", + "install", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "target_compile_definitions", + "add_compile_definitions", + "target_include_directories", + "target_sources", + "qt6_extract_metatypes", + "qt6_finalize_target" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "plugins/googlefonts/CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:2648:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2657, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2557, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2767, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 37, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 27, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "file" : 5 + }, + { + "command" : 8, + "file" : 5, + "line" : 7, + "parent" : 8 + }, + { + "file" : 4, + "parent" : 9 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 10 + }, + { + "file" : 3, + "parent" : 11 + }, + { + "command" : 7, + "file" : 3, + "line" : 57, + "parent" : 12 + }, + { + "file" : 2, + "parent" : 13 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 14 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 10 + }, + { + "file" : 7, + "parent" : 16 + }, + { + "command" : 7, + "file" : 7, + "line" : 55, + "parent" : 17 + }, + { + "file" : 6, + "parent" : 18 + }, + { + "command" : 6, + "file" : 6, + "line" : 61, + "parent" : 19 + }, + { + "command" : 8, + "file" : 1, + "line" : 9, + "parent" : 0 + }, + { + "file" : 4, + "parent" : 21 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 22 + }, + { + "file" : 9, + "parent" : 23 + }, + { + "command" : 7, + "file" : 9, + "line" : 55, + "parent" : 24 + }, + { + "file" : 8, + "parent" : 25 + }, + { + "command" : 6, + "file" : 8, + "line" : 61, + "parent" : 26 + }, + { + "command" : 9, + "file" : 0, + "line" : 2624, + "parent" : 2 + }, + { + "command" : 10, + "file" : 5, + "line" : 11, + "parent" : 8 + }, + { + "command" : 11, + "file" : 1, + "line" : 16, + "parent" : 0 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 14, + "file" : 10, + "line" : 1, + "parent" : 31 + }, + { + "command" : 13, + "file" : 0, + "line" : 875, + "parent" : 32 + }, + { + "command" : 12, + "file" : 0, + "line" : 1512, + "parent" : 33 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "MINGW_HAS_SECURE_API=1" + }, + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 28, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 29, + "define" : "QT_NO_CAST_FROM_ASCII" + }, + { + "backtrace" : 28, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 6, + "define" : "QT_PRINTSUPPORT_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 7, + "define" : "UNICODE" + }, + { + "backtrace" : 7, + "define" : "WIN32" + }, + { + "backtrace" : 7, + "define" : "WIN64" + }, + { + "backtrace" : 7, + "define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE" + }, + { + "backtrace" : 7, + "define" : "_UNICODE" + }, + { + "backtrace" : 7, + "define" : "_WIN64" + }, + { + "define" : "googlefonts_EXPORTS" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/include" + }, + { + "backtrace" : 30, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/../../app" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtCore" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtGui" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtPrintSupport" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4" + }, + { + "backtrace" : 0, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4" + } + ], + "id" : "googlefonts::@eb1341fde24df9e9f4d4", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin/app" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/fontManager" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6PrintSupport.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Core.a", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "-lmpr", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "-luserenv", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ld3d11", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ldxgi", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ldxguid", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ld3d12", + "role" : "libraries" + }, + { + "backtrace" : 27, + "fragment" : "-lcomdlg32", + "role" : "libraries" + }, + { + "backtrace" : 27, + "fragment" : "-lwinspool", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "googlefonts", + "nameOnDisk" : "googlefonts.dll", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 4 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 2 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 3 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 5, + 6, + 7 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "plugins/googlefonts/googlefonts.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "plugins/googlefonts/googlefonts.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 34, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/timestamp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.rule", + "sourceGroupIndex" : 4 + } + ], + "type" : "MODULE_LIBRARY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-googlefonts_autogen-Debug-240b70dfb47076b0bc8c.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-googlefonts_autogen-Debug-240b70dfb47076b0bc8c.json new file mode 100644 index 0000000..cddc30e --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-googlefonts_autogen-Debug-240b70dfb47076b0bc8c.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4", + "isGeneratorProvided" : true, + "name" : "googlefonts_autogen", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json new file mode 100644 index 0000000..0136c24 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json @@ -0,0 +1,31 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4", + "isGeneratorProvided" : true, + "name" : "googlefonts_autogen_timestamp_deps", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json new file mode 100644 index 0000000..206eed3 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json @@ -0,0 +1,68 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_add_plugin", + "qt_add_plugin", + "add_dependencies" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 2657, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2631, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2634, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "googlefonts::@eb1341fde24df9e9f4d4" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "qt_internal_plugins::@eb1341fde24df9e9f4d4", + "name" : "qt_internal_plugins", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.ninja_deps b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.ninja_deps new file mode 100644 index 0000000..44a35f5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.ninja_deps differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.ninja_log b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.ninja_log new file mode 100644 index 0000000..aa95fa1 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.ninja_log @@ -0,0 +1,37 @@ +# ninja log v6 +42 657 7515644565625818 plugins/googlefonts/googlefonts_autogen/timestamp 3341e6ccd6f7de14 +42 657 7515644565625818 plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp 3341e6ccd6f7de14 +42 657 7515644565625818 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/timestamp 3341e6ccd6f7de14 +658 700 7515644567031245 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt 1d8ffe3c767fae37 +42 657 7515644565625818 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp 3341e6ccd6f7de14 +658 700 7515644567031245 plugins/googlefonts/meta_types/googlefonts_json_file_list.txt 1d8ffe3c767fae37 +756 2301 7515644567649506 plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj b9b7c00b214b0ae6 +658 700 7515644567031245 plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp 1d8ffe3c767fae37 +658 700 7515644567031245 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp 1d8ffe3c767fae37 +701 752 7515644567094974 plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen 3ec5d7f8788892c0 +701 752 7515644567094974 plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json 3ec5d7f8788892c0 +701 752 7515644567094974 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen 3ec5d7f8788892c0 +701 752 7515644567094974 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json 3ec5d7f8788892c0 +753 2317 7515644567543117 plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj f6e1b60602d0e200 +42 255 7515645031195380 plugins/googlefonts/googlefonts_autogen/timestamp 3341e6ccd6f7de14 +42 255 7515645031195380 plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp 3341e6ccd6f7de14 +42 255 7515645031195380 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/timestamp 3341e6ccd6f7de14 +42 255 7515645031195380 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp 3341e6ccd6f7de14 +257 304 7515645033732639 plugins/googlefonts/meta_types/googlefonts_json_file_list.txt 1d8ffe3c767fae37 +257 304 7515645033732639 plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp 1d8ffe3c767fae37 +257 304 7515645033732639 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt 1d8ffe3c767fae37 +257 304 7515645033732639 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp 1d8ffe3c767fae37 +304 368 7515645033818971 plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen 3ec5d7f8788892c0 +304 368 7515645033818971 plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json 3ec5d7f8788892c0 +304 368 7515645033818971 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen 3ec5d7f8788892c0 +304 368 7515645033818971 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json 3ec5d7f8788892c0 +368 509 7515645034440825 app/googlefonts.dll 9c7cb46cc9af53c9 +56 831 7515645584688375 app/fontManager_autogen/timestamp 2b4d3d0a4eef971d +56 831 7515645584688375 app/fontManager_autogen/mocs_compilation.cpp 2b4d3d0a4eef971d +56 831 7515645584688375 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/timestamp 2b4d3d0a4eef971d +56 831 7515645584688375 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/mocs_compilation.cpp 2b4d3d0a4eef971d +832 2684 7515645585740703 app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj b13f1e1344bf28e2 +853 2774 7515645585931466 app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj 3d989b1d5ee7cd20 +847 2791 7515645585851309 app/CMakeFiles/fontManager.dir/main.cpp.obj 92145a8b30e7a474 +2792 2964 7515645605289915 fontManager.exe b0a4f389c0b6314f +51 257 7515647529296684 fontManager.exe b0a4f389c0b6314f diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeploySupport.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeploySupport.cmake new file mode 100644 index 0000000..2918e69 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeploySupport.cmake @@ -0,0 +1,69 @@ +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 "") +endif() + +# These are internal implementation details. They may be removed at any time. +set(__QT_DEPLOY_SYSTEM_NAME "Windows") +set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON") +set(__QT_DEPLOY_TOOL "C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe") +set(__QT_DEPLOY_IMPL_DIR "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt") +set(__QT_DEPLOY_VERBOSE "") +set(__QT_CMAKE_EXPORT_NAMESPACE "Qt6") +set(__QT_DEPLOY_GENERATOR_IS_MULTI_CONFIG "0") +set(__QT_DEPLOY_ACTIVE_CONFIG "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 "C:/dev/Qt/6.8.0/mingw_64") +set(__QT_DEPLOY_QT_INSTALL_BINS "bin") +set(__QT_DEPLOY_QT_INSTALL_DATA ".") +set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "bin") +set(__QT_DEPLOY_QT_INSTALL_PLUGINS "plugins") +set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "translations") +set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "C:/dev/Qt/6.8.0/mingw_64/bin/qtpaths6.exe") +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 + "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake" + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake" +) +foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files) + include("${__qt_deploy_support_file}") +endforeach() + +unset(__qt_deploy_support_file) +unset(__qt_deploy_support_files) diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake new file mode 100644 index 0000000..8618b73 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qt/QtDeployTargets.cmake @@ -0,0 +1,6 @@ +set(__QT_DEPLOY_TARGET_googlefonts_FILE C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/googlefonts.dll) +set(__QT_DEPLOY_TARGET_googlefonts_TYPE MODULE_LIBRARY) +set(__QT_DEPLOY_TARGET_googlefonts_RUNTIME_DLLS C:/dev/Qt/6.8.0/mingw_64/bin/Qt6PrintSupport.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Widgets.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Gui.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Core.dll) +set(__QT_DEPLOY_TARGET_fontManager_FILE C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/fontManager.exe) +set(__QT_DEPLOY_TARGET_fontManager_TYPE EXECUTABLE) +set(__QT_DEPLOY_TARGET_fontManager_RUNTIME_DLLS C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Widgets.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Gui.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Core.dll) diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/LICENSE.conan b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/LICENSE.conan new file mode 100644 index 0000000..541f5a3 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/LICENSE.conan @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2019 JFrog + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake new file mode 100644 index 0000000..c797138 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake @@ -0,0 +1,272 @@ +# +# Internal Qt Creator variable reference +# +foreach(qtcreator_var + QT_QMAKE_EXECUTABLE CMAKE_PREFIX_PATH CMAKE_C_COMPILER CMAKE_CXX_COMPILER + CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO) + set(__just_reference_${qtcreator_var} ${${qtcreator_var}}) +endforeach() + +if (EXISTS "${CMAKE_SOURCE_DIR}/QtCreatorPackageManager.cmake") + include("${CMAKE_SOURCE_DIR}/QtCreatorPackageManager.cmake") +endif() + +if (QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP) + return() +endif() +option(QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP "Skip Qt Creator's package manager auto-setup" OFF) + +# Store the C/C++ object output extension +if (CMAKE_VERSION GREATER_EQUAL "3.19") + cmake_language(DEFER CALL set CMAKE_C_OUTPUT_EXTENSION "${CMAKE_C_OUTPUT_EXTENSION}" CACHE STRING "" FORCE) + cmake_language(DEFER CALL set CMAKE_CXX_OUTPUT_EXTENSION "${CMAKE_CXX_OUTPUT_EXTENSION}" CACHE STRING "" FORCE) +endif() + +macro(qtc_auto_setup_compiler_standard toolchainFile) + foreach(lang_var C CXX CUDA OBJC OBJCXX) + foreach(prop_var STANDARD STANDARD_REQUIRED EXTENSIONS) + if (CMAKE_${lang_var}_${prop_var}) + file(APPEND "${toolchainFile}" + "set(CMAKE_${lang_var}_${prop_var} ${CMAKE_${lang_var}_${prop_var}})\n") + endif() + endforeach() + endforeach() + + # Forward important CMake variables to the package manager in the toolchain file + foreach(fwd_var CMAKE_MSVC_RUNTIME_LIBRARY CMAKE_SYSROOT CMAKE_OSX_SYSROOT CMAKE_OSX_ARCHITECTURES) + if (${fwd_var}) + file(APPEND "${toolchainFile}" + "set(${fwd_var} ${${fwd_var}})\n") + endif() + endforeach() +endmacro() + +# +# conan +# +macro(qtc_auto_setup_conan) + foreach(file conanfile.txt conanfile.py) + if (EXISTS "${CMAKE_SOURCE_DIR}/${file}") + set(conanfile_txt "${CMAKE_SOURCE_DIR}/${file}") + break() + endif() + endforeach() + + if (conanfile_txt AND NOT QT_CREATOR_SKIP_CONAN_SETUP) + option(QT_CREATOR_SKIP_CONAN_SETUP "Skip Qt Creator's conan package manager auto-setup" OFF) + set(QT_CREATOR_CONAN_BUILD_POLICY "missing" CACHE STRING "Qt Creator's conan package manager auto-setup build policy. This is used for the BUILD property of cmake_conan_run") + + find_program(conan_program conan) + if (NOT conan_program) + message(WARNING "Qt Creator: conan executable not found. " + "Package manager auto-setup will be skipped. " + "To disable this warning set QT_CREATOR_SKIP_CONAN_SETUP to ON.") + return() + endif() + execute_process(COMMAND ${conan_program} --version + RESULT_VARIABLE result_code + OUTPUT_VARIABLE conan_version_output + ERROR_VARIABLE conan_version_output) + if (NOT result_code EQUAL 0) + message(FATAL_ERROR "conan --version failed='${result_code}: ${conan_version_output}") + endif() + + string(REGEX REPLACE ".*Conan version ([0-9].[0-9]).*" "\\1" conan_version "${conan_version_output}") + + set(conanfile_timestamp_file "${CMAKE_BINARY_DIR}/conan-dependencies/conanfile.timestamp") + file(TIMESTAMP "${conanfile_txt}" conanfile_timestamp) + + set(do_conan_installation ON) + if (EXISTS "${conanfile_timestamp_file}") + file(READ "${conanfile_timestamp_file}" old_conanfile_timestamp) + if ("${conanfile_timestamp}" STREQUAL "${old_conanfile_timestamp}") + set(do_conan_installation OFF) + endif() + endif() + + set(conanfile_build_policy_file "${CMAKE_BINARY_DIR}/conan-dependencies/conanfile.buildpolicy") + if (EXISTS "${conanfile_build_policy_file}") + file(READ "${conanfile_build_policy_file}" build_policy) + if (NOT "${build_policy}" STREQUAL "${QT_CREATOR_CONAN_BUILD_POLICY}") + set(do_conan_installation ON) + endif() + endif() + + if (do_conan_installation) + message(STATUS "Qt Creator: conan package manager auto-setup. " + "Skip this step by setting QT_CREATOR_SKIP_CONAN_SETUP to ON.") + + file(COPY "${conanfile_txt}" DESTINATION "${CMAKE_BINARY_DIR}/conan-dependencies/") + + file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" " + set(CMAKE_C_COMPILER \"${CMAKE_C_COMPILER}\") + set(CMAKE_CXX_COMPILER \"${CMAKE_CXX_COMPILER}\") + ") + qtc_auto_setup_compiler_standard("${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake") + + if (CMAKE_TOOLCHAIN_FILE) + file(APPEND "${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" + "include(\"${CMAKE_TOOLCHAIN_FILE}\")\n") + endif() + + file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/CMakeLists.txt" " + cmake_minimum_required(VERSION 3.15) + + unset(CMAKE_PROJECT_INCLUDE_BEFORE CACHE) + project(conan-setup) + + if (${conan_version} VERSION_GREATER_EQUAL 2.0) + set(CONAN_COMMAND \"${conan_program}\") + include(\"${CMAKE_CURRENT_LIST_DIR}/conan_provider.cmake\") + conan_profile_detect_default() + detect_host_profile(\"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\") + + set(build_types \${CMAKE_BUILD_TYPE}) + if (CMAKE_CONFIGURATION_TYPES) + set(build_types \${CMAKE_CONFIGURATION_TYPES}) + endif() + + foreach(type \${build_types}) + conan_install( + -pr \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\" + --build=${QT_CREATOR_CONAN_BUILD_POLICY} + -s build_type=\${type} + -g CMakeDeps) + endforeach() + + get_property(CONAN_INSTALL_SUCCESS GLOBAL PROPERTY CONAN_INSTALL_SUCCESS) + if (CONAN_INSTALL_SUCCESS) + get_property(CONAN_GENERATORS_FOLDER GLOBAL PROPERTY CONAN_GENERATORS_FOLDER) + file(TO_CMAKE_PATH \"\${CONAN_GENERATORS_FOLDER}\" CONAN_GENERATORS_FOLDER) + file(WRITE \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_paths.cmake\" \" + list(PREPEND CMAKE_PREFIX_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(PREPEND CMAKE_MODULE_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(PREPEND CMAKE_FIND_ROOT_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(REMOVE_DUPLICATES CMAKE_PREFIX_PATH) + list(REMOVE_DUPLICATES CMAKE_MODULE_PATH) + list(REMOVE_DUPLICATES CMAKE_FIND_ROOT_PATH) + set(CMAKE_PREFIX_PATH \\\"\\\${CMAKE_PREFIX_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + set(CMAKE_MODULE_PATH \\\"\\\${CMAKE_MODULE_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + set(CMAKE_FIND_ROOT_PATH \\\"\\\${CMAKE_FIND_ROOT_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + \") + endif() + else() + include(\"${CMAKE_CURRENT_LIST_DIR}/conan.cmake\") + conan_cmake_run( + CONANFILE \"${conanfile_txt}\" + INSTALL_FOLDER \"${CMAKE_BINARY_DIR}/conan-dependencies\" + GENERATORS cmake_paths cmake_find_package json + BUILD ${QT_CREATOR_CONAN_BUILD_POLICY} + ENV CONAN_CMAKE_TOOLCHAIN_FILE=\"${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake\" + ) + endif() + ") + + if (NOT DEFINED CMAKE_BUILD_TYPE AND NOT DEFINED CMAKE_CONFIGURATION_TYPES) + set(CMAKE_CONFIGURATION_TYPES "Debug;Release") + endif() + + execute_process(COMMAND ${CMAKE_COMMAND} + -S "${CMAKE_BINARY_DIR}/conan-dependencies/" + -B "${CMAKE_BINARY_DIR}/conan-dependencies/build" + -C "${CMAKE_BINARY_DIR}/qtcsettings.cmake" + -D "CMAKE_TOOLCHAIN_FILE=${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" + -G ${CMAKE_GENERATOR} + -D CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} + -D "CMAKE_CONFIGURATION_TYPES=${CMAKE_CONFIGURATION_TYPES}" + RESULT_VARIABLE result + ) + if (result EQUAL 0) + file(WRITE "${conanfile_timestamp_file}" "${conanfile_timestamp}") + file(WRITE "${conanfile_build_policy_file}" ${QT_CREATOR_CONAN_BUILD_POLICY}) + else() + message(WARNING "Qt Creator's conan package manager auto-setup failed. Consider setting " + "QT_CREATOR_SKIP_CONAN_SETUP to ON and reconfigure to skip this step.") + return() + endif() + endif() + + include("${CMAKE_BINARY_DIR}/conan-dependencies/conan_paths.cmake") + endif() + unset(conanfile_txt) +endmacro() +qtc_auto_setup_conan() + +# +# vcpkg +# +macro(qtc_auto_setup_vcpkg) + if (EXISTS "${CMAKE_SOURCE_DIR}/vcpkg.json" AND NOT QT_CREATOR_SKIP_VCPKG_SETUP) + option(QT_CREATOR_SKIP_VCPKG_SETUP "Skip Qt Creator's vcpkg package manager auto-setup" OFF) + + find_program(vcpkg_program vcpkg + PATHS $ENV{VCPKG_ROOT} ${CMAKE_SOURCE_DIR}/vcpkg + NO_DEFAULT_PATH + ) + if (NOT vcpkg_program) + message(WARNING "Qt Creator: vcpkg executable not found. " + "Package manager auto-setup will be skipped. " + "To disable this warning set QT_CREATOR_SKIP_VCPKG_SETUP to ON.") + return() + endif() + execute_process(COMMAND ${vcpkg_program} version + RESULT_VARIABLE result_code + OUTPUT_VARIABLE vcpkg_version_output + ERROR_VARIABLE vcpkg_version_output) + if (NOT result_code EQUAL 0) + message(FATAL_ERROR "vcpkg version failed='${result_code}: ${vcpkg_version_output}") + endif() + + # Resolve any symlinks + get_filename_component(vpkg_program_real_path ${vcpkg_program} REALPATH) + get_filename_component(vpkg_root ${vpkg_program_real_path} DIRECTORY) + + if (NOT EXISTS "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + message(STATUS "Qt Creator: vcpkg package manager auto-setup. " + "Skip this step by setting QT_CREATOR_SKIP_VCPKG_SETUP to ON.") + + file(WRITE "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" " + set(CMAKE_C_COMPILER \"${CMAKE_C_COMPILER}\") + set(CMAKE_CXX_COMPILER \"${CMAKE_CXX_COMPILER}\") + ") + qtc_auto_setup_compiler_standard("${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + + if (CMAKE_TOOLCHAIN_FILE AND NOT + CMAKE_TOOLCHAIN_FILE STREQUAL "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + file(APPEND "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" + "include(\"${CMAKE_TOOLCHAIN_FILE}\")\n") + endif() + + if (VCPKG_TARGET_TRIPLET) + set(vcpkg_triplet ${VCPKG_TARGET_TRIPLET}) + else() + if (WIN32) + set(vcpkg_triplet x64-mingw-static) + if (CMAKE_CXX_COMPILER MATCHES ".*/(.*)/cl.exe") + set(vcpkg_triplet ${CMAKE_MATCH_1}-windows) + endif() + elseif(APPLE) + set(vcpkg_triplet x64-osx) + else() + set(vcpkg_triplet x64-linux) + endif() + endif() + + file(APPEND "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" " + set(VCPKG_TARGET_TRIPLET ${vcpkg_triplet}) + include(\"${vpkg_root}/scripts/buildsystems/vcpkg.cmake\") + ") + endif() + + set(CMAKE_TOOLCHAIN_FILE "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" CACHE PATH "" FORCE) + + # Save CMAKE_PREFIX_PATH and CMAKE_MODULE_PATH as cache variables + if (CMAKE_VERSION GREATER_EQUAL "3.19") + cmake_language(DEFER CALL list REMOVE_DUPLICATES CMAKE_PREFIX_PATH) + cmake_language(DEFER CALL list REMOVE_DUPLICATES CMAKE_MODULE_PATH) + cmake_language(DEFER CALL set CMAKE_PREFIX_PATH "${CMAKE_PREFIX_PATH}" CACHE STRING "" FORCE) + cmake_language(DEFER CALL set CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" CACHE STRING "" FORCE) + endif() + endif() +endmacro() +qtc_auto_setup_vcpkg() diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan.cmake new file mode 100644 index 0000000..4f5f67e --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan.cmake @@ -0,0 +1,1026 @@ +# The MIT License (MIT) + +# Copyright (c) 2018 JFrog + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + + + +# This file comes from: https://github.com/conan-io/cmake-conan. Please refer +# to this repository for issues and documentation. + +# Its purpose is to wrap and launch Conan C/C++ Package Manager when cmake is called. +# It will take CMake current settings (os, compiler, compiler version, architecture) +# and translate them to conan settings for installing and retrieving dependencies. + +# It is intended to facilitate developers building projects that have conan dependencies, +# but it is only necessary on the end-user side. It is not necessary to create conan +# packages, in fact it shouldn't be use for that. Check the project documentation. + +# version: 0.18.1 + +include(CMakeParseArguments) + +function(_get_msvc_ide_version result) + set(${result} "" PARENT_SCOPE) + if(NOT MSVC_VERSION VERSION_LESS 1400 AND MSVC_VERSION VERSION_LESS 1500) + set(${result} 8 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1500 AND MSVC_VERSION VERSION_LESS 1600) + set(${result} 9 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1600 AND MSVC_VERSION VERSION_LESS 1700) + set(${result} 10 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1700 AND MSVC_VERSION VERSION_LESS 1800) + set(${result} 11 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1800 AND MSVC_VERSION VERSION_LESS 1900) + set(${result} 12 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1900 AND MSVC_VERSION VERSION_LESS 1910) + set(${result} 14 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1910 AND MSVC_VERSION VERSION_LESS 1920) + set(${result} 15 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1920 AND MSVC_VERSION VERSION_LESS 1930) + set(${result} 16 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1930 AND MSVC_VERSION VERSION_LESS 1940) + set(${result} 17 PARENT_SCOPE) + else() + message(FATAL_ERROR "Conan: Unknown MSVC compiler version [${MSVC_VERSION}]") + endif() +endfunction() + +macro(_conan_detect_build_type) + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_BUILD_TYPE) + set(_CONAN_SETTING_BUILD_TYPE ${ARGUMENTS_BUILD_TYPE}) + elseif(CMAKE_BUILD_TYPE) + set(_CONAN_SETTING_BUILD_TYPE ${CMAKE_BUILD_TYPE}) + else() + message(FATAL_ERROR "Please specify in command line CMAKE_BUILD_TYPE (-DCMAKE_BUILD_TYPE=Release)") + endif() + + string(TOUPPER ${_CONAN_SETTING_BUILD_TYPE} _CONAN_SETTING_BUILD_TYPE_UPPER) + if (_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "DEBUG") + set(_CONAN_SETTING_BUILD_TYPE "Debug") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "RELEASE") + set(_CONAN_SETTING_BUILD_TYPE "Release") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "RELWITHDEBINFO") + set(_CONAN_SETTING_BUILD_TYPE "RelWithDebInfo") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "MINSIZEREL") + set(_CONAN_SETTING_BUILD_TYPE "MinSizeRel") + endif() +endmacro() + +macro(_conan_check_system_name) + #handle -s os setting + if(CMAKE_SYSTEM_NAME AND NOT CMAKE_SYSTEM_NAME STREQUAL "Generic") + #use default conan os setting if CMAKE_SYSTEM_NAME is not defined + set(CONAN_SYSTEM_NAME ${CMAKE_SYSTEM_NAME}) + if(${CMAKE_SYSTEM_NAME} STREQUAL "Darwin") + set(CONAN_SYSTEM_NAME Macos) + endif() + if(${CMAKE_SYSTEM_NAME} STREQUAL "QNX") + set(CONAN_SYSTEM_NAME Neutrino) + endif() + set(CONAN_SUPPORTED_PLATFORMS Windows Linux Macos Android iOS FreeBSD WindowsStore WindowsCE watchOS tvOS FreeBSD SunOS AIX Arduino Emscripten Neutrino) + list (FIND CONAN_SUPPORTED_PLATFORMS "${CONAN_SYSTEM_NAME}" _index) + if (${_index} GREATER -1) + #check if the cmake system is a conan supported one + set(_CONAN_SETTING_OS ${CONAN_SYSTEM_NAME}) + else() + message(FATAL_ERROR "cmake system ${CONAN_SYSTEM_NAME} is not supported by conan. Use one of ${CONAN_SUPPORTED_PLATFORMS}") + endif() + endif() +endmacro() + +macro(_conan_check_language) + get_property(_languages GLOBAL PROPERTY ENABLED_LANGUAGES) + if (";${_languages};" MATCHES ";CXX;") + set(LANGUAGE CXX) + set(USING_CXX 1) + elseif (";${_languages};" MATCHES ";C;") + set(LANGUAGE C) + set(USING_CXX 0) + else () + message(FATAL_ERROR "Conan: Neither C or C++ was detected as a language for the project. Unabled to detect compiler version.") + endif() +endmacro() + +macro(_conan_detect_compiler) + + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_ARCH) + set(_CONAN_SETTING_ARCH ${ARGUMENTS_ARCH}) + endif() + + if(USING_CXX) + set(_CONAN_SETTING_COMPILER_CPPSTD ${CMAKE_CXX_STANDARD}) + endif() + + if (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL GNU) + # using GCC + # TODO: Handle other params + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(COMPILER_VERSION ${MAJOR}.${MINOR}) + if(${MAJOR} GREATER 4) + set(COMPILER_VERSION ${MAJOR}) + endif() + set(_CONAN_SETTING_COMPILER gcc) + set(_CONAN_SETTING_COMPILER_VERSION ${COMPILER_VERSION}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Intel) + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(COMPILER_VERSION ${MAJOR}.${MINOR}) + set(_CONAN_SETTING_COMPILER intel) + set(_CONAN_SETTING_COMPILER_VERSION ${COMPILER_VERSION}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL AppleClang) + # using AppleClang + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(_CONAN_SETTING_COMPILER apple-clang) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}.${MINOR}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Clang + AND NOT "${CMAKE_${LANGUAGE}_COMPILER_FRONTEND_VARIANT}" STREQUAL "MSVC" + AND NOT "${CMAKE_${LANGUAGE}_SIMULATE_ID}" STREQUAL "MSVC") + + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(_CONAN_SETTING_COMPILER clang) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}.${MINOR}) + if(APPLE) + cmake_policy(GET CMP0025 APPLE_CLANG_POLICY) + if(NOT APPLE_CLANG_POLICY STREQUAL NEW) + message(STATUS "Conan: APPLE and Clang detected. Assuming apple-clang compiler. Set CMP0025 to avoid it") + set(_CONAN_SETTING_COMPILER apple-clang) + endif() + endif() + if(${_CONAN_SETTING_COMPILER} STREQUAL clang AND ${MAJOR} GREATER 7) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}) + endif() + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif(${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL MSVC + OR (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Clang + AND "${CMAKE_${LANGUAGE}_COMPILER_FRONTEND_VARIANT}" STREQUAL "MSVC" + AND "${CMAKE_${LANGUAGE}_SIMULATE_ID}" STREQUAL "MSVC")) + + set(_VISUAL "Visual Studio") + _get_msvc_ide_version(_VISUAL_VERSION) + if("${_VISUAL_VERSION}" STREQUAL "") + message(FATAL_ERROR "Conan: Visual Studio not recognized") + else() + set(_CONAN_SETTING_COMPILER ${_VISUAL}) + set(_CONAN_SETTING_COMPILER_VERSION ${_VISUAL_VERSION}) + endif() + + if(NOT _CONAN_SETTING_ARCH) + if (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "64") + set(_CONAN_SETTING_ARCH x86_64) + elseif (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "^ARM") + message(STATUS "Conan: Using default ARM architecture from MSVC") + set(_CONAN_SETTING_ARCH armv6) + elseif (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "86") + set(_CONAN_SETTING_ARCH x86) + else () + message(FATAL_ERROR "Conan: Unknown MSVC architecture [${MSVC_${LANGUAGE}_ARCHITECTURE_ID}]") + endif() + endif() + + conan_cmake_detect_vs_runtime(_vs_runtime ${ARGV}) + message(STATUS "Conan: Detected VS runtime: ${_vs_runtime}") + set(_CONAN_SETTING_COMPILER_RUNTIME ${_vs_runtime}) + + if (CMAKE_GENERATOR_TOOLSET) + set(_CONAN_SETTING_COMPILER_TOOLSET ${CMAKE_VS_PLATFORM_TOOLSET}) + elseif(CMAKE_VS_PLATFORM_TOOLSET AND (CMAKE_GENERATOR STREQUAL "Ninja")) + set(_CONAN_SETTING_COMPILER_TOOLSET ${CMAKE_VS_PLATFORM_TOOLSET}) + endif() + else() + message(FATAL_ERROR "Conan: compiler setup not recognized") + endif() + +endmacro() + +function(conan_cmake_settings result) + #message(STATUS "COMPILER " ${CMAKE_CXX_COMPILER}) + #message(STATUS "COMPILER " ${CMAKE_CXX_COMPILER_ID}) + #message(STATUS "VERSION " ${CMAKE_CXX_COMPILER_VERSION}) + #message(STATUS "FLAGS " ${CMAKE_LANG_FLAGS}) + #message(STATUS "LIB ARCH " ${CMAKE_CXX_LIBRARY_ARCHITECTURE}) + #message(STATUS "BUILD TYPE " ${CMAKE_BUILD_TYPE}) + #message(STATUS "GENERATOR " ${CMAKE_GENERATOR}) + #message(STATUS "GENERATOR WIN64 " ${CMAKE_CL_64}) + + message(STATUS "Conan: Automatic detection of conan settings from cmake") + + conan_parse_arguments(${ARGV}) + + _conan_detect_build_type(${ARGV}) + + _conan_check_system_name() + + _conan_check_language() + + _conan_detect_compiler(${ARGV}) + + # If profile is defined it is used + if(CMAKE_BUILD_TYPE STREQUAL "Debug" AND ARGUMENTS_DEBUG_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_DEBUG_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "Release" AND ARGUMENTS_RELEASE_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_RELEASE_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo" AND ARGUMENTS_RELWITHDEBINFO_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_RELWITHDEBINFO_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel" AND ARGUMENTS_MINSIZEREL_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_MINSIZEREL_PROFILE}) + elseif(ARGUMENTS_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_PROFILE}) + endif() + + foreach(ARG ${_APPLIED_PROFILES}) + set(_SETTINGS ${_SETTINGS} -pr=${ARG}) + endforeach() + foreach(ARG ${ARGUMENTS_PROFILE_BUILD}) + conan_check(VERSION 1.24.0 REQUIRED DETECT_QUIET) + set(_SETTINGS ${_SETTINGS} -pr:b=${ARG}) + endforeach() + + if(NOT _SETTINGS OR ARGUMENTS_PROFILE_AUTO STREQUAL "ALL") + set(ARGUMENTS_PROFILE_AUTO arch build_type compiler compiler.version + compiler.runtime compiler.libcxx compiler.toolset) + endif() + + # remove any manually specified settings from the autodetected settings + foreach(ARG ${ARGUMENTS_SETTINGS}) + string(REGEX MATCH "[^=]*" MANUAL_SETTING "${ARG}") + message(STATUS "Conan: ${MANUAL_SETTING} was added as an argument. Not using the autodetected one.") + list(REMOVE_ITEM ARGUMENTS_PROFILE_AUTO "${MANUAL_SETTING}") + endforeach() + + # Automatic from CMake + foreach(ARG ${ARGUMENTS_PROFILE_AUTO}) + string(TOUPPER ${ARG} _arg_name) + string(REPLACE "." "_" _arg_name ${_arg_name}) + if(_CONAN_SETTING_${_arg_name}) + set(_SETTINGS ${_SETTINGS} -s ${ARG}=${_CONAN_SETTING_${_arg_name}}) + endif() + endforeach() + + foreach(ARG ${ARGUMENTS_SETTINGS}) + set(_SETTINGS ${_SETTINGS} -s ${ARG}) + endforeach() + + message(STATUS "Conan: Settings= ${_SETTINGS}") + + set(${result} ${_SETTINGS} PARENT_SCOPE) +endfunction() + + +function(conan_cmake_detect_unix_libcxx result) + # Take into account any -stdlib in compile options + get_directory_property(compile_options DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMPILE_OPTIONS) + string(GENEX_STRIP "${compile_options}" compile_options) + + # Take into account any _GLIBCXX_USE_CXX11_ABI in compile definitions + get_directory_property(defines DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMPILE_DEFINITIONS) + string(GENEX_STRIP "${defines}" defines) + + foreach(define ${defines}) + if(define MATCHES "_GLIBCXX_USE_CXX11_ABI") + if(define MATCHES "^-D") + set(compile_options ${compile_options} "${define}") + else() + set(compile_options ${compile_options} "-D${define}") + endif() + endif() + endforeach() + + # add additional compiler options ala cmRulePlaceholderExpander::ExpandRuleVariable + set(EXPAND_CXX_COMPILER ${CMAKE_CXX_COMPILER}) + if(CMAKE_CXX_COMPILER_ARG1) + # CMake splits CXX="foo bar baz" into CMAKE_CXX_COMPILER="foo", CMAKE_CXX_COMPILER_ARG1="bar baz" + # without this, ccache, winegcc, or other wrappers might lose all their arguments + separate_arguments(SPLIT_CXX_COMPILER_ARG1 NATIVE_COMMAND ${CMAKE_CXX_COMPILER_ARG1}) + list(APPEND EXPAND_CXX_COMPILER ${SPLIT_CXX_COMPILER_ARG1}) + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_TARGET AND CMAKE_CXX_COMPILER_TARGET) + # without --target= we may be calling the wrong underlying GCC + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_TARGET}${CMAKE_CXX_COMPILER_TARGET}") + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_EXTERNAL_TOOLCHAIN AND CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_EXTERNAL_TOOLCHAIN}${CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN}") + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_SYSROOT) + # without --sysroot= we may find the wrong #include + if(CMAKE_SYSROOT_COMPILE) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_SYSROOT}${CMAKE_SYSROOT_COMPILE}") + elseif(CMAKE_SYSROOT) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_SYSROOT}${CMAKE_SYSROOT}") + endif() + endif() + + separate_arguments(SPLIT_CXX_FLAGS NATIVE_COMMAND ${CMAKE_CXX_FLAGS}) + + if(CMAKE_OSX_SYSROOT) + set(xcode_sysroot_option "--sysroot=${CMAKE_OSX_SYSROOT}") + endif() + + execute_process( + COMMAND ${CMAKE_COMMAND} -E echo "#include " + COMMAND ${EXPAND_CXX_COMPILER} ${SPLIT_CXX_FLAGS} -x c++ ${xcode_sysroot_option} ${compile_options} -E -dM - + OUTPUT_VARIABLE string_defines + ) + + if(string_defines MATCHES "#define __GLIBCXX__") + # Allow -D_GLIBCXX_USE_CXX11_ABI=ON/OFF as argument to cmake + if(DEFINED _GLIBCXX_USE_CXX11_ABI) + if(_GLIBCXX_USE_CXX11_ABI) + set(${result} libstdc++11 PARENT_SCOPE) + return() + else() + set(${result} libstdc++ PARENT_SCOPE) + return() + endif() + endif() + + if(string_defines MATCHES "#define _GLIBCXX_USE_CXX11_ABI 1\n") + set(${result} libstdc++11 PARENT_SCOPE) + else() + # Either the compiler is missing the define because it is old, and so + # it can't use the new abi, or the compiler was configured to use the + # old abi by the user or distro (e.g. devtoolset on RHEL/CentOS) + set(${result} libstdc++ PARENT_SCOPE) + endif() + else() + set(${result} libc++ PARENT_SCOPE) + endif() +endfunction() + +function(conan_cmake_detect_vs_runtime result) + + conan_parse_arguments(${ARGV}) + if(ARGUMENTS_BUILD_TYPE) + set(build_type "${ARGUMENTS_BUILD_TYPE}") + elseif(CMAKE_BUILD_TYPE) + set(build_type "${CMAKE_BUILD_TYPE}") + else() + message(FATAL_ERROR "Please specify in command line CMAKE_BUILD_TYPE (-DCMAKE_BUILD_TYPE=Release)") + endif() + + if(build_type) + string(TOUPPER "${build_type}" build_type) + endif() + set(variables CMAKE_CXX_FLAGS_${build_type} CMAKE_C_FLAGS_${build_type} CMAKE_CXX_FLAGS CMAKE_C_FLAGS) + foreach(variable ${variables}) + if(NOT "${${variable}}" STREQUAL "") + string(REPLACE " " ";" flags "${${variable}}") + foreach (flag ${flags}) + if("${flag}" STREQUAL "/MD" OR "${flag}" STREQUAL "/MDd" OR "${flag}" STREQUAL "/MT" OR "${flag}" STREQUAL "/MTd") + string(SUBSTRING "${flag}" 1 -1 runtime) + set(${result} "${runtime}" PARENT_SCOPE) + return() + endif() + endforeach() + endif() + endforeach() + if("${build_type}" STREQUAL "DEBUG") + set(${result} "MDd" PARENT_SCOPE) + else() + set(${result} "MD" PARENT_SCOPE) + endif() +endfunction() + +function(_collect_settings result) + set(ARGUMENTS_PROFILE_AUTO arch build_type compiler compiler.version + compiler.runtime compiler.libcxx compiler.toolset + compiler.cppstd) + foreach(ARG ${ARGUMENTS_PROFILE_AUTO}) + string(TOUPPER ${ARG} _arg_name) + string(REPLACE "." "_" _arg_name ${_arg_name}) + if(_CONAN_SETTING_${_arg_name}) + set(detected_setings ${detected_setings} ${ARG}=${_CONAN_SETTING_${_arg_name}}) + endif() + endforeach() + set(${result} ${detected_setings} PARENT_SCOPE) +endfunction() + +function(conan_cmake_autodetect detected_settings) + _conan_detect_build_type(${ARGV}) + _conan_check_system_name() + _conan_check_language() + _conan_detect_compiler(${ARGV}) + _collect_settings(collected_settings) + set(${detected_settings} ${collected_settings} PARENT_SCOPE) +endfunction() + +macro(conan_parse_arguments) + set(options BASIC_SETUP CMAKE_TARGETS UPDATE KEEP_RPATHS NO_LOAD NO_OUTPUT_DIRS OUTPUT_QUIET NO_IMPORTS SKIP_STD) + set(oneValueArgs CONANFILE ARCH BUILD_TYPE INSTALL_FOLDER OUTPUT_FOLDER CONAN_COMMAND) + set(multiValueArgs DEBUG_PROFILE RELEASE_PROFILE RELWITHDEBINFO_PROFILE MINSIZEREL_PROFILE + PROFILE REQUIRES OPTIONS IMPORTS SETTINGS BUILD ENV GENERATORS PROFILE_AUTO + INSTALL_ARGS CONFIGURATION_TYPES PROFILE_BUILD BUILD_REQUIRES) + cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) +endmacro() + +function(old_conan_cmake_install) + # Calls "conan install" + # Argument BUILD is equivalant to --build={missing, PkgName,...} or + # --build when argument is 'BUILD all' (which builds all packages from source) + # Argument CONAN_COMMAND, to specify the conan path, e.g. in case of running from source + # cmake does not identify conan as command, even if it is +x and it is in the path + conan_parse_arguments(${ARGV}) + + if(CONAN_CMAKE_MULTI) + set(ARGUMENTS_GENERATORS ${ARGUMENTS_GENERATORS} cmake_multi) + else() + set(ARGUMENTS_GENERATORS ${ARGUMENTS_GENERATORS} cmake) + endif() + + set(CONAN_BUILD_POLICY "") + foreach(ARG ${ARGUMENTS_BUILD}) + if(${ARG} STREQUAL "all") + set(CONAN_BUILD_POLICY ${CONAN_BUILD_POLICY} --build) + break() + else() + set(CONAN_BUILD_POLICY ${CONAN_BUILD_POLICY} --build=${ARG}) + endif() + endforeach() + if(ARGUMENTS_CONAN_COMMAND) + set(CONAN_CMD ${ARGUMENTS_CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + set(CONAN_OPTIONS "") + if(ARGUMENTS_CONANFILE) + if(IS_ABSOLUTE ${ARGUMENTS_CONANFILE}) + set(CONANFILE ${ARGUMENTS_CONANFILE}) + else() + set(CONANFILE ${CMAKE_CURRENT_SOURCE_DIR}/${ARGUMENTS_CONANFILE}) + endif() + else() + set(CONANFILE ".") + endif() + foreach(ARG ${ARGUMENTS_OPTIONS}) + set(CONAN_OPTIONS ${CONAN_OPTIONS} -o=${ARG}) + endforeach() + if(ARGUMENTS_UPDATE) + set(CONAN_INSTALL_UPDATE --update) + endif() + if(ARGUMENTS_NO_IMPORTS) + set(CONAN_INSTALL_NO_IMPORTS --no-imports) + endif() + set(CONAN_INSTALL_FOLDER "") + if(ARGUMENTS_INSTALL_FOLDER) + set(CONAN_INSTALL_FOLDER -if=${ARGUMENTS_INSTALL_FOLDER}) + endif() + set(CONAN_OUTPUT_FOLDER "") + if(ARGUMENTS_OUTPUT_FOLDER) + set(CONAN_OUTPUT_FOLDER -of=${ARGUMENTS_OUTPUT_FOLDER}) + endif() + foreach(ARG ${ARGUMENTS_GENERATORS}) + set(CONAN_GENERATORS ${CONAN_GENERATORS} -g=${ARG}) + endforeach() + foreach(ARG ${ARGUMENTS_ENV}) + set(CONAN_ENV_VARS ${CONAN_ENV_VARS} -e=${ARG}) + endforeach() + set(conan_args install ${CONANFILE} ${settings} ${CONAN_ENV_VARS} ${CONAN_GENERATORS} ${CONAN_BUILD_POLICY} ${CONAN_INSTALL_UPDATE} ${CONAN_INSTALL_NO_IMPORTS} ${CONAN_OPTIONS} ${CONAN_INSTALL_FOLDER} ${ARGUMENTS_INSTALL_ARGS}) + + string (REPLACE ";" " " _conan_args "${conan_args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_conan_args}") + + if(ARGUMENTS_OUTPUT_QUIET) + execute_process(COMMAND ${CONAN_CMD} ${conan_args} + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_output + ERROR_VARIABLE conan_output + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + else() + execute_process(COMMAND ${CONAN_CMD} ${conan_args} + RESULT_VARIABLE return_code + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + endif() + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan install failed='${return_code}'") + endif() + +endfunction() + +function(conan_cmake_install) + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + set(installOptions UPDATE NO_IMPORTS OUTPUT_QUIET ERROR_QUIET) + set(installOneValueArgs PATH_OR_REFERENCE REFERENCE REMOTE LOCKFILE LOCKFILE_OUT LOCKFILE_NODE_ID INSTALL_FOLDER OUTPUT_FOLDER) + set(installMultiValueArgs GENERATOR BUILD ENV ENV_HOST ENV_BUILD OPTIONS_HOST OPTIONS OPTIONS_BUILD PROFILE + PROFILE_HOST PROFILE_BUILD SETTINGS SETTINGS_HOST SETTINGS_BUILD) + cmake_parse_arguments(ARGS "${installOptions}" "${installOneValueArgs}" "${installMultiValueArgs}" ${ARGN}) + foreach(arg ${installOptions}) + if(ARGS_${arg}) + set(${arg} ${${arg}} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${installOneValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "REMOTE") + set(flag "--remote") + elseif("${arg}" STREQUAL "LOCKFILE") + set(flag "--lockfile") + elseif("${arg}" STREQUAL "LOCKFILE_OUT") + set(flag "--lockfile-out") + elseif("${arg}" STREQUAL "LOCKFILE_NODE_ID") + set(flag "--lockfile-node-id") + elseif("${arg}" STREQUAL "INSTALL_FOLDER") + set(flag "--install-folder") + elseif("${arg}" STREQUAL "OUTPUT_FOLDER") + set(flag "--output-folder") + endif() + set(${arg} ${${arg}} ${flag} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${installMultiValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "GENERATOR") + set(flag "--generator") + elseif("${arg}" STREQUAL "BUILD") + set(flag "--build") + elseif("${arg}" STREQUAL "ENV") + set(flag "--env") + elseif("${arg}" STREQUAL "ENV_HOST") + set(flag "--env:host") + elseif("${arg}" STREQUAL "ENV_BUILD") + set(flag "--env:build") + elseif("${arg}" STREQUAL "OPTIONS") + set(flag "--options") + elseif("${arg}" STREQUAL "OPTIONS_HOST") + set(flag "--options:host") + elseif("${arg}" STREQUAL "OPTIONS_BUILD") + set(flag "--options:build") + elseif("${arg}" STREQUAL "PROFILE") + set(flag "--profile") + elseif("${arg}" STREQUAL "PROFILE_HOST") + set(flag "--profile:host") + elseif("${arg}" STREQUAL "PROFILE_BUILD") + set(flag "--profile:build") + elseif("${arg}" STREQUAL "SETTINGS") + set(flag "--settings") + elseif("${arg}" STREQUAL "SETTINGS_HOST") + set(flag "--settings:host") + elseif("${arg}" STREQUAL "SETTINGS_BUILD") + set(flag "--settings:build") + endif() + list(LENGTH ARGS_${arg} numargs) + foreach(item ${ARGS_${arg}}) + if(${item} STREQUAL "all" AND ${arg} STREQUAL "BUILD") + set(${arg} "--build") + break() + endif() + set(${arg} ${${arg}} ${flag} ${item}) + endforeach() + endif() + endforeach() + if(DEFINED UPDATE) + set(UPDATE --update) + endif() + if(DEFINED NO_IMPORTS) + set(NO_IMPORTS --no-imports) + endif() + set(install_args install ${PATH_OR_REFERENCE} ${REFERENCE} ${UPDATE} ${NO_IMPORTS} ${REMOTE} ${LOCKFILE} ${LOCKFILE_OUT} ${LOCKFILE_NODE_ID} ${INSTALL_FOLDER} ${OUTPUT_FOLDER} + ${GENERATOR} ${BUILD} ${ENV} ${ENV_HOST} ${ENV_BUILD} ${OPTIONS} ${OPTIONS_HOST} ${OPTIONS_BUILD} + ${PROFILE} ${PROFILE_HOST} ${PROFILE_BUILD} ${SETTINGS} ${SETTINGS_HOST} ${SETTINGS_BUILD}) + + string(REPLACE ";" " " _install_args "${install_args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_install_args}") + + if(ARGS_OUTPUT_QUIET) + set(OUTPUT_OPT OUTPUT_QUIET) + endif() + if(ARGS_ERROR_QUIET) + set(ERROR_OPT ERROR_QUIET) + endif() + + execute_process(COMMAND ${CONAN_CMD} ${install_args} + RESULT_VARIABLE return_code + ${OUTPUT_OPT} + ${ERROR_OPT} + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(NOT "${return_code}" STREQUAL "0") + if (ARGS_ERROR_QUIET) + message(WARNING "Conan install failed='${return_code}'") + else() + message(FATAL_ERROR "Conan install failed='${return_code}'") + endif() + endif() + +endfunction() + +function(conan_cmake_lock_create) + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + set(lockCreateOptions UPDATE BASE OUTPUT_QUIET ERROR_QUIET) + set(lockCreateOneValueArgs PATH REFERENCE REMOTE LOCKFILE LOCKFILE_OUT) + set(lockCreateMultiValueArgs BUILD ENV ENV_HOST ENV_BUILD OPTIONS_HOST OPTIONS OPTIONS_BUILD PROFILE + PROFILE_HOST PROFILE_BUILD SETTINGS SETTINGS_HOST SETTINGS_BUILD) + cmake_parse_arguments(ARGS "${lockCreateOptions}" "${lockCreateOneValueArgs}" "${lockCreateMultiValueArgs}" ${ARGN}) + foreach(arg ${lockCreateOptions}) + if(ARGS_${arg}) + set(${arg} ${${arg}} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${lockCreateOneValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "REMOTE") + set(flag "--remote") + elseif("${arg}" STREQUAL "LOCKFILE") + set(flag "--lockfile") + elseif("${arg}" STREQUAL "LOCKFILE_OUT") + set(flag "--lockfile-out") + endif() + set(${arg} ${${arg}} ${flag} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${lockCreateMultiValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "BUILD") + set(flag "--build") + elseif("${arg}" STREQUAL "ENV") + set(flag "--env") + elseif("${arg}" STREQUAL "ENV_HOST") + set(flag "--env:host") + elseif("${arg}" STREQUAL "ENV_BUILD") + set(flag "--env:build") + elseif("${arg}" STREQUAL "OPTIONS") + set(flag "--options") + elseif("${arg}" STREQUAL "OPTIONS_HOST") + set(flag "--options:host") + elseif("${arg}" STREQUAL "OPTIONS_BUILD") + set(flag "--options:build") + elseif("${arg}" STREQUAL "PROFILE") + set(flag "--profile") + elseif("${arg}" STREQUAL "PROFILE_HOST") + set(flag "--profile:host") + elseif("${arg}" STREQUAL "PROFILE_BUILD") + set(flag "--profile:build") + elseif("${arg}" STREQUAL "SETTINGS") + set(flag "--settings") + elseif("${arg}" STREQUAL "SETTINGS_HOST") + set(flag "--settings:host") + elseif("${arg}" STREQUAL "SETTINGS_BUILD") + set(flag "--settings:build") + endif() + list(LENGTH ARGS_${arg} numargs) + foreach(item ${ARGS_${arg}}) + if(${item} STREQUAL "all" AND ${arg} STREQUAL "BUILD") + set(${arg} "--build") + break() + endif() + set(${arg} ${${arg}} ${flag} ${item}) + endforeach() + endif() + endforeach() + if(DEFINED UPDATE) + set(UPDATE --update) + endif() + if(DEFINED BASE) + set(BASE --base) + endif() + set(lock_create_Args lock create ${PATH} ${REFERENCE} ${UPDATE} ${BASE} ${REMOTE} ${LOCKFILE} ${LOCKFILE_OUT} ${LOCKFILE_NODE_ID} ${INSTALL_FOLDER} + ${GENERATOR} ${BUILD} ${ENV} ${ENV_HOST} ${ENV_BUILD} ${OPTIONS} ${OPTIONS_HOST} ${OPTIONS_BUILD} + ${PROFILE} ${PROFILE_HOST} ${PROFILE_BUILD} ${SETTINGS} ${SETTINGS_HOST} ${SETTINGS_BUILD}) + + string(REPLACE ";" " " _lock_create_Args "${lock_create_Args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_lock_create_Args}") + + if(ARGS_OUTPUT_QUIET) + set(OUTPUT_OPT OUTPUT_QUIET) + endif() + if(ARGS_ERROR_QUIET) + set(ERROR_OPT ERROR_QUIET) + endif() + + execute_process(COMMAND ${CONAN_CMD} ${lock_create_Args} + RESULT_VARIABLE return_code + ${OUTPUT_OPT} + ${ERROR_OPT} + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(NOT "${return_code}" STREQUAL "0") + if (ARGS_ERROR_QUIET) + message(WARNING "Conan lock create failed='${return_code}'") + else() + message(FATAL_ERROR "Conan lock create failed='${return_code}'") + endif() + endif() +endfunction() + +function(conan_cmake_setup_conanfile) + conan_parse_arguments(${ARGV}) + if(ARGUMENTS_CONANFILE) + get_filename_component(_CONANFILE_NAME ${ARGUMENTS_CONANFILE} NAME) + # configure_file will make sure cmake re-runs when conanfile is updated + configure_file(${ARGUMENTS_CONANFILE} ${CMAKE_CURRENT_BINARY_DIR}/${_CONANFILE_NAME}.junk COPYONLY) + file(REMOVE ${CMAKE_CURRENT_BINARY_DIR}/${_CONANFILE_NAME}.junk) + else() + conan_cmake_generate_conanfile(ON ${ARGV}) + endif() +endfunction() + +function(conan_cmake_configure) + conan_cmake_generate_conanfile(OFF ${ARGV}) +endfunction() + +# Generate, writing in disk a conanfile.txt with the requires, options, and imports +# specified as arguments +# This will be considered as temporary file, generated in CMAKE_CURRENT_BINARY_DIR) +function(conan_cmake_generate_conanfile DEFAULT_GENERATOR) + + conan_parse_arguments(${ARGV}) + + set(_FN "${CMAKE_CURRENT_BINARY_DIR}/conanfile.txt") + file(WRITE ${_FN} "") + + if(DEFINED ARGUMENTS_REQUIRES) + file(APPEND ${_FN} "[requires]\n") + foreach(REQUIRE ${ARGUMENTS_REQUIRES}) + file(APPEND ${_FN} ${REQUIRE} "\n") + endforeach() + endif() + + if (DEFAULT_GENERATOR OR DEFINED ARGUMENTS_GENERATORS) + file(APPEND ${_FN} "[generators]\n") + if (DEFAULT_GENERATOR) + file(APPEND ${_FN} "cmake\n") + endif() + if (DEFINED ARGUMENTS_GENERATORS) + foreach(GENERATOR ${ARGUMENTS_GENERATORS}) + file(APPEND ${_FN} ${GENERATOR} "\n") + endforeach() + endif() + endif() + + if(DEFINED ARGUMENTS_BUILD_REQUIRES) + file(APPEND ${_FN} "[build_requires]\n") + foreach(BUILD_REQUIRE ${ARGUMENTS_BUILD_REQUIRES}) + file(APPEND ${_FN} ${BUILD_REQUIRE} "\n") + endforeach() + endif() + + if(DEFINED ARGUMENTS_IMPORTS) + file(APPEND ${_FN} "[imports]\n") + foreach(IMPORTS ${ARGUMENTS_IMPORTS}) + file(APPEND ${_FN} ${IMPORTS} "\n") + endforeach() + endif() + + if(DEFINED ARGUMENTS_OPTIONS) + file(APPEND ${_FN} "[options]\n") + foreach(OPTION ${ARGUMENTS_OPTIONS}) + file(APPEND ${_FN} ${OPTION} "\n") + endforeach() + endif() + +endfunction() + + +macro(conan_load_buildinfo) + if(CONAN_CMAKE_MULTI) + set(_CONANBUILDINFO conanbuildinfo_multi.cmake) + else() + set(_CONANBUILDINFO conanbuildinfo.cmake) + endif() + if(ARGUMENTS_INSTALL_FOLDER) + set(_CONANBUILDINFOFOLDER ${ARGUMENTS_INSTALL_FOLDER}) + else() + set(_CONANBUILDINFOFOLDER ${CMAKE_CURRENT_BINARY_DIR}) + endif() + # Checks for the existence of conanbuildinfo.cmake, and loads it + # important that it is macro, so variables defined at parent scope + if(EXISTS "${_CONANBUILDINFOFOLDER}/${_CONANBUILDINFO}") + message(STATUS "Conan: Loading ${_CONANBUILDINFO}") + include(${_CONANBUILDINFOFOLDER}/${_CONANBUILDINFO}) + else() + message(FATAL_ERROR "${_CONANBUILDINFO} doesn't exist in ${CMAKE_CURRENT_BINARY_DIR}") + endif() +endmacro() + + +macro(conan_cmake_run) + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_CONFIGURATION_TYPES AND NOT CMAKE_CONFIGURATION_TYPES) + message(WARNING "CONFIGURATION_TYPES should only be specified for multi-configuration generators") + elseif(ARGUMENTS_CONFIGURATION_TYPES AND ARGUMENTS_BUILD_TYPE) + message(WARNING "CONFIGURATION_TYPES and BUILD_TYPE arguments should not be defined at the same time.") + endif() + + if(CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE AND NOT CONAN_EXPORTED + AND NOT ARGUMENTS_BUILD_TYPE) + set(CONAN_CMAKE_MULTI ON) + if (NOT ARGUMENTS_CONFIGURATION_TYPES) + set(ARGUMENTS_CONFIGURATION_TYPES "Release;Debug") + endif() + message(STATUS "Conan: Using cmake-multi generator") + else() + set(CONAN_CMAKE_MULTI OFF) + endif() + + if(NOT CONAN_EXPORTED) + conan_cmake_setup_conanfile(${ARGV}) + if(CONAN_CMAKE_MULTI) + foreach(CMAKE_BUILD_TYPE ${ARGUMENTS_CONFIGURATION_TYPES}) + set(ENV{CONAN_IMPORT_PATH} ${CMAKE_BUILD_TYPE}) + conan_cmake_settings(settings ${ARGV}) + old_conan_cmake_install(SETTINGS ${settings} ${ARGV}) + endforeach() + set(CMAKE_BUILD_TYPE) + else() + conan_cmake_settings(settings ${ARGV}) + old_conan_cmake_install(SETTINGS ${settings} ${ARGV}) + endif() + endif() + + if (NOT ARGUMENTS_NO_LOAD) + conan_load_buildinfo() + endif() + + if(ARGUMENTS_BASIC_SETUP) + foreach(_option CMAKE_TARGETS KEEP_RPATHS NO_OUTPUT_DIRS SKIP_STD) + if(ARGUMENTS_${_option}) + if(${_option} STREQUAL "CMAKE_TARGETS") + list(APPEND _setup_options "TARGETS") + else() + list(APPEND _setup_options ${_option}) + endif() + endif() + endforeach() + conan_basic_setup(${_setup_options}) + endif() +endmacro() + +macro(conan_check) + # Checks conan availability in PATH + # Arguments REQUIRED, DETECT_QUIET and VERSION are optional + # Example usage: + # conan_check(VERSION 1.0.0 REQUIRED) + set(options REQUIRED DETECT_QUIET) + set(oneValueArgs VERSION) + cmake_parse_arguments(CONAN "${options}" "${oneValueArgs}" "" ${ARGN}) + if(NOT CONAN_DETECT_QUIET) + message(STATUS "Conan: checking conan executable") + endif() + + find_program(CONAN_CMD conan) + if(NOT CONAN_CMD AND CONAN_REQUIRED) + message(FATAL_ERROR "Conan executable not found! Please install conan.") + endif() + if(NOT CONAN_DETECT_QUIET) + message(STATUS "Conan: Found program ${CONAN_CMD}") + endif() + execute_process(COMMAND ${CONAN_CMD} --version + RESULT_VARIABLE return_code + OUTPUT_VARIABLE CONAN_VERSION_OUTPUT + ERROR_VARIABLE CONAN_VERSION_OUTPUT) + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan --version failed='${return_code}'") + endif() + + if(NOT CONAN_DETECT_QUIET) + string(STRIP "${CONAN_VERSION_OUTPUT}" _CONAN_VERSION_OUTPUT) + message(STATUS "Conan: Version found ${_CONAN_VERSION_OUTPUT}") + endif() + + if(DEFINED CONAN_VERSION) + string(REGEX MATCH ".*Conan version ([0-9]+\\.[0-9]+\\.[0-9]+)" FOO + "${CONAN_VERSION_OUTPUT}") + if(${CMAKE_MATCH_1} VERSION_LESS ${CONAN_VERSION}) + message(FATAL_ERROR "Conan outdated. Installed: ${CMAKE_MATCH_1}, \ + required: ${CONAN_VERSION}. Consider updating via 'pip \ + install conan==${CONAN_VERSION}'.") + endif() + endif() +endmacro() + +function(conan_add_remote) + # Adds a remote + # Arguments URL and NAME are required, INDEX, COMMAND and VERIFY_SSL are optional + # Example usage: + # conan_add_remote(NAME bincrafters INDEX 1 + # URL https://api.bintray.com/conan/bincrafters/public-conan + # VERIFY_SSL True) + set(oneValueArgs URL NAME INDEX COMMAND VERIFY_SSL) + cmake_parse_arguments(CONAN "" "${oneValueArgs}" "" ${ARGN}) + + if(DEFINED CONAN_INDEX) + set(CONAN_INDEX_ARG "-i ${CONAN_INDEX}") + endif() + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED DETECT_QUIET) + endif() + set(CONAN_VERIFY_SSL_ARG "True") + if(DEFINED CONAN_VERIFY_SSL) + set(CONAN_VERIFY_SSL_ARG ${CONAN_VERIFY_SSL}) + endif() + message(STATUS "Conan: Adding ${CONAN_NAME} remote repository (${CONAN_URL}) verify ssl (${CONAN_VERIFY_SSL_ARG})") + execute_process(COMMAND ${CONAN_CMD} remote add ${CONAN_NAME} ${CONAN_INDEX_ARG} -f ${CONAN_URL} ${CONAN_VERIFY_SSL_ARG} + RESULT_VARIABLE return_code) + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan remote failed='${return_code}'") + endif() +endfunction() + +macro(conan_config_install) + # install a full configuration from a local or remote zip file + # Argument ITEM is required, arguments TYPE, SOURCE, TARGET and VERIFY_SSL are optional + # Example usage: + # conan_config_install(ITEM https://github.com/conan-io/cmake-conan.git + # TYPE git SOURCE source-folder TARGET target-folder VERIFY_SSL false) + set(oneValueArgs ITEM TYPE SOURCE TARGET VERIFY_SSL) + set(multiValueArgs ARGS) + cmake_parse_arguments(CONAN "" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + if(DEFINED CONAN_VERIFY_SSL) + set(CONAN_VERIFY_SSL_ARG "--verify-ssl=${CONAN_VERIFY_SSL}") + endif() + + if(DEFINED CONAN_TYPE) + set(CONAN_TYPE_ARG "--type=${CONAN_TYPE}") + endif() + + if(DEFINED CONAN_ARGS) + set(CONAN_ARGS_ARGS "--args=\"${CONAN_ARGS}\"") + endif() + + if(DEFINED CONAN_SOURCE) + set(CONAN_SOURCE_ARGS "--source-folder=${CONAN_SOURCE}") + endif() + + if(DEFINED CONAN_TARGET) + set(CONAN_TARGET_ARGS "--target-folder=${CONAN_TARGET}") + endif() + + set (CONAN_CONFIG_INSTALL_ARGS ${CONAN_VERIFY_SSL_ARG} + ${CONAN_TYPE_ARG} + ${CONAN_ARGS_ARGS} + ${CONAN_SOURCE_ARGS} + ${CONAN_TARGET_ARGS}) + + message(STATUS "Conan: Installing config from ${CONAN_ITEM}") + execute_process(COMMAND ${CONAN_CMD} config install ${CONAN_ITEM} ${CONAN_CONFIG_INSTALL_ARGS} + RESULT_VARIABLE return_code) + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan config failed='${return_code}'") + endif() +endmacro() diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan_provider.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan_provider.cmake new file mode 100644 index 0000000..e5fa9ce --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/conan_provider.cmake @@ -0,0 +1,655 @@ +# https://github.com/conan-io/cmake-conan/blob/develop2/conan_provider.cmake +# commit: f6464d1e13ef7a47c569f5061f9607ea63339d39 +# +# The MIT License (MIT) +# +# Copyright (c) 2019 JFrog +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +set(CONAN_MINIMUM_VERSION 2.0.5) + + +function(detect_os OS OS_API_LEVEL OS_SDK OS_SUBSYSTEM OS_VERSION) + # it could be cross compilation + message(STATUS "CMake-Conan: cmake_system_name=${CMAKE_SYSTEM_NAME}") + if(CMAKE_SYSTEM_NAME AND NOT CMAKE_SYSTEM_NAME STREQUAL "Generic") + if(CMAKE_SYSTEM_NAME STREQUAL "Darwin") + set(${OS} Macos PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME STREQUAL "QNX") + set(${OS} Neutrino PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME STREQUAL "CYGWIN") + set(${OS} Windows PARENT_SCOPE) + set(${OS_SUBSYSTEM} cygwin PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME MATCHES "^MSYS") + set(${OS} Windows PARENT_SCOPE) + set(${OS_SUBSYSTEM} msys2 PARENT_SCOPE) + else() + set(${OS} ${CMAKE_SYSTEM_NAME} PARENT_SCOPE) + endif() + if(CMAKE_SYSTEM_NAME STREQUAL "Android") + if(DEFINED ANDROID_PLATFORM) + string(REGEX MATCH "[0-9]+" _OS_API_LEVEL ${ANDROID_PLATFORM}) + elseif(DEFINED CMAKE_SYSTEM_VERSION) + set(_OS_API_LEVEL ${CMAKE_SYSTEM_VERSION}) + endif() + message(STATUS "CMake-Conan: android api level=${_OS_API_LEVEL}") + set(${OS_API_LEVEL} ${_OS_API_LEVEL} PARENT_SCOPE) + endif() + if(CMAKE_SYSTEM_NAME MATCHES "Darwin|iOS|tvOS|watchOS") + # CMAKE_OSX_SYSROOT contains the full path to the SDK for MakeFile/Ninja + # generators, but just has the original input string for Xcode. + if(NOT IS_DIRECTORY ${CMAKE_OSX_SYSROOT}) + set(_OS_SDK ${CMAKE_OSX_SYSROOT}) + else() + if(CMAKE_OSX_SYSROOT MATCHES Simulator) + set(apple_platform_suffix simulator) + else() + set(apple_platform_suffix os) + endif() + if(CMAKE_OSX_SYSROOT MATCHES AppleTV) + set(_OS_SDK "appletv${apple_platform_suffix}") + elseif(CMAKE_OSX_SYSROOT MATCHES iPhone) + set(_OS_SDK "iphone${apple_platform_suffix}") + elseif(CMAKE_OSX_SYSROOT MATCHES Watch) + set(_OS_SDK "watch${apple_platform_suffix}") + endif() + endif() + if(DEFINED _OS_SDK) + message(STATUS "CMake-Conan: cmake_osx_sysroot=${CMAKE_OSX_SYSROOT}") + set(${OS_SDK} ${_OS_SDK} PARENT_SCOPE) + endif() + if(DEFINED CMAKE_OSX_DEPLOYMENT_TARGET) + message(STATUS "CMake-Conan: cmake_osx_deployment_target=${CMAKE_OSX_DEPLOYMENT_TARGET}") + set(${OS_VERSION} ${CMAKE_OSX_DEPLOYMENT_TARGET} PARENT_SCOPE) + endif() + endif() + endif() +endfunction() + + +function(detect_arch ARCH) + # CMAKE_OSX_ARCHITECTURES can contain multiple architectures, but Conan only supports one. + # Therefore this code only finds one. If the recipes support multiple architectures, the + # build will work. Otherwise, there will be a linker error for the missing architecture(s). + if(DEFINED CMAKE_OSX_ARCHITECTURES) + string(REPLACE " " ";" apple_arch_list "${CMAKE_OSX_ARCHITECTURES}") + list(LENGTH apple_arch_list apple_arch_count) + if(apple_arch_count GREATER 1) + message(WARNING "CMake-Conan: Multiple architectures detected, this will only work if Conan recipe(s) produce fat binaries.") + endif() + endif() + if(CMAKE_SYSTEM_NAME MATCHES "Darwin|iOS|tvOS|watchOS" AND NOT CMAKE_OSX_ARCHITECTURES STREQUAL "") + set(host_arch ${CMAKE_OSX_ARCHITECTURES}) + elseif(MSVC) + set(host_arch ${CMAKE_CXX_COMPILER_ARCHITECTURE_ID}) + else() + set(host_arch ${CMAKE_SYSTEM_PROCESSOR}) + endif() + if(host_arch MATCHES "aarch64|arm64|ARM64") + set(_ARCH armv8) + elseif(host_arch MATCHES "armv7|armv7-a|armv7l|ARMV7") + set(_ARCH armv7) + elseif(host_arch MATCHES armv7s) + set(_ARCH armv7s) + elseif(host_arch MATCHES "i686|i386|X86") + set(_ARCH x86) + elseif(host_arch MATCHES "AMD64|amd64|x86_64|x64") + set(_ARCH x86_64) + endif() + message(STATUS "CMake-Conan: cmake_system_processor=${_ARCH}") + set(${ARCH} ${_ARCH} PARENT_SCOPE) +endfunction() + + +function(detect_cxx_standard CXX_STANDARD) + set(${CXX_STANDARD} ${CMAKE_CXX_STANDARD} PARENT_SCOPE) + if(CMAKE_CXX_EXTENSIONS) + set(${CXX_STANDARD} "gnu${CMAKE_CXX_STANDARD}" PARENT_SCOPE) + endif() +endfunction() + + +macro(detect_gnu_libstdcxx) + # _CONAN_IS_GNU_LIBSTDCXX true if GNU libstdc++ + check_cxx_source_compiles(" + #include + #if !defined(__GLIBCXX__) && !defined(__GLIBCPP__) + static_assert(false); + #endif + int main(){}" _CONAN_IS_GNU_LIBSTDCXX) + + # _CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI true if C++11 ABI + check_cxx_source_compiles(" + #include + static_assert(sizeof(std::string) != sizeof(void*), \"using libstdc++\"); + int main () {}" _CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) + + set(_CONAN_GNU_LIBSTDCXX_SUFFIX "") + if(_CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) + set(_CONAN_GNU_LIBSTDCXX_SUFFIX "11") + endif() + unset (_CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) +endmacro() + + +macro(detect_libcxx) + # _CONAN_IS_LIBCXX true if LLVM libc++ + check_cxx_source_compiles(" + #include + #if !defined(_LIBCPP_VERSION) + static_assert(false); + #endif + int main(){}" _CONAN_IS_LIBCXX) +endmacro() + + +function(detect_lib_cxx LIB_CXX) + if(CMAKE_SYSTEM_NAME STREQUAL "Android") + message(STATUS "CMake-Conan: android_stl=${CMAKE_ANDROID_STL_TYPE}") + set(${LIB_CXX} ${CMAKE_ANDROID_STL_TYPE} PARENT_SCOPE) + return() + endif() + + include(CheckCXXSourceCompiles) + + if(CMAKE_CXX_COMPILER_ID MATCHES "GNU") + detect_gnu_libstdcxx() + set(${LIB_CXX} "libstdc++${_CONAN_GNU_LIBSTDCXX_SUFFIX}" PARENT_SCOPE) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang") + set(${LIB_CXX} "libc++" PARENT_SCOPE) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND NOT CMAKE_SYSTEM_NAME MATCHES "Windows") + # Check for libc++ + detect_libcxx() + if(_CONAN_IS_LIBCXX) + set(${LIB_CXX} "libc++" PARENT_SCOPE) + return() + endif() + + # Check for libstdc++ + detect_gnu_libstdcxx() + if(_CONAN_IS_GNU_LIBSTDCXX) + set(${LIB_CXX} "libstdc++${_CONAN_GNU_LIBSTDCXX_SUFFIX}" PARENT_SCOPE) + return() + endif() + + # TODO: it would be an error if we reach this point + elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") + # Do nothing - compiler.runtime and compiler.runtime_type + # should be handled separately: https://github.com/conan-io/cmake-conan/pull/516 + return() + else() + # TODO: unable to determine, ask user to provide a full profile file instead + endif() +endfunction() + + +function(detect_compiler COMPILER COMPILER_VERSION COMPILER_RUNTIME COMPILER_RUNTIME_TYPE) + if(DEFINED CMAKE_CXX_COMPILER_ID) + set(_COMPILER ${CMAKE_CXX_COMPILER_ID}) + set(_COMPILER_VERSION ${CMAKE_CXX_COMPILER_VERSION}) + else() + if(NOT DEFINED CMAKE_C_COMPILER_ID) + message(FATAL_ERROR "C or C++ compiler not defined") + endif() + set(_COMPILER ${CMAKE_C_COMPILER_ID}) + set(_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) + endif() + + message(STATUS "CMake-Conan: CMake compiler=${_COMPILER}") + message(STATUS "CMake-Conan: CMake compiler version=${_COMPILER_VERSION}") + + if(_COMPILER MATCHES MSVC) + set(_COMPILER "msvc") + string(SUBSTRING ${MSVC_VERSION} 0 3 _COMPILER_VERSION) + # Configure compiler.runtime and compiler.runtime_type settings for MSVC + if(CMAKE_MSVC_RUNTIME_LIBRARY) + set(_msvc_runtime_library ${CMAKE_MSVC_RUNTIME_LIBRARY}) + else() + set(_msvc_runtime_library MultiThreaded$<$:Debug>DLL) # default value documented by CMake + endif() + + set(_KNOWN_MSVC_RUNTIME_VALUES "") + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded MultiThreadedDLL) + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreadedDebug MultiThreadedDebugDLL) + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded$<$:Debug> MultiThreaded$<$:Debug>DLL) + + # only accept the 6 possible values, otherwise we don't don't know to map this + if(NOT _msvc_runtime_library IN_LIST _KNOWN_MSVC_RUNTIME_VALUES) + message(FATAL_ERROR "CMake-Conan: unable to map MSVC runtime: ${_msvc_runtime_library} to Conan settings") + endif() + + # Runtime is "dynamic" in all cases if it ends in DLL + if(_msvc_runtime_library MATCHES ".*DLL$") + set(_COMPILER_RUNTIME "dynamic") + else() + set(_COMPILER_RUNTIME "static") + endif() + message(STATUS "CMake-Conan: CMake compiler.runtime=${_COMPILER_RUNTIME}") + + # Only define compiler.runtime_type when explicitly requested + # If a generator expression is used, let Conan handle it conditional on build_type + if(NOT _msvc_runtime_library MATCHES ":Debug>") + if(_msvc_runtime_library MATCHES "Debug") + set(_COMPILER_RUNTIME_TYPE "Debug") + else() + set(_COMPILER_RUNTIME_TYPE "Release") + endif() + message(STATUS "CMake-Conan: CMake compiler.runtime_type=${_COMPILER_RUNTIME_TYPE}") + endif() + + unset(_KNOWN_MSVC_RUNTIME_VALUES) + + elseif(_COMPILER MATCHES AppleClang) + set(_COMPILER "apple-clang") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + elseif(_COMPILER MATCHES Clang) + set(_COMPILER "clang") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + elseif(_COMPILER MATCHES GNU) + set(_COMPILER "gcc") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + endif() + + message(STATUS "CMake-Conan: [settings] compiler=${_COMPILER}") + message(STATUS "CMake-Conan: [settings] compiler.version=${_COMPILER_VERSION}") + if (_COMPILER_RUNTIME) + message(STATUS "CMake-Conan: [settings] compiler.runtime=${_COMPILER_RUNTIME}") + endif() + if (_COMPILER_RUNTIME_TYPE) + message(STATUS "CMake-Conan: [settings] compiler.runtime_type=${_COMPILER_RUNTIME_TYPE}") + endif() + + set(${COMPILER} ${_COMPILER} PARENT_SCOPE) + set(${COMPILER_VERSION} ${_COMPILER_VERSION} PARENT_SCOPE) + set(${COMPILER_RUNTIME} ${_COMPILER_RUNTIME} PARENT_SCOPE) + set(${COMPILER_RUNTIME_TYPE} ${_COMPILER_RUNTIME_TYPE} PARENT_SCOPE) +endfunction() + + +function(detect_build_type BUILD_TYPE) + get_property(_MULTICONFIG_GENERATOR GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(NOT _MULTICONFIG_GENERATOR) + # Only set when we know we are in a single-configuration generator + # Note: we may want to fail early if `CMAKE_BUILD_TYPE` is not defined + set(${BUILD_TYPE} ${CMAKE_BUILD_TYPE} PARENT_SCOPE) + endif() +endfunction() + +macro(set_conan_compiler_if_appleclang lang command output_variable) + if(CMAKE_${lang}_COMPILER_ID STREQUAL "AppleClang") + execute_process(COMMAND xcrun --find ${command} + OUTPUT_VARIABLE _xcrun_out OUTPUT_STRIP_TRAILING_WHITESPACE) + cmake_path(GET _xcrun_out PARENT_PATH _xcrun_toolchain_path) + cmake_path(GET CMAKE_${lang}_COMPILER PARENT_PATH _compiler_parent_path) + if ("${_xcrun_toolchain_path}" STREQUAL "${_compiler_parent_path}") + set(${output_variable} "") + endif() + unset(_xcrun_out) + unset(_xcrun_toolchain_path) + unset(_compiler_parent_path) + endif() +endmacro() + + +macro(append_compiler_executables_configuration) + set(_conan_c_compiler "") + set(_conan_cpp_compiler "") + if(CMAKE_C_COMPILER) + set(_conan_c_compiler "\"c\":\"${CMAKE_C_COMPILER}\",") + set_conan_compiler_if_appleclang(C cc _conan_c_compiler) + else() + message(WARNING "CMake-Conan: The C compiler is not defined. " + "Please define CMAKE_C_COMPILER or enable the C language.") + endif() + if(CMAKE_CXX_COMPILER) + set(_conan_cpp_compiler "\"cpp\":\"${CMAKE_CXX_COMPILER}\"") + set_conan_compiler_if_appleclang(CXX c++ _conan_cpp_compiler) + else() + message(WARNING "CMake-Conan: The C++ compiler is not defined. " + "Please define CMAKE_CXX_COMPILER or enable the C++ language.") + endif() + + if(NOT "x${_conan_c_compiler}${_conan_cpp_compiler}" STREQUAL "x") + string(APPEND PROFILE "tools.build:compiler_executables={${_conan_c_compiler}${_conan_cpp_compiler}}\n") + endif() + unset(_conan_c_compiler) + unset(_conan_cpp_compiler) +endmacro() + + +function(detect_host_profile output_file) + detect_os(MYOS MYOS_API_LEVEL MYOS_SDK MYOS_SUBSYSTEM MYOS_VERSION) + detect_arch(MYARCH) + detect_compiler(MYCOMPILER MYCOMPILER_VERSION MYCOMPILER_RUNTIME MYCOMPILER_RUNTIME_TYPE) + detect_cxx_standard(MYCXX_STANDARD) + detect_lib_cxx(MYLIB_CXX) + detect_build_type(MYBUILD_TYPE) + + set(PROFILE "") + string(APPEND PROFILE "[settings]\n") + if(MYARCH) + string(APPEND PROFILE arch=${MYARCH} "\n") + endif() + if(MYOS) + string(APPEND PROFILE os=${MYOS} "\n") + endif() + if(MYOS_API_LEVEL) + string(APPEND PROFILE os.api_level=${MYOS_API_LEVEL} "\n") + endif() + if(MYOS_VERSION) + string(APPEND PROFILE os.version=${MYOS_VERSION} "\n") + endif() + if(MYOS_SDK) + string(APPEND PROFILE os.sdk=${MYOS_SDK} "\n") + endif() + if(MYOS_SUBSYSTEM) + string(APPEND PROFILE os.subsystem=${MYOS_SUBSYSTEM} "\n") + endif() + if(MYCOMPILER) + string(APPEND PROFILE compiler=${MYCOMPILER} "\n") + endif() + if(MYCOMPILER_VERSION) + string(APPEND PROFILE compiler.version=${MYCOMPILER_VERSION} "\n") + endif() + if(MYCOMPILER_RUNTIME) + string(APPEND PROFILE compiler.runtime=${MYCOMPILER_RUNTIME} "\n") + endif() + if(MYCOMPILER_RUNTIME_TYPE) + string(APPEND PROFILE compiler.runtime_type=${MYCOMPILER_RUNTIME_TYPE} "\n") + endif() + if(MYCXX_STANDARD) + string(APPEND PROFILE compiler.cppstd=${MYCXX_STANDARD} "\n") + endif() + if(MYLIB_CXX) + string(APPEND PROFILE compiler.libcxx=${MYLIB_CXX} "\n") + endif() + if(MYBUILD_TYPE) + string(APPEND PROFILE "build_type=${MYBUILD_TYPE}\n") + endif() + + if(NOT DEFINED output_file) + set(_FN "${CMAKE_BINARY_DIR}/profile") + else() + set(_FN ${output_file}) + endif() + + string(APPEND PROFILE "[conf]\n") + string(APPEND PROFILE "tools.cmake.cmaketoolchain:generator=${CMAKE_GENERATOR}\n") + + # propagate compilers via profile + append_compiler_executables_configuration() + + if(MYOS STREQUAL "Android") + string(APPEND PROFILE "tools.android:ndk_path=${CMAKE_ANDROID_NDK}\n") + endif() + + message(STATUS "CMake-Conan: Creating profile ${_FN}") + file(WRITE ${_FN} ${PROFILE}) + message(STATUS "CMake-Conan: Profile: \n${PROFILE}") +endfunction() + + +function(conan_profile_detect_default) + message(STATUS "CMake-Conan: Checking if a default profile exists") + execute_process(COMMAND ${CONAN_COMMAND} profile path default + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + ECHO_OUTPUT_VARIABLE + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + if(NOT ${return_code} EQUAL "0") + message(STATUS "CMake-Conan: The default profile doesn't exist, detecting it.") + execute_process(COMMAND ${CONAN_COMMAND} profile detect + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + ECHO_OUTPUT_VARIABLE + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + endif() +endfunction() + + +function(conan_install) + cmake_parse_arguments(ARGS CONAN_ARGS ${ARGN}) + set(CONAN_OUTPUT_FOLDER ${CMAKE_BINARY_DIR}/conan) + # Invoke "conan install" with the provided arguments + set(CONAN_ARGS ${CONAN_ARGS} -of=${CONAN_OUTPUT_FOLDER}) + message(STATUS "CMake-Conan: conan install ${CMAKE_SOURCE_DIR} ${CONAN_ARGS} ${ARGN}") + + + # In case there was not a valid cmake executable in the PATH, we inject the + # same we used to invoke the provider to the PATH + if(DEFINED PATH_TO_CMAKE_BIN) + set(_OLD_PATH $ENV{PATH}) + set(ENV{PATH} "$ENV{PATH}:${PATH_TO_CMAKE_BIN}") + endif() + + execute_process(COMMAND ${CONAN_COMMAND} install ${CMAKE_SOURCE_DIR} ${CONAN_ARGS} ${ARGN} --format=json + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(DEFINED PATH_TO_CMAKE_BIN) + set(ENV{PATH} "${_OLD_PATH}") + endif() + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan install failed='${return_code}'") + else() + # the files are generated in a folder that depends on the layout used, if + # one is specified, but we don't know a priori where this is. + # TODO: this can be made more robust if Conan can provide this in the json output + string(JSON CONAN_GENERATORS_FOLDER GET ${conan_stdout} graph nodes 0 generators_folder) + cmake_path(CONVERT ${CONAN_GENERATORS_FOLDER} TO_CMAKE_PATH_LIST CONAN_GENERATORS_FOLDER) + # message("conan stdout: ${conan_stdout}") + message(STATUS "CMake-Conan: CONAN_GENERATORS_FOLDER=${CONAN_GENERATORS_FOLDER}") + set_property(GLOBAL PROPERTY CONAN_GENERATORS_FOLDER "${CONAN_GENERATORS_FOLDER}") + # reconfigure on conanfile changes + string(JSON CONANFILE GET ${conan_stdout} graph nodes 0 label) + message(STATUS "CMake-Conan: CONANFILE=${CMAKE_SOURCE_DIR}/${CONANFILE}") + set_property(DIRECTORY ${CMAKE_SOURCE_DIR} APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${CMAKE_SOURCE_DIR}/${CONANFILE}") + # success + set_property(GLOBAL PROPERTY CONAN_INSTALL_SUCCESS TRUE) + endif() +endfunction() + + +function(conan_get_version conan_command conan_current_version) + execute_process( + COMMAND ${conan_command} --version + OUTPUT_VARIABLE conan_output + RESULT_VARIABLE conan_result + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(conan_result) + message(FATAL_ERROR "CMake-Conan: Error when trying to run Conan") + endif() + + string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" conan_version ${conan_output}) + set(${conan_current_version} ${conan_version} PARENT_SCOPE) +endfunction() + + +function(conan_version_check) + set(options ) + set(oneValueArgs MINIMUM CURRENT) + set(multiValueArgs ) + cmake_parse_arguments(CONAN_VERSION_CHECK + "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + + if(NOT CONAN_VERSION_CHECK_MINIMUM) + message(FATAL_ERROR "CMake-Conan: Required parameter MINIMUM not set!") + endif() + if(NOT CONAN_VERSION_CHECK_CURRENT) + message(FATAL_ERROR "CMake-Conan: Required parameter CURRENT not set!") + endif() + + if(CONAN_VERSION_CHECK_CURRENT VERSION_LESS CONAN_VERSION_CHECK_MINIMUM) + message(FATAL_ERROR "CMake-Conan: Conan version must be ${CONAN_VERSION_CHECK_MINIMUM} or later") + endif() +endfunction() + + +macro(construct_profile_argument argument_variable profile_list) + set(${argument_variable} "") + if("${profile_list}" STREQUAL "CONAN_HOST_PROFILE") + set(_arg_flag "--profile:host=") + elseif("${profile_list}" STREQUAL "CONAN_BUILD_PROFILE") + set(_arg_flag "--profile:build=") + endif() + + set(_profile_list "${${profile_list}}") + list(TRANSFORM _profile_list REPLACE "auto-cmake" "${CMAKE_BINARY_DIR}/conan_host_profile") + list(TRANSFORM _profile_list PREPEND ${_arg_flag}) + set(${argument_variable} ${_profile_list}) + + unset(_arg_flag) + unset(_profile_list) +endmacro() + + +macro(conan_provide_dependency method package_name) + set_property(GLOBAL PROPERTY CONAN_PROVIDE_DEPENDENCY_INVOKED TRUE) + get_property(_conan_install_success GLOBAL PROPERTY CONAN_INSTALL_SUCCESS) + if(NOT _conan_install_success) + find_program(CONAN_COMMAND "conan" REQUIRED) + conan_get_version(${CONAN_COMMAND} CONAN_CURRENT_VERSION) + conan_version_check(MINIMUM ${CONAN_MINIMUM_VERSION} CURRENT ${CONAN_CURRENT_VERSION}) + message(STATUS "CMake-Conan: first find_package() found. Installing dependencies with Conan") + if("default" IN_LIST CONAN_HOST_PROFILE OR "default" IN_LIST CONAN_BUILD_PROFILE) + conan_profile_detect_default() + endif() + if("auto-cmake" IN_LIST CONAN_HOST_PROFILE) + detect_host_profile(${CMAKE_BINARY_DIR}/conan_host_profile) + endif() + construct_profile_argument(_host_profile_flags CONAN_HOST_PROFILE) + construct_profile_argument(_build_profile_flags CONAN_BUILD_PROFILE) + if(EXISTS "${CMAKE_SOURCE_DIR}/conanfile.py") + file(READ "${CMAKE_SOURCE_DIR}/conanfile.py" outfile) + if(NOT "${outfile}" MATCHES ".*CMakeDeps.*") + message(WARNING "Cmake-conan: CMakeDeps generator was not defined in the conanfile") + endif() + set(generator "") + elseif (EXISTS "${CMAKE_SOURCE_DIR}/conanfile.txt") + file(READ "${CMAKE_SOURCE_DIR}/conanfile.txt" outfile) + if(NOT "${outfile}" MATCHES ".*CMakeDeps.*") + message(WARNING "Cmake-conan: CMakeDeps generator was not defined in the conanfile. " + "Please define the generator as it will be mandatory in the future") + endif() + set(generator "-g;CMakeDeps") + endif() + get_property(_multiconfig_generator GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(NOT _multiconfig_generator) + message(STATUS "CMake-Conan: Installing single configuration ${CMAKE_BUILD_TYPE}") + conan_install(${_host_profile_flags} ${_build_profile_flags} ${CONAN_INSTALL_ARGS} ${generator}) + else() + message(STATUS "CMake-Conan: Installing both Debug and Release") + conan_install(${_host_profile_flags} ${_build_profile_flags} -s build_type=Release ${CONAN_INSTALL_ARGS} ${generator}) + conan_install(${_host_profile_flags} ${_build_profile_flags} -s build_type=Debug ${CONAN_INSTALL_ARGS} ${generator}) + endif() + unset(_host_profile_flags) + unset(_build_profile_flags) + unset(_multiconfig_generator) + unset(_conan_install_success) + else() + message(STATUS "CMake-Conan: find_package(${ARGV1}) found, 'conan install' already ran") + unset(_conan_install_success) + endif() + + get_property(_conan_generators_folder GLOBAL PROPERTY CONAN_GENERATORS_FOLDER) + + # Ensure that we consider Conan-provided packages ahead of any other, + # irrespective of other settings that modify the search order or search paths + # This follows the guidelines from the find_package documentation + # (https://cmake.org/cmake/help/latest/command/find_package.html): + # find_package ( PATHS paths... NO_DEFAULT_PATH) + # find_package () + + # Filter out `REQUIRED` from the argument list, as the first call may fail + set(_find_args_${package_name} "${ARGN}") + list(REMOVE_ITEM _find_args_${package_name} "REQUIRED") + if(NOT "MODULE" IN_LIST _find_args_${package_name}) + find_package(${package_name} ${_find_args_${package_name}} BYPASS_PROVIDER PATHS "${_conan_generators_folder}" NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + unset(_find_args_${package_name}) + endif() + + # Invoke find_package a second time - if the first call succeeded, + # this will simply reuse the result. If not, fall back to CMake default search + # behaviour, also allowing modules to be searched. + if(NOT ${package_name}_FOUND) + list(FIND CMAKE_MODULE_PATH "${_conan_generators_folder}" _index) + if(_index EQUAL -1) + list(PREPEND CMAKE_MODULE_PATH "${_conan_generators_folder}") + endif() + unset(_index) + find_package(${package_name} ${ARGN} BYPASS_PROVIDER) + list(REMOVE_ITEM CMAKE_MODULE_PATH "${_conan_generators_folder}") + endif() +endmacro() + +#[=[ not needed by Qt Creator, and if not commented it would break the auto-setup feature + +cmake_language( + SET_DEPENDENCY_PROVIDER conan_provide_dependency + SUPPORTED_METHODS FIND_PACKAGE +) + + +macro(conan_provide_dependency_check) + set(_CONAN_PROVIDE_DEPENDENCY_INVOKED FALSE) + get_property(_CONAN_PROVIDE_DEPENDENCY_INVOKED GLOBAL PROPERTY CONAN_PROVIDE_DEPENDENCY_INVOKED) + if(NOT _CONAN_PROVIDE_DEPENDENCY_INVOKED) + message(WARNING "Conan is correctly configured as dependency provider, " + "but Conan has not been invoked. Please add at least one " + "call to `find_package()`.") + if(DEFINED CONAN_COMMAND) + # supress warning in case `CONAN_COMMAND` was specified but unused. + set(_CONAN_COMMAND ${CONAN_COMMAND}) + unset(_CONAN_COMMAND) + endif() + endif() + unset(_CONAN_PROVIDE_DEPENDENCY_INVOKED) +endmacro() + + +# Add a deferred call at the end of processing the top-level directory +# to check if the dependency provider was invoked at all. +cmake_language(DEFER DIRECTORY "${CMAKE_SOURCE_DIR}" CALL conan_provide_dependency_check) + +]=] + +# Configurable variables for Conan profiles +set(CONAN_HOST_PROFILE "default;auto-cmake" CACHE STRING "Conan host profile") +set(CONAN_BUILD_PROFILE "default" CACHE STRING "Conan build profile") +set(CONAN_INSTALL_ARGS "--build=missing" CACHE STRING "Command line arguments for conan install") + +find_program(_cmake_program NAMES cmake NO_PACKAGE_ROOT_PATH NO_CMAKE_PATH NO_CMAKE_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH NO_CMAKE_FIND_ROOT_PATH) +if(NOT _cmake_program) + get_filename_component(PATH_TO_CMAKE_BIN "${CMAKE_COMMAND}" DIRECTORY) + set(PATH_TO_CMAKE_BIN "${PATH_TO_CMAKE_BIN}" CACHE INTERNAL "Path where the CMake executable is") +endif() + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QAbstractItemModel.B2E57462D8855041.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QAbstractItemModel.B2E57462D8855041.idx new file mode 100644 index 0000000..dc3e180 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QAbstractItemModel.B2E57462D8855041.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.188AC94D2D5F07DB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.188AC94D2D5F07DB.idx new file mode 100644 index 0000000..cc238bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QApplication.188AC94D2D5F07DB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QJsonDocument.E252A87B029A8934.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QJsonDocument.E252A87B029A8934.idx new file mode 100644 index 0000000..e034c69 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QJsonDocument.E252A87B029A8934.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QJsonValue.7705217E1B75AD5B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QJsonValue.7705217E1B75AD5B.idx new file mode 100644 index 0000000..8767877 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QJsonValue.7705217E1B75AD5B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMainWindow.CB736650B8400980.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMainWindow.CB736650B8400980.idx new file mode 100644 index 0000000..f98812a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QMainWindow.CB736650B8400980.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtPlugin.51BABBE0A7245B43.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtPlugin.51BABBE0A7245B43.idx new file mode 100644 index 0000000..2d5f65e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/QtPlugin.51BABBE0A7245B43.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___gnuc_va_list.h.E3B4DE1A775D738C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___gnuc_va_list.h.E3B4DE1A775D738C.idx new file mode 100644 index 0000000..6920400 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___gnuc_va_list.h.E3B4DE1A775D738C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___va_copy.h.57FB91DB25BE2DF6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___va_copy.h.57FB91DB25BE2DF6.idx new file mode 100644 index 0000000..ab03782 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg___va_copy.h.57FB91DB25BE2DF6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_arg.h.EE34CD6927073710.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_arg.h.EE34CD6927073710.idx new file mode 100644 index 0000000..898ce6f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_arg.h.EE34CD6927073710.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_copy.h.43CCCEA63074B63C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_copy.h.43CCCEA63074B63C.idx new file mode 100644 index 0000000..e487d04 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_copy.h.43CCCEA63074B63C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_list.h.AE9FAD9DCB79CCE5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_list.h.AE9FAD9DCB79CCE5.idx new file mode 100644 index 0000000..8d02004 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stdarg_va_list.h.AE9FAD9DCB79CCE5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.6EDE18E563042F87.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.6EDE18E563042F87.idx new file mode 100644 index 0000000..28d7b15 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.6EDE18E563042F87.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_null.h.C4BC2DA60FC605B2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_null.h.C4BC2DA60FC605B2.idx new file mode 100644 index 0000000..0101e88 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_null.h.C4BC2DA60FC605B2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_nullptr_t.h.8F21E9DFABF6CEF0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_nullptr_t.h.8F21E9DFABF6CEF0.idx new file mode 100644 index 0000000..2ee5700 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_nullptr_t.h.8F21E9DFABF6CEF0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_offsetof.h.C195D2857CD0D6CE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_offsetof.h.C195D2857CD0D6CE.idx new file mode 100644 index 0000000..7e597e0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_offsetof.h.C195D2857CD0D6CE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_ptrdiff_t.h.999D87F80CBFE81E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_ptrdiff_t.h.999D87F80CBFE81E.idx new file mode 100644 index 0000000..7a01070 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_ptrdiff_t.h.999D87F80CBFE81E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_size_t.h.44AC726005E5DB49.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_size_t.h.44AC726005E5DB49.idx new file mode 100644 index 0000000..5152825 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_size_t.h.44AC726005E5DB49.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wchar_t.h.CC163415C6FEADEA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wchar_t.h.CC163415C6FEADEA.idx new file mode 100644 index 0000000..4ba9485 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wchar_t.h.CC163415C6FEADEA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wint_t.h.F27B83269001BBA0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wint_t.h.F27B83269001BBA0.idx new file mode 100644 index 0000000..06f4bf9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/__stddef_wint_t.h.F27B83269001BBA0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.9717ED80F6994E93.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.9717ED80F6994E93.idx new file mode 100644 index 0000000..bf22d09 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw.h.9717ED80F6994E93.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.FB41EB6A8311F5EB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.FB41EB6A8311F5EB.idx new file mode 100644 index 0000000..db8e272 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.FB41EB6A8311F5EB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.F9164C6D63B40434.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.F9164C6D63B40434.idx new file mode 100644 index 0000000..064f638 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.F9164C6D63B40434.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.6453DD6E54B996DD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.6453DD6E54B996DD.idx new file mode 100644 index 0000000..a9c87b7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.6453DD6E54B996DD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.D86BAEE7AE97F5AD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.D86BAEE7AE97F5AD.idx new file mode 100644 index 0000000..f102f4a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.D86BAEE7AE97F5AD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.A74323887CE4B4A3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.A74323887CE4B4A3.idx new file mode 100644 index 0000000..4541027 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.A74323887CE4B4A3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.4835EC1E4BBE25AE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.4835EC1E4BBE25AE.idx new file mode 100644 index 0000000..38d9ef9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/_timeval.h.4835EC1E4BBE25AE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.F283F81AA91E0450.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.F283F81AA91E0450.idx new file mode 100644 index 0000000..3e8f0bd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithm.F283F81AA91E0450.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.3B41BEB858D30C93.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.3B41BEB858D30C93.idx new file mode 100644 index 0000000..bbf4cf4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.3B41BEB858D30C93.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.88322FFA93A2A117.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.88322FFA93A2A117.idx new file mode 100644 index 0000000..735b779 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/align.h.88322FFA93A2A117.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.77920C5A486C7BCC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.77920C5A486C7BCC.idx new file mode 100644 index 0000000..79e90cf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.77920C5A486C7BCC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.00D4816B7AB2E2C8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.00D4816B7AB2E2C8.idx new file mode 100644 index 0000000..c987cbb Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.00D4816B7AB2E2C8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.7CFBD298781FA216.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.7CFBD298781FA216.idx new file mode 100644 index 0000000..461c576 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/alloc_traits.h.7CFBD298781FA216.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.F3A45C5BC294933D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.F3A45C5BC294933D.idx new file mode 100644 index 0000000..f4b5c97 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.F3A45C5BC294933D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.E52986B961420A8D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.E52986B961420A8D.idx new file mode 100644 index 0000000..90256f8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/allocator.h.E52986B961420A8D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.39AB7B18FD5F970F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.39AB7B18FD5F970F.idx new file mode 100644 index 0000000..f5f05c5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/array.39AB7B18FD5F970F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.5DE0CEE97AE7DB5A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.5DE0CEE97AE7DB5A.idx new file mode 100644 index 0000000..527729b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assert.h.5DE0CEE97AE7DB5A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.543F550C2CAFC461.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.543F550C2CAFC461.idx new file mode 100644 index 0000000..86bfed9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/assertions.h.543F550C2CAFC461.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.C72577E4CD5490B8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.C72577E4CD5490B8.idx new file mode 100644 index 0000000..7f88317 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic.C72577E4CD5490B8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.F15511415AD86837.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.F15511415AD86837.idx new file mode 100644 index 0000000..52e2126 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_base.h.F15511415AD86837.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.353FE7B5BA050A77.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.353FE7B5BA050A77.idx new file mode 100644 index 0000000..38ecf26 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.353FE7B5BA050A77.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.EC751638F7B20706.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.EC751638F7B20706.idx new file mode 100644 index 0000000..e2c0422 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomic_word.h.EC751638F7B20706.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.24C17557BBFA66A7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.24C17557BBFA66A7.idx new file mode 100644 index 0000000..328bc5d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/atomicity.h.24C17557BBFA66A7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.EDF0018AB85AC6C6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.EDF0018AB85AC6C6.idx new file mode 100644 index 0000000..2875e7e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/auto_ptr.h.EDF0018AB85AC6C6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.78B2761F5DB2A235.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.78B2761F5DB2A235.idx new file mode 100644 index 0000000..703bf77 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.h.78B2761F5DB2A235.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.B28AF853A646AB26.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.B28AF853A646AB26.idx new file mode 100644 index 0000000..aea6633 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/basic_string.tcc.B28AF853A646AB26.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.83149AE0BA5F53D4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.83149AE0BA5F53D4.idx new file mode 100644 index 0000000..be26a9d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.83149AE0BA5F53D4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.009DFAFBB0772188.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.009DFAFBB0772188.idx new file mode 100644 index 0000000..da9f825 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/beta_function.tcc.009DFAFBB0772188.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.C23BDF1091D946E6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.C23BDF1091D946E6.idx new file mode 100644 index 0000000..346ac2f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/binders.h.C23BDF1091D946E6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.EE9223057BE6CD4E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.EE9223057BE6CD4E.idx new file mode 100644 index 0000000..209d707 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/bit.EE9223057BE6CD4E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.4FB8508A1A6D56AE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.4FB8508A1A6D56AE.idx new file mode 100644 index 0000000..01af4e0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++allocator.h.4FB8508A1A6D56AE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.81F56C14ADC8C6DA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.81F56C14ADC8C6DA.idx new file mode 100644 index 0000000..1f6a9e6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++config.h.81F56C14ADC8C6DA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.DD93838535F87368.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.DD93838535F87368.idx new file mode 100644 index 0000000..456db57 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/c++locale.h.DD93838535F87368.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cassert.0166AA67D9029FDF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cassert.0166AA67D9029FDF.idx new file mode 100644 index 0000000..a7362e7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cassert.0166AA67D9029FDF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.521B47CD3E187E74.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.521B47CD3E187E74.idx new file mode 100644 index 0000000..5a0a41b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cctype.521B47CD3E187E74.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.A603249F68BAC16C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.A603249F68BAC16C.idx new file mode 100644 index 0000000..388697d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cerrno.A603249F68BAC16C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.FC63F0F81577F875.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.FC63F0F81577F875.idx new file mode 100644 index 0000000..fa0591f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/char_traits.h.FC63F0F81577F875.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.75C283B33C1A6891.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.75C283B33C1A6891.idx new file mode 100644 index 0000000..eebfa7a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/charconv.h.75C283B33C1A6891.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.79C9714F4955E996.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.79C9714F4955E996.idx new file mode 100644 index 0000000..15fd147 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.79C9714F4955E996.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.h.1DAF3F759B8D3EDE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.h.1DAF3F759B8D3EDE.idx new file mode 100644 index 0000000..f43b3b7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/chrono.h.1DAF3F759B8D3EDE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.F423B838638A6B19.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.F423B838638A6B19.idx new file mode 100644 index 0000000..4b7c57f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/climits.F423B838638A6B19.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.7F8482780280C769.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.7F8482780280C769.idx new file mode 100644 index 0000000..19fb2b2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/clocale.7F8482780280C769.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.cpp.F661E47C86C8D602.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.cpp.F661E47C86C8D602.idx new file mode 100644 index 0000000..664b3d0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.cpp.F661E47C86C8D602.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.h.FFDABA2D3327A137.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.h.FFDABA2D3327A137.idx new file mode 100644 index 0000000..2b5d1f7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmainwindow.h.FFDABA2D3327A137.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.D167E3ED34BBF76A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.D167E3ED34BBF76A.idx new file mode 100644 index 0000000..341d415 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cmath.D167E3ED34BBF76A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/compare.3D1BAB4C71307DD6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/compare.3D1BAB4C71307DD6.idx new file mode 100644 index 0000000..1245e3b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/compare.3D1BAB4C71307DD6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.C18AE13023F76484.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.C18AE13023F76484.idx new file mode 100644 index 0000000..37de091 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concept_check.h.C18AE13023F76484.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.1A57A18C8FC7D1C5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.1A57A18C8FC7D1C5.idx new file mode 100644 index 0000000..7229580 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/concurrence.h.1A57A18C8FC7D1C5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.91FFED440C496553.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.91FFED440C496553.idx new file mode 100644 index 0000000..8809089 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt.h.91FFED440C496553.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.0574045B9E8BA854.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.0574045B9E8BA854.idx new file mode 100644 index 0000000..4c8c686 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.0574045B9E8BA854.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.B50F2793FA6E16FF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.B50F2793FA6E16FF.idx new file mode 100644 index 0000000..669e8bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.B50F2793FA6E16FF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.5E6D6DF67F778DB5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.5E6D6DF67F778DB5.idx new file mode 100644 index 0000000..c97b4b5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.5E6D6DF67F778DB5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.F722D5AD11F1268F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.F722D5AD11F1268F.idx new file mode 100644 index 0000000..38bf790 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.F722D5AD11F1268F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.A2A4F72478FEAC9B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.A2A4F72478FEAC9B.idx new file mode 100644 index 0000000..aa68098 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cpu_defines.h.A2A4F72478FEAC9B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.264B73ED209417C9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.264B73ED209417C9.idx new file mode 100644 index 0000000..b86fd5b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/crtdefs.h.264B73ED209417C9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.F4411CBF44822BC8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.F4411CBF44822BC8.idx new file mode 100644 index 0000000..a1062f0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstddef.F4411CBF44822BC8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.320E91D4A067C09F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.320E91D4A067C09F.idx new file mode 100644 index 0000000..00877f6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdint.320E91D4A067C09F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.0AA2EF29E0BCAE6E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.0AA2EF29E0BCAE6E.idx new file mode 100644 index 0000000..6f8d478 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdio.0AA2EF29E0BCAE6E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.4C4100D031DD8133.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.4C4100D031DD8133.idx new file mode 100644 index 0000000..d3ce09c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstdlib.4C4100D031DD8133.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.C4AD4EF234B90A22.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.C4AD4EF234B90A22.idx new file mode 100644 index 0000000..6bbb28b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cstring.C4AD4EF234B90A22.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.D9F78403778E61AC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.D9F78403778E61AC.idx new file mode 100644 index 0000000..179ef3f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctime.D9F78403778E61AC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.31E88DD6D9FD92A7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.31E88DD6D9FD92A7.idx new file mode 100644 index 0000000..ca49ad2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ctype.h.31E88DD6D9FD92A7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.B20962833FEEED5D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.B20962833FEEED5D.idx new file mode 100644 index 0000000..6f96dc7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cwchar.B20962833FEEED5D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.682ABAFCEE4920BE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.682ABAFCEE4920BE.idx new file mode 100644 index 0000000..42f0393 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.682ABAFCEE4920BE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.D1F69354C8D30D0A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.D1F69354C8D30D0A.idx new file mode 100644 index 0000000..d908daf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.D1F69354C8D30D0A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.18F111068D3C9EC4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.18F111068D3C9EC4.idx new file mode 100644 index 0000000..bb64f10 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/debug.h.18F111068D3C9EC4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.9C6B56BA6081C482.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.9C6B56BA6081C482.idx new file mode 100644 index 0000000..db3c1bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.9C6B56BA6081C482.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.3A1A952160F21732.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.3A1A952160F21732.idx new file mode 100644 index 0000000..5f451f6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/enable_special_members.h.3A1A952160F21732.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.91214BD874CB7E33.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.91214BD874CB7E33.idx new file mode 100644 index 0000000..fbd926d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/erase_if.h.91214BD874CB7E33.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.9280179BBF7933D6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.9280179BBF7933D6.idx new file mode 100644 index 0000000..a538013 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/errno.h.9280179BBF7933D6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.9842103A5A9C3A69.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.9842103A5A9C3A69.idx new file mode 100644 index 0000000..b419d5e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/error_constants.h.9842103A5A9C3A69.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.3F3AC25BBC225B9C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.3F3AC25BBC225B9C.idx new file mode 100644 index 0000000..e09879e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.3F3AC25BBC225B9C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.3057D404702421BC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.3057D404702421BC.idx new file mode 100644 index 0000000..bc9096b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception.h.3057D404702421BC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.8FC63004507631CB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.8FC63004507631CB.idx new file mode 100644 index 0000000..93a4305 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_defines.h.8FC63004507631CB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.702998FFBF6BABB0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.702998FFBF6BABB0.idx new file mode 100644 index 0000000..47fb45b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exception_ptr.h.702998FFBF6BABB0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.6ED2EB3F267824E4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.6ED2EB3F267824E4.idx new file mode 100644 index 0000000..79e0169 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/execution_defs.h.6ED2EB3F267824E4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.39CBDA50FF5F14BF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.39CBDA50FF5F14BF.idx new file mode 100644 index 0000000..ec2c625 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.39CBDA50FF5F14BF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.2F54B8A5E45CD4C9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.2F54B8A5E45CD4C9.idx new file mode 100644 index 0000000..0b0a809 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functexcept.h.2F54B8A5E45CD4C9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.40A20C33195418F0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.40A20C33195418F0.idx new file mode 100644 index 0000000..39713a5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional.40A20C33195418F0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.F121DED80726E0BE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.F121DED80726E0BE.idx new file mode 100644 index 0000000..f157ae0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/functional_hash.h.F121DED80726E0BE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.FAEF068DE6E02F62.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.FAEF068DE6E02F62.idx new file mode 100644 index 0000000..d0ed64c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gamma.tcc.FAEF068DE6E02F62.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.DFBC18507681A683.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.DFBC18507681A683.idx new file mode 100644 index 0000000..dbb52d5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.DFBC18507681A683.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.FF6778122421F159.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.FF6778122421F159.idx new file mode 100644 index 0000000..be01cb6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.FF6778122421F159.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.CD8D00185D343FD9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.CD8D00185D343FD9.idx new file mode 100644 index 0000000..790e11d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.CD8D00185D343FD9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/googlefonts.cpp.B369C1802C96E7DC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/googlefonts.cpp.B369C1802C96E7DC.idx new file mode 100644 index 0000000..8d64387 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/googlefonts.cpp.B369C1802C96E7DC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/googlefonts.h.E2625AA26ABFB0B6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/googlefonts.h.E2625AA26ABFB0B6.idx new file mode 100644 index 0000000..82ed859 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/googlefonts.h.E2625AA26ABFB0B6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.8B441E53410D88BA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.8B441E53410D88BA.idx new file mode 100644 index 0000000..d16d8a5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr-default.h.8B441E53410D88BA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.534B9BDA11A4DA0F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.534B9BDA11A4DA0F.idx new file mode 100644 index 0000000..2573621 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/gthr.h.534B9BDA11A4DA0F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.77D5C3F86373CD76.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.77D5C3F86373CD76.idx new file mode 100644 index 0000000..d46883b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hash_bytes.h.77D5C3F86373CD76.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.33361502E5E748CC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.33361502E5E748CC.idx new file mode 100644 index 0000000..b0e2706 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable.h.33361502E5E748CC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.F61098E9A90B451C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.F61098E9A90B451C.idx new file mode 100644 index 0000000..3931bed Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.F61098E9A90B451C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.045AE4809E7175D0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.045AE4809E7175D0.idx new file mode 100644 index 0000000..d69641e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.045AE4809E7175D0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ifontprovider.h.50FE5FB4C35740DC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ifontprovider.h.50FE5FB4C35740DC.idx new file mode 100644 index 0000000..d530a22 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ifontprovider.h.50FE5FB4C35740DC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.7524BBB4E75991DF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.7524BBB4E75991DF.idx new file mode 100644 index 0000000..d71afc7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/initializer_list.7524BBB4E75991DF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.39A33F95E57C1B0E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.39A33F95E57C1B0E.idx new file mode 100644 index 0000000..d082b59 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/invoke.h.39A33F95E57C1B0E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.EE77BA181F8F922E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.EE77BA181F8F922E.idx new file mode 100644 index 0000000..60ce6b8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ios_base.h.EE77BA181F8F922E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.007B189B77488216.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.007B189B77488216.idx new file mode 100644 index 0000000..ffd759a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iosfwd.007B189B77488216.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.6A4DD839D54A9319.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.6A4DD839D54A9319.idx new file mode 100644 index 0000000..a6b2734 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/iterator.6A4DD839D54A9319.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.8B933620627A6CFD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.8B933620627A6CFD.idx new file mode 100644 index 0000000..a0672dc Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.8B933620627A6CFD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.341B53349264D8C2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.341B53349264D8C2.idx new file mode 100644 index 0000000..7cd899d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.341B53349264D8C2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.B7088A29B5B32F97.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.B7088A29B5B32F97.idx new file mode 100644 index 0000000..2027426 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.B7088A29B5B32F97.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.CED4D1D71838D549.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.CED4D1D71838D549.idx new file mode 100644 index 0000000..88f5c31 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/limits.h.CED4D1D71838D549.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.39AF5AD05F6E643D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.39AF5AD05F6E643D.idx new file mode 100644 index 0000000..1d5d011 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.39AF5AD05F6E643D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.4339571EC7B689AF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.4339571EC7B689AF.idx new file mode 100644 index 0000000..a7de1e6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/list.tcc.4339571EC7B689AF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.1F6BB5129F2908DA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.1F6BB5129F2908DA.idx new file mode 100644 index 0000000..0139965 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale.h.1F6BB5129F2908DA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.EFFEA9DA08D9D271.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.EFFEA9DA08D9D271.idx new file mode 100644 index 0000000..357fc63 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.h.EFFEA9DA08D9D271.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.BC6C7713E589DCFB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.BC6C7713E589DCFB.idx new file mode 100644 index 0000000..1b8e652 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.BC6C7713E589DCFB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.3DADEF5A180B8221.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.3DADEF5A180B8221.idx new file mode 100644 index 0000000..9ec5b3a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/localefwd.h.3DADEF5A180B8221.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.ADF0C9C5AC94232F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.ADF0C9C5AC94232F.idx new file mode 100644 index 0000000..b8027c4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/main.cpp.ADF0C9C5AC94232F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.8652F336CCBCE739.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.8652F336CCBCE739.idx new file mode 100644 index 0000000..c2ca973 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/malloc.h.8652F336CCBCE739.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.ADDA10F030C1B0EA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.ADDA10F030C1B0EA.idx new file mode 100644 index 0000000..a994393 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/map.ADDA10F030C1B0EA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.F997C0941CFC7859.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.F997C0941CFC7859.idx new file mode 100644 index 0000000..1f03ac9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/math.h.F997C0941CFC7859.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.6A35E0723196E38F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.6A35E0723196E38F.idx new file mode 100644 index 0000000..224d34c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory.6A35E0723196E38F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory_resource.h.949F75803E618383.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory_resource.h.949F75803E618383.idx new file mode 100644 index 0000000..535d2ca Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memory_resource.h.949F75803E618383.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.88C3DCE5983EBBEF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.88C3DCE5983EBBEF.idx new file mode 100644 index 0000000..2c09c64 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/memoryfwd.h.88C3DCE5983EBBEF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.0C172CB22B11E5AA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.0C172CB22B11E5AA.idx new file mode 100644 index 0000000..7f934ca Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/mm_malloc.h.0C172CB22B11E5AA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.214164428DB64FAD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.214164428DB64FAD.idx new file mode 100644 index 0000000..adced4d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.214164428DB64FAD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.5D1F9D6408256E4B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.5D1F9D6408256E4B.idx new file mode 100644 index 0000000..a1c8757 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/move.h.5D1F9D6408256E4B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.7BD4F36917CF248D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.7BD4F36917CF248D.idx new file mode 100644 index 0000000..96029ad Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/nested_exception.h.7BD4F36917CF248D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.33C83A9D077341A5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.33C83A9D077341A5.idx new file mode 100644 index 0000000..e5fecf2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new.33C83A9D077341A5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.AF994E96FEA5FBF7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.AF994E96FEA5FBF7.idx new file mode 100644 index 0000000..f2f8250 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/new_allocator.h.AF994E96FEA5FBF7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.E26ADE863B937BD0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.E26ADE863B937BD0.idx new file mode 100644 index 0000000..7d9ad63 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/node_handle.h.E26ADE863B937BD0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.BC1C3C66052C2BF1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.BC1C3C66052C2BF1.idx new file mode 100644 index 0000000..0395809 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric.BC1C3C66052C2BF1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.34B5BAA4F0B42816.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.34B5BAA4F0B42816.idx new file mode 100644 index 0000000..6fad0bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/numeric_traits.h.34B5BAA4F0B42816.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.9D6F368BCB0044D2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.9D6F368BCB0044D2.idx new file mode 100644 index 0000000..c25d409 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/optional.9D6F368BCB0044D2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.246DDA2DA29840CF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.246DDA2DA29840CF.idx new file mode 100644 index 0000000..edc6b0e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/os_defines.h.246DDA2DA29840CF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.53675B8219EAF7D8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.53675B8219EAF7D8.idx new file mode 100644 index 0000000..2a95be6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ostream_insert.h.53675B8219EAF7D8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.9F35C43BEF2FCF68.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.9F35C43BEF2FCF68.idx new file mode 100644 index 0000000..8b2fcdd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/parse_numbers.h.9F35C43BEF2FCF68.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.487DA3CF6D8EBEEC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.487DA3CF6D8EBEEC.idx new file mode 100644 index 0000000..1af81a2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.487DA3CF6D8EBEEC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.8F9A56A13412DA07.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.8F9A56A13412DA07.idx new file mode 100644 index 0000000..4f7685a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.8F9A56A13412DA07.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.A9B5AE5CDD10DE0A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.A9B5AE5CDD10DE0A.idx new file mode 100644 index 0000000..47948fe Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/postypes.h.A9B5AE5CDD10DE0A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.F0FD890EC402829A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.F0FD890EC402829A.idx new file mode 100644 index 0000000..bcaf229 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/predefined_ops.h.F0FD890EC402829A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.1A5D633586FF2F31.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.1A5D633586FF2F31.idx new file mode 100644 index 0000000..77c6540 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/process.h.1A5D633586FF2F31.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.8AC5780B0EE8B43D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.8AC5780B0EE8B43D.idx new file mode 100644 index 0000000..4023660 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pstl_config.h.8AC5780B0EE8B43D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.E9C453A042E2E6AB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.E9C453A042E2E6AB.idx new file mode 100644 index 0000000..a5d9662 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread.h.E9C453A042E2E6AB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.249A8020DEDE984A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.249A8020DEDE984A.idx new file mode 100644 index 0000000..cee31ec Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_compat.h.249A8020DEDE984A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BE58531F88ADD0DE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BE58531F88ADD0DE.idx new file mode 100644 index 0000000..83f353b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BE58531F88ADD0DE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.5B7735246C07E51A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.5B7735246C07E51A.idx new file mode 100644 index 0000000..7a13cbe Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_time.h.5B7735246C07E51A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.687BC92285D30836.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.687BC92285D30836.idx new file mode 100644 index 0000000..88892c7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.687BC92285D30836.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.120B91EBBA5B5090.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.120B91EBBA5B5090.idx new file mode 100644 index 0000000..a85f133 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ptr_traits.h.120B91EBBA5B5090.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20algorithm.h.1CF033F3FAF2EC88.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20algorithm.h.1CF033F3FAF2EC88.idx new file mode 100644 index 0000000..52b1902 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20algorithm.h.1CF033F3FAF2EC88.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.D103E615DAEC3235.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.D103E615DAEC3235.idx new file mode 100644 index 0000000..9520116 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20functional.h.D103E615DAEC3235.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20iterator.h.1E64C5D8C8B04C5C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20iterator.h.1E64C5D8C8B04C5C.idx new file mode 100644 index 0000000..6e727c7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20iterator.h.1E64C5D8C8B04C5C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.5FF189F19597B5AA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.5FF189F19597B5AA.idx new file mode 100644 index 0000000..65388af Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20memory.h.5FF189F19597B5AA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.F331A0A07284141E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.F331A0A07284141E.idx new file mode 100644 index 0000000..42c7e49 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q20type_traits.h.F331A0A07284141E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.12DFE12F7AE93C02.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.12DFE12F7AE93C02.idx new file mode 100644 index 0000000..2adc5c3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/q23utility.h.12DFE12F7AE93C02.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.E2E1A131EA79C043.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.E2E1A131EA79C043.idx new file mode 100644 index 0000000..d54ffa9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.E2E1A131EA79C043.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.0315B420395B45CB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.0315B420395B45CB.idx new file mode 100644 index 0000000..770982d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qaction.h.0315B420395B45CB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.B38C6ECC3EE22E1F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.B38C6ECC3EE22E1F.idx new file mode 100644 index 0000000..57a571b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qalgorithms.h.B38C6ECC3EE22E1F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.25697AD8652FF851.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.25697AD8652FF851.idx new file mode 100644 index 0000000..9f80e13 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qanystringview.h.25697AD8652FF851.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.7539EC5C7DA892F3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.7539EC5C7DA892F3.idx new file mode 100644 index 0000000..532f542 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qapplication.h.7539EC5C7DA892F3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.610E70AD47818057.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.610E70AD47818057.idx new file mode 100644 index 0000000..f30c0c9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydata.h.610E70AD47818057.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.CB26903B27676FCF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.CB26903B27676FCF.idx new file mode 100644 index 0000000..82b842a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydataops.h.CB26903B27676FCF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.6515CDFF8DB71B80.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.6515CDFF8DB71B80.idx new file mode 100644 index 0000000..b7c678a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.6515CDFF8DB71B80.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.9C5CEB21BBCFA003.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.9C5CEB21BBCFA003.idx new file mode 100644 index 0000000..a5a552d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qassert.h.9C5CEB21BBCFA003.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.FCE6C7A4B6186767.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.FCE6C7A4B6186767.idx new file mode 100644 index 0000000..a7fb284 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic.h.FCE6C7A4B6186767.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.A756A5C7B1DAC1D2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.A756A5C7B1DAC1D2.idx new file mode 100644 index 0000000..73bd286 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.A756A5C7B1DAC1D2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.ECF76C8B039A79CA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.ECF76C8B039A79CA.idx new file mode 100644 index 0000000..dd29f91 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.ECF76C8B039A79CA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.A5C2ADA897173EB4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.A5C2ADA897173EB4.idx new file mode 100644 index 0000000..4834cda Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.A5C2ADA897173EB4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.B6ED5FF6DD016E2A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.B6ED5FF6DD016E2A.idx new file mode 100644 index 0000000..b08b026 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbitmap.h.B6ED5FF6DD016E2A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.810E8BBAD2F1EE66.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.810E8BBAD2F1EE66.idx new file mode 100644 index 0000000..d6865f2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbrush.h.810E8BBAD2F1EE66.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.ECAD744CEE0CF72A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.ECAD744CEE0CF72A.idx new file mode 100644 index 0000000..9ff5e20 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearray.h.ECAD744CEE0CF72A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.0584F8035A2C16A8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.0584F8035A2C16A8.idx new file mode 100644 index 0000000..378ace3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.0584F8035A2C16A8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.860700041C375C96.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.860700041C375C96.idx new file mode 100644 index 0000000..6d11906 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.860700041C375C96.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F4CE9325C6D3663.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F4CE9325C6D3663.idx new file mode 100644 index 0000000..f8bf606 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F4CE9325C6D3663.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.D935582FF29946C7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.D935582FF29946C7.idx new file mode 100644 index 0000000..ff38def Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcalendar.h.D935582FF29946C7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborcommon.h.4F4E3E96116225B9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborcommon.h.4F4E3E96116225B9.idx new file mode 100644 index 0000000..9bde07b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborcommon.h.4F4E3E96116225B9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborvalue.h.B82CA35B28F94612.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborvalue.h.B82CA35B28F94612.idx new file mode 100644 index 0000000..4e6d2b0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcborvalue.h.B82CA35B28F94612.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.BAD3A4C5B4F677F5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.BAD3A4C5B4F677F5.idx new file mode 100644 index 0000000..d2a528e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qchar.h.BAD3A4C5B4F677F5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.9C337F539071621E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.9C337F539071621E.idx new file mode 100644 index 0000000..e2a8224 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcolor.h.9C337F539071621E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.91CA278745818518.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.91CA278745818518.idx new file mode 100644 index 0000000..453d890 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare.h.91CA278745818518.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.71347AD4611B45B0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.71347AD4611B45B0.idx new file mode 100644 index 0000000..ccf64e0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.71347AD4611B45B0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.2F22D650CFA7B3AD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.2F22D650CFA7B3AD.idx new file mode 100644 index 0000000..0545e93 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.2F22D650CFA7B3AD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.0BDDA3B3FD20D13C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.0BDDA3B3FD20D13C.idx new file mode 100644 index 0000000..44feb9d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.0BDDA3B3FD20D13C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.8F38301826F1D25A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.8F38301826F1D25A.idx new file mode 100644 index 0000000..f9d6c07 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconfig.h.8F38301826F1D25A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2C9583E2D48F2277.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2C9583E2D48F2277.idx new file mode 100644 index 0000000..ad6a7da Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2C9583E2D48F2277.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.1F56BC73EF0B4F42.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.1F56BC73EF0B4F42.idx new file mode 100644 index 0000000..f549a6f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.1F56BC73EF0B4F42.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.449179BAB180A83F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.449179BAB180A83F.idx new file mode 100644 index 0000000..5ce81ad Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.449179BAB180A83F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.E526B85CD8391D4C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.E526B85CD8391D4C.idx new file mode 100644 index 0000000..b0ddd77 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.E526B85CD8391D4C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.96E999CC9DE1B181.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.96E999CC9DE1B181.idx new file mode 100644 index 0000000..e2c9f44 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.96E999CC9DE1B181.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.4CE8A5235491B501.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.4CE8A5235491B501.idx new file mode 100644 index 0000000..226787c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.4CE8A5235491B501.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.8869157F07043678.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.8869157F07043678.idx new file mode 100644 index 0000000..94e6e11 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.8869157F07043678.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E897829E64A0E663.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E897829E64A0E663.idx new file mode 100644 index 0000000..92cc074 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E897829E64A0E663.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.20B2B643D4F343E9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.20B2B643D4F343E9.idx new file mode 100644 index 0000000..7dde8c4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qcursor.h.20B2B643D4F343E9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.E71CB00ADFFDB2BF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.E71CB00ADFFDB2BF.idx new file mode 100644 index 0000000..250e9d6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.E71CB00ADFFDB2BF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.F02B2C4DD16D1F1A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.F02B2C4DD16D1F1A.idx new file mode 100644 index 0000000..a69108b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatastream.h.F02B2C4DD16D1F1A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.1CEFEDE236C5F6E7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.1CEFEDE236C5F6E7.idx new file mode 100644 index 0000000..79a4ff2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdatetime.h.1CEFEDE236C5F6E7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.132FF805B82AC412.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.132FF805B82AC412.idx new file mode 100644 index 0000000..8e20b00 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.132FF805B82AC412.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.864316BE1149FDF4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.864316BE1149FDF4.idx new file mode 100644 index 0000000..f134c23 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qdebug.h.864316BE1149FDF4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.4C08E370C2D685F9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.4C08E370C2D685F9.idx new file mode 100644 index 0000000..db965c7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.4C08E370C2D685F9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.6C7F69968AE01434.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.6C7F69968AE01434.idx new file mode 100644 index 0000000..8ebac00 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qendian.h.6C7F69968AE01434.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.F543FF8294A084E0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.F543FF8294A084E0.idx new file mode 100644 index 0000000..cab2ab5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qeventloop.h.F543FF8294A084E0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.7705B1967E36C3D5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.7705B1967E36C3D5.idx new file mode 100644 index 0000000..82f25a0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.7705B1967E36C3D5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.7527C82DBBDF3CD7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.7527C82DBBDF3CD7.idx new file mode 100644 index 0000000..7f2334c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qflags.h.7527C82DBBDF3CD7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.BDB36B1FE7DB45B2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.BDB36B1FE7DB45B2.idx new file mode 100644 index 0000000..6340d28 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfloat16.h.BDB36B1FE7DB45B2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.A1C05849216C7586.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.A1C05849216C7586.idx new file mode 100644 index 0000000..d708b1d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfont.h.A1C05849216C7586.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.5063CB93D7C62005.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.5063CB93D7C62005.idx new file mode 100644 index 0000000..2b81862 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontinfo.h.5063CB93D7C62005.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.6896BAEA6445F1AE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.6896BAEA6445F1AE.idx new file mode 100644 index 0000000..341c0da Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.6896BAEA6445F1AE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.9072E9576D89BEDE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.9072E9576D89BEDE.idx new file mode 100644 index 0000000..d7be86b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qforeach.h.9072E9576D89BEDE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.17FCFD203456BBE1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.17FCFD203456BBE1.idx new file mode 100644 index 0000000..7ebe96d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.17FCFD203456BBE1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.D8843FC9924C702A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.D8843FC9924C702A.idx new file mode 100644 index 0000000..048eba7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.D8843FC9924C702A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.F4FF6FFFA615E8F8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.F4FF6FFFA615E8F8.idx new file mode 100644 index 0000000..52df49c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.F4FF6FFFA615E8F8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.A0D67BF2FF6BD5E1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.A0D67BF2FF6BD5E1.idx new file mode 100644 index 0000000..35bd41f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobal.h.A0D67BF2FF6BD5E1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.21382A614497DF2D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.21382A614497DF2D.idx new file mode 100644 index 0000000..b7156d3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.21382A614497DF2D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.EAE94C0CBFB79A4B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.EAE94C0CBFB79A4B.idx new file mode 100644 index 0000000..927bbe5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication.h.EAE94C0CBFB79A4B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.09B1B494C86015C4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.09B1B494C86015C4.idx new file mode 100644 index 0000000..0295cb6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.09B1B494C86015C4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.1B80C9DE6CF7C6B2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.1B80C9DE6CF7C6B2.idx new file mode 100644 index 0000000..23794e2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhash.h.1B80C9DE6CF7C6B2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.43B9E80C2BC3275F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.43B9E80C2BC3275F.idx new file mode 100644 index 0000000..7ba289e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.43B9E80C2BC3275F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.611F8E6A8FF251D3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.611F8E6A8FF251D3.idx new file mode 100644 index 0000000..ae73f37 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qicon.h.611F8E6A8FF251D3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.01FB5F33914BA335.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.01FB5F33914BA335.idx new file mode 100644 index 0000000..980bb89 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qimage.h.01FB5F33914BA335.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.F0E6427A0D3CDD2B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.F0E6427A0D3CDD2B.idx new file mode 100644 index 0000000..3c2f9bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qinputmethod.h.F0E6427A0D3CDD2B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.B2828E5CCFA10E36.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.B2828E5CCFA10E36.idx new file mode 100644 index 0000000..c54fcae Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.B2828E5CCFA10E36.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.DEA4F2A307492F3C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.DEA4F2A307492F3C.idx new file mode 100644 index 0000000..d0b06bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterable.h.DEA4F2A307492F3C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.80843145DADC61E9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.80843145DADC61E9.idx new file mode 100644 index 0000000..f49afe7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qiterator.h.80843145DADC61E9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsondocument.h.5C58F9D34D3DFAC3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsondocument.h.5C58F9D34D3DFAC3.idx new file mode 100644 index 0000000..f694451 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsondocument.h.5C58F9D34D3DFAC3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonobject.h.2ED7E9916AA81F55.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonobject.h.2ED7E9916AA81F55.idx new file mode 100644 index 0000000..64e93a6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonobject.h.2ED7E9916AA81F55.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.C85C84BDE2EF6289.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.C85C84BDE2EF6289.idx new file mode 100644 index 0000000..7d29a3e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.C85C84BDE2EF6289.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.A464F03335EF6D03.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.A464F03335EF6D03.idx new file mode 100644 index 0000000..ffb6054 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qkeysequence.h.A464F03335EF6D03.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.1CA0BF709C13A0F9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.1CA0BF709C13A0F9.idx new file mode 100644 index 0000000..f1d1367 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.1CA0BF709C13A0F9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.D8F034107BD28D20.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.D8F034107BD28D20.idx new file mode 100644 index 0000000..430aa90 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qline.h.D8F034107BD28D20.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.E8B55DD06AEE0B0A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.E8B55DD06AEE0B0A.idx new file mode 100644 index 0000000..ec8d11a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlist.h.E8B55DD06AEE0B0A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.E627982AF1F7F50D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.E627982AF1F7F50D.idx new file mode 100644 index 0000000..95971ee Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlocale.h.E627982AF1F7F50D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.33380003B933298B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.33380003B933298B.idx new file mode 100644 index 0000000..373d4a5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qlogging.h.33380003B933298B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmainwindow.h.E1465F7B71C20A64.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmainwindow.h.E1465F7B71C20A64.idx new file mode 100644 index 0000000..2c3539d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmainwindow.h.E1465F7B71C20A64.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.DF1971518A60E221.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.DF1971518A60E221.idx new file mode 100644 index 0000000..341ae31 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmalloc.h.DF1971518A60E221.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.48FB2DAF12EDE0A5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.48FB2DAF12EDE0A5.idx new file mode 100644 index 0000000..a880b46 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmap.h.48FB2DAF12EDE0A5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.35FE1D654ADEA6EA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.35FE1D654ADEA6EA.idx new file mode 100644 index 0000000..8b83ad5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmargins.h.35FE1D654ADEA6EA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.0311B1EE0ECDDD67.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.0311B1EE0ECDDD67.idx new file mode 100644 index 0000000..11c6468 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmath.h.0311B1EE0ECDDD67.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F0AAA350227B36C0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F0AAA350227B36C0.idx new file mode 100644 index 0000000..89b067c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F0AAA350227B36C0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.3916E415BD846CEA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.3916E415BD846CEA.idx new file mode 100644 index 0000000..cad1fa1 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qmetatype.h.3916E415BD846CEA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.208D103B6BF0A96E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.208D103B6BF0A96E.idx new file mode 100644 index 0000000..b9b1156 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qminmax.h.208D103B6BF0A96E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.A1FA19F877429892.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.A1FA19F877429892.idx new file mode 100644 index 0000000..04e828b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnamespace.h.A1FA19F877429892.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.7484A57DD623CFE1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.7484A57DD623CFE1.idx new file mode 100644 index 0000000..b3ffb60 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.7484A57DD623CFE1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.9E3BCE6245F9BD3C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.9E3BCE6245F9BD3C.idx new file mode 100644 index 0000000..d64ad66 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qnumeric.h.9E3BCE6245F9BD3C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.E266AD4198FF3DF6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.E266AD4198FF3DF6.idx new file mode 100644 index 0000000..175caec Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject.h.E266AD4198FF3DF6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.EF3EAC364342A7DD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.EF3EAC364342A7DD.idx new file mode 100644 index 0000000..f5810b8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobject_impl.h.EF3EAC364342A7DD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.23ECACA039E551A1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.23ECACA039E551A1.idx new file mode 100644 index 0000000..dc0b579 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.23ECACA039E551A1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.DDF20EF11F22ADE2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.DDF20EF11F22ADE2.idx new file mode 100644 index 0000000..2ab40e0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.DDF20EF11F22ADE2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.79B4A1A16F0A6CC4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.79B4A1A16F0A6CC4.idx new file mode 100644 index 0000000..6b4c523 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.79B4A1A16F0A6CC4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.2298705672B19591.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.2298705672B19591.idx new file mode 100644 index 0000000..ec79c5b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qoverload.h.2298705672B19591.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.6C99C47E3B31D32F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.6C99C47E3B31D32F.idx new file mode 100644 index 0000000..506ff0d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.6C99C47E3B31D32F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.1704EF55276F317D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.1704EF55276F317D.idx new file mode 100644 index 0000000..707d8c9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpair.h.1704EF55276F317D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.6BBAFCC12F7655F5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.6BBAFCC12F7655F5.idx new file mode 100644 index 0000000..b4d5dd0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpalette.h.6BBAFCC12F7655F5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.090CEF06F46F3E81.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.090CEF06F46F3E81.idx new file mode 100644 index 0000000..348c696 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixelformat.h.090CEF06F46F3E81.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.348F1EB6AC585AC8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.348F1EB6AC585AC8.idx new file mode 100644 index 0000000..93ff782 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpixmap.h.348F1EB6AC585AC8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qplugin.h.5EB2FCB9AB7AE0B0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qplugin.h.5EB2FCB9AB7AE0B0.idx new file mode 100644 index 0000000..820d77b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qplugin.h.5EB2FCB9AB7AE0B0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.2C6D602E06FDF080.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.2C6D602E06FDF080.idx new file mode 100644 index 0000000..2b5dfe3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpoint.h.2C6D602E06FDF080.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointer.h.AC735C8A8209D104.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointer.h.AC735C8A8209D104.idx new file mode 100644 index 0000000..433feda Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpointer.h.AC735C8A8209D104.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.A23BBC75ACC897AE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.A23BBC75ACC897AE.idx new file mode 100644 index 0000000..9d81dba Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qpolygon.h.A23BBC75ACC897AE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.3EC375EE60BDCB35.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.3EC375EE60BDCB35.idx new file mode 100644 index 0000000..9a750d5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.3EC375EE60BDCB35.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.72055C4F8B6BD14D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.72055C4F8B6BD14D.idx new file mode 100644 index 0000000..4b8f8d7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrect.h.72055C4F8B6BD14D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.02742B52D52CE4BF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.02742B52D52CE4BF.idx new file mode 100644 index 0000000..6969124 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrefcount.h.02742B52D52CE4BF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.A97BE739D9AEB688.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.A97BE739D9AEB688.idx new file mode 100644 index 0000000..14f2b30 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregion.h.A97BE739D9AEB688.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.A41D06C4C35721A5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.A41D06C4C35721A5.idx new file mode 100644 index 0000000..ff4a0c8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qregularexpression.h.A41D06C4C35721A5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.C98D4E3FFC18AE8F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.C98D4E3FFC18AE8F.idx new file mode 100644 index 0000000..4445560 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgb.h.C98D4E3FFC18AE8F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.3B7722603556A6FE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.3B7722603556A6FE.idx new file mode 100644 index 0000000..9338bd8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qrgba64.h.3B7722603556A6FE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BFEC73A14D6B1EDB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BFEC73A14D6B1EDB.idx new file mode 100644 index 0000000..c2f1673 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BFEC73A14D6B1EDB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.0712C65B84F5F4CF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.0712C65B84F5F4CF.idx new file mode 100644 index 0000000..4c5d8af Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qscopeguard.h.0712C65B84F5F4CF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.CA4C722908859606.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.CA4C722908859606.idx new file mode 100644 index 0000000..b87f96d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qset.h.CA4C722908859606.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.5FE9A0A390D5F8D0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.5FE9A0A390D5F8D0.idx new file mode 100644 index 0000000..77d5e3c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata.h.5FE9A0A390D5F8D0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.D3636059744C7457.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.D3636059744C7457.idx new file mode 100644 index 0000000..0b6f1d9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.D3636059744C7457.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.81798856425FF491.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.81798856425FF491.idx new file mode 100644 index 0000000..f7ea8fb Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.81798856425FF491.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.054AFB79501FA3DF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.054AFB79501FA3DF.idx new file mode 100644 index 0000000..c461e5b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.054AFB79501FA3DF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.A8A921579E6D9D5B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.A8A921579E6D9D5B.idx new file mode 100644 index 0000000..1b5cda8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsize.h.A8A921579E6D9D5B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.D1602DBBC46E4AF6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.D1602DBBC46E4AF6.idx new file mode 100644 index 0000000..70d1549 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.D1602DBBC46E4AF6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspan.h.6D336F82A5825A90.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspan.h.6D336F82A5825A90.idx new file mode 100644 index 0000000..6aee409 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qspan.h.6D336F82A5825A90.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.D9AC4094DEC06B10.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.D9AC4094DEC06B10.idx new file mode 100644 index 0000000..3983cee Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstring.h.D9AC4094DEC06B10.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.80EDAC45F0F5FF5E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.80EDAC45F0F5FF5E.idx new file mode 100644 index 0000000..54d8458 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.80EDAC45F0F5FF5E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.06895C38D9F79CAA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.06895C38D9F79CAA.idx new file mode 100644 index 0000000..49e05ad Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.06895C38D9F79CAA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.5A2509BE36B296CB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.5A2509BE36B296CB.idx new file mode 100644 index 0000000..ded0ca9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter.h.5A2509BE36B296CB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.31A674CA4A1EBF3D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.31A674CA4A1EBF3D.idx new file mode 100644 index 0000000..11cd595 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.31A674CA4A1EBF3D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.5ABAB6D4F7252872.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.5ABAB6D4F7252872.idx new file mode 100644 index 0000000..6b8212d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringfwd.h.5ABAB6D4F7252872.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.B5BA0F9EAC8D787A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.B5BA0F9EAC8D787A.idx new file mode 100644 index 0000000..358ce5e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringlist.h.B5BA0F9EAC8D787A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.236184EE5B37EC75.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.236184EE5B37EC75.idx new file mode 100644 index 0000000..d2f407d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringliteral.h.236184EE5B37EC75.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.139856B7260D3650.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.139856B7260D3650.idx new file mode 100644 index 0000000..9df82c2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.139856B7260D3650.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.82B05D85F50B57DE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.82B05D85F50B57DE.idx new file mode 100644 index 0000000..bafa848 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.82B05D85F50B57DE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.88F7A2F7E7A150C0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.88F7A2F7E7A150C0.idx new file mode 100644 index 0000000..8800464 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qstringview.h.88F7A2F7E7A150C0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.C6CC30634BF2DE23.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.C6CC30634BF2DE23.idx new file mode 100644 index 0000000..c895520 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qswap.h.C6CC30634BF2DE23.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.1DB754040D5DFB28.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.1DB754040D5DFB28.idx new file mode 100644 index 0000000..873141c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsysinfo.h.1DB754040D5DFB28.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.28E27933A361C7B9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.28E27933A361C7B9.idx new file mode 100644 index 0000000..d92d602 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.28E27933A361C7B9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.26A5703403E19360.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.26A5703403E19360.idx new file mode 100644 index 0000000..0d08599 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtabwidget.h.26A5703403E19360.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EAAE3A8253B1E072.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EAAE3A8253B1E072.idx new file mode 100644 index 0000000..63b76ad Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EAAE3A8253B1E072.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.A34790BBDFB0B7FF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.A34790BBDFB0B7FF.idx new file mode 100644 index 0000000..2f1f69b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.A34790BBDFB0B7FF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.FD08BDA2795A7AD8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.FD08BDA2795A7AD8.idx new file mode 100644 index 0000000..79c34de Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.FD08BDA2795A7AD8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.3F8C754E3945E3B0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.3F8C754E3945E3B0.idx new file mode 100644 index 0000000..c3e794a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.3F8C754E3945E3B0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.C85358304EF44AEB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.C85358304EF44AEB.idx new file mode 100644 index 0000000..a93b659 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcore-config.h.C85358304EF44AEB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.72711CB930E9991C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.72711CB930E9991C.idx new file mode 100644 index 0000000..f38c2dd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.72711CB930E9991C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationdefinitions.h.AE6587DC590CCC16.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationdefinitions.h.AE6587DC590CCC16.idx new file mode 100644 index 0000000..4644769 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationdefinitions.h.AE6587DC590CCC16.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.6C8AB4CD55E0B702.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.6C8AB4CD55E0B702.idx new file mode 100644 index 0000000..19658f4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.6C8AB4CD55E0B702.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.3267D44CB3C41E22.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.3267D44CB3C41E22.idx new file mode 100644 index 0000000..598b574 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.3267D44CB3C41E22.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.53EA265FADCFAA83.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.53EA265FADCFAA83.idx new file mode 100644 index 0000000..02e225e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtextstream.h.53EA265FADCFAA83.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.9E3DABC28685F66D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.9E3DABC28685F66D.idx new file mode 100644 index 0000000..2772e8a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtgui-config.h.9E3DABC28685F66D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B625D4E5AB74B129.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B625D4E5AB74B129.idx new file mode 100644 index 0000000..350c199 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B625D4E5AB74B129.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.7667007C1E90B615.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.7667007C1E90B615.idx new file mode 100644 index 0000000..a11b032 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.7667007C1E90B615.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0C1057B7F3280C34.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0C1057B7F3280C34.idx new file mode 100644 index 0000000..a940379 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0C1057B7F3280C34.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.1B77AD87460A158D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.1B77AD87460A158D.idx new file mode 100644 index 0000000..7618b69 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtnoop.h.1B77AD87460A158D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.1A7B12B6A28DDE9E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.1A7B12B6A28DDE9E.idx new file mode 100644 index 0000000..a0170a0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.1A7B12B6A28DDE9E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.0DCE957EBACC17A8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.0DCE957EBACC17A8.idx new file mode 100644 index 0000000..176025a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtransform.h.0DCE957EBACC17A8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.90E962CC56F524CF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.90E962CC56F524CF.idx new file mode 100644 index 0000000..2a20482 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtresource.h.90E962CC56F524CF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.C37D97D86D7AF984.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.C37D97D86D7AF984.idx new file mode 100644 index 0000000..6c22783 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttranslation.h.C37D97D86D7AF984.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.B157A2B93E8E83C3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.B157A2B93E8E83C3.idx new file mode 100644 index 0000000..f423a09 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qttypetraits.h.B157A2B93E8E83C3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.F6EDA72951BA8721.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.F6EDA72951BA8721.idx new file mode 100644 index 0000000..cc333b3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversion.h.F6EDA72951BA8721.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.4A0A6E1B3A018AFF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.4A0A6E1B3A018AFF.idx new file mode 100644 index 0000000..df7ff63 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.4A0A6E1B3A018AFF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.949587EC675F60CA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.949587EC675F60CA.idx new file mode 100644 index 0000000..6a9358b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.949587EC675F60CA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.448D8D3A4A8D1E36.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.448D8D3A4A8D1E36.idx new file mode 100644 index 0000000..42a9283 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.448D8D3A4A8D1E36.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.FD6B3163C4011C1F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.FD6B3163C4011C1F.idx new file mode 100644 index 0000000..df627ed Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.FD6B3163C4011C1F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.1BE2B6F23F9BA6EA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.1BE2B6F23F9BA6EA.idx new file mode 100644 index 0000000..0d08a97 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.1BE2B6F23F9BA6EA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.104CBC91D012C3FB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.104CBC91D012C3FB.idx new file mode 100644 index 0000000..354c326 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qtypes.h.104CBC91D012C3FB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.7A3B0AF242E39946.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.7A3B0AF242E39946.idx new file mode 100644 index 0000000..1646f2a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qurl.h.7A3B0AF242E39946.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.0C7F2F0FB46967AC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.0C7F2F0FB46967AC.idx new file mode 100644 index 0000000..d2b7d0c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.0C7F2F0FB46967AC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quuid.h.32A9A76D906BB64A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quuid.h.32A9A76D906BB64A.idx new file mode 100644 index 0000000..fe2848b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/quuid.h.32A9A76D906BB64A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.BFB9C3DF6FEA0D86.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.BFB9C3DF6FEA0D86.idx new file mode 100644 index 0000000..e245ac6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvariant.h.BFB9C3DF6FEA0D86.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.F596D280F0BB6817.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.F596D280F0BB6817.idx new file mode 100644 index 0000000..c9af56f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.F596D280F0BB6817.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.A6212A2629A6B0CE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.A6212A2629A6B0CE.idx new file mode 100644 index 0000000..72a4d28 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qversiontagging.h.A6212A2629A6B0CE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.C2A50D6204DADE8E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.C2A50D6204DADE8E.idx new file mode 100644 index 0000000..c7a260f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwidget.h.C2A50D6204DADE8E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.365A38A9D1677A10.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.365A38A9D1677A10.idx new file mode 100644 index 0000000..8f49486 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.365A38A9D1677A10.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.D6E5CE2D40924022.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.D6E5CE2D40924022.idx new file mode 100644 index 0000000..ada8d5e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.D6E5CE2D40924022.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.D4F501E35A9A33F6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.D4F501E35A9A33F6.idx new file mode 100644 index 0000000..edb4f2d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.D4F501E35A9A33F6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.4733286DC454B283.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.4733286DC454B283.idx new file mode 100644 index 0000000..3bee4c0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.4733286DC454B283.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.92AE8F1A01995227.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.92AE8F1A01995227.idx new file mode 100644 index 0000000..17e9c30 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/range_access.h.92AE8F1A01995227.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.5787628C48CC76FF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.5787628C48CC76FF.idx new file mode 100644 index 0000000..d1b881a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/ratio.5787628C48CC76FF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.E59F53E7397F84C0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.E59F53E7397F84C0.idx new file mode 100644 index 0000000..317a02f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/refwrap.h.E59F53E7397F84C0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/requires_hosted.h.B3A773D766F336EE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/requires_hosted.h.B3A773D766F336EE.idx new file mode 100644 index 0000000..3c70edd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/requires_hosted.h.B3A773D766F336EE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.1D2218925356AF59.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.1D2218925356AF59.idx new file mode 100644 index 0000000..21c6bfa Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.1D2218925356AF59.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.5F747AD519B4B50B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.5F747AD519B4B50B.idx new file mode 100644 index 0000000..171fdc8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr.h.5F747AD519B4B50B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.BC369C5ED073BC62.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.BC369C5ED073BC62.idx new file mode 100644 index 0000000..a58a004 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.BC369C5ED073BC62.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.686BEF03E133F064.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.686BEF03E133F064.idx new file mode 100644 index 0000000..f8ff958 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.686BEF03E133F064.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.318DCCEC1230A527.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.318DCCEC1230A527.idx new file mode 100644 index 0000000..447c6f3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/signal.h.318DCCEC1230A527.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.E10AAD67EC430C58.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.E10AAD67EC430C58.idx new file mode 100644 index 0000000..34f80ce Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/specfun.h.E10AAD67EC430C58.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.39F7F74D54E48BBB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.39F7F74D54E48BBB.idx new file mode 100644 index 0000000..4fdbbb8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/special_function_util.h.39F7F74D54E48BBB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.B59E4D7EC95983AC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.B59E4D7EC95983AC.idx new file mode 100644 index 0000000..514a23c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_abs.h.B59E4D7EC95983AC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.C9F958FB53C9DDEB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.C9F958FB53C9DDEB.idx new file mode 100644 index 0000000..c043e0e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/std_function.h.C9F958FB53C9DDEB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.9A02EFE2BFC9F7C0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.9A02EFE2BFC9F7C0.idx new file mode 100644 index 0000000..b20b251 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdarg.h.9A02EFE2BFC9F7C0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.58C723B7490FDC9B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.58C723B7490FDC9B.idx new file mode 100644 index 0000000..76005d6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdbool.h.58C723B7490FDC9B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.488A7E228F35CE08.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.488A7E228F35CE08.idx new file mode 100644 index 0000000..05e95b6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stddef.h.488A7E228F35CE08.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.9B994323DBC6FB43.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.9B994323DBC6FB43.idx new file mode 100644 index 0000000..201c3fe Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdexcept.9B994323DBC6FB43.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.B178FA6FFE54A376.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.B178FA6FFE54A376.idx new file mode 100644 index 0000000..d304103 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.B178FA6FFE54A376.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.FC6439B7BF2F5648.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.FC6439B7BF2F5648.idx new file mode 100644 index 0000000..9a19af4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdint.h.FC6439B7BF2F5648.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.00C3287D615C7C3C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.00C3287D615C7C3C.idx new file mode 100644 index 0000000..baba6b3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio.h.00C3287D615C7C3C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.E0917B076884990B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.E0917B076884990B.idx new file mode 100644 index 0000000..da55551 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdio_s.h.E0917B076884990B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.0B596607CAC70D73.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.0B596607CAC70D73.idx new file mode 100644 index 0000000..7a85f58 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.0B596607CAC70D73.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.6AFBC033B64CCF07.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.6AFBC033B64CCF07.idx new file mode 100644 index 0000000..92bc2cc Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib.h.6AFBC033B64CCF07.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.6ADA891E94E89635.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.6ADA891E94E89635.idx new file mode 100644 index 0000000..63a75fb Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stdlib_s.h.6ADA891E94E89635.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.83BDFFCDECE59B41.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.83BDFFCDECE59B41.idx new file mode 100644 index 0000000..95ff448 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algo.h.83BDFFCDECE59B41.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AFD3600C2063B483.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AFD3600C2063B483.idx new file mode 100644 index 0000000..d7da2e9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AFD3600C2063B483.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.885F25CA530E3A77.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.885F25CA530E3A77.idx new file mode 100644 index 0000000..f55c497 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_bvector.h.885F25CA530E3A77.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.51285E445E84487F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.51285E445E84487F.idx new file mode 100644 index 0000000..894e835 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_construct.h.51285E445E84487F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.B41C9B39159E520D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.B41C9B39159E520D.idx new file mode 100644 index 0000000..9803061 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_function.h.B41C9B39159E520D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.54068F013EA45335.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.54068F013EA45335.idx new file mode 100644 index 0000000..0b15f36 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_heap.h.54068F013EA45335.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.D24DD7EFA2C64E4E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.D24DD7EFA2C64E4E.idx new file mode 100644 index 0000000..7f00563 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator.h.D24DD7EFA2C64E4E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.C0E9F33CE7539A7B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.C0E9F33CE7539A7B.idx new file mode 100644 index 0000000..70f7b2e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.C0E9F33CE7539A7B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.8CAA236A886A07FE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.8CAA236A886A07FE.idx new file mode 100644 index 0000000..1516e38 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.8CAA236A886A07FE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.1A518E94EEA8726D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.1A518E94EEA8726D.idx new file mode 100644 index 0000000..71b7f3a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_list.h.1A518E94EEA8726D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.D7FC128CA5C4E962.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.D7FC128CA5C4E962.idx new file mode 100644 index 0000000..b1c54cd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_map.h.D7FC128CA5C4E962.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.C15779483C7B562B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.C15779483C7B562B.idx new file mode 100644 index 0000000..86376c4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_multimap.h.C15779483C7B562B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.7D583E923EF43124.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.7D583E923EF43124.idx new file mode 100644 index 0000000..9f6e4ce Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_numeric.h.7D583E923EF43124.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.D044FA60BD63A09A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.D044FA60BD63A09A.idx new file mode 100644 index 0000000..6b2744e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_pair.h.D044FA60BD63A09A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.A9B3D367431D3623.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.A9B3D367431D3623.idx new file mode 100644 index 0000000..1c83f29 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.A9B3D367431D3623.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.C6AFE899E8B6C12C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.C6AFE899E8B6C12C.idx new file mode 100644 index 0000000..505af29 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_relops.h.C6AFE899E8B6C12C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.C5F17FE1B1407367.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.C5F17FE1B1407367.idx new file mode 100644 index 0000000..2ddd95d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.C5F17FE1B1407367.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.C97349FB64063F3A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.C97349FB64063F3A.idx new file mode 100644 index 0000000..5ea7e24 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_tree.h.C97349FB64063F3A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.A0E7A276BCAED677.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.A0E7A276BCAED677.idx new file mode 100644 index 0000000..5858679 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.A0E7A276BCAED677.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.20B4E1B133BD5142.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.20B4E1B133BD5142.idx new file mode 100644 index 0000000..0f74462 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stl_vector.h.20B4E1B133BD5142.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.A44D2DB4828F5114.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.A44D2DB4828F5114.idx new file mode 100644 index 0000000..9fec65b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stream_iterator.h.A44D2DB4828F5114.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.92ECDEE05F309D98.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.92ECDEE05F309D98.idx new file mode 100644 index 0000000..97f1057 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.92ECDEE05F309D98.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.4FEFFC07A4E66121.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.4FEFFC07A4E66121.idx new file mode 100644 index 0000000..f8a7208 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf.tcc.4FEFFC07A4E66121.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.D5902559B3B3032D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.D5902559B3B3032D.idx new file mode 100644 index 0000000..5a8766e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.D5902559B3B3032D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.54007C9D03AF9D28.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.54007C9D03AF9D28.idx new file mode 100644 index 0000000..0ad0dc3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.54007C9D03AF9D28.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.E5368193EB4C3796.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.E5368193EB4C3796.idx new file mode 100644 index 0000000..d3691d3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string.h.E5368193EB4C3796.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.62BDBE242C7E962F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.62BDBE242C7E962F.idx new file mode 100644 index 0000000..85b7bc1 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_conversions.h.62BDBE242C7E962F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.D70A01580E3EF201.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.D70A01580E3EF201.idx new file mode 100644 index 0000000..0544547 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_s.h.D70A01580E3EF201.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.C028ECF105F19EA7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.C028ECF105F19EA7.idx new file mode 100644 index 0000000..b091752 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.C028ECF105F19EA7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.02A8D4C24377CF53.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.02A8D4C24377CF53.idx new file mode 100644 index 0000000..e332a2a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/string_view.tcc.02A8D4C24377CF53.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.1D460EA342DBE04D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.1D460EA342DBE04D.idx new file mode 100644 index 0000000..89918e9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/stringfwd.h.1D460EA342DBE04D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.7F40120112BCA7AD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.7F40120112BCA7AD.idx new file mode 100644 index 0000000..301fb52 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/swprintf.inl.7F40120112BCA7AD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.875D642C0148A94F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.875D642C0148A94F.idx new file mode 100644 index 0000000..f0cd7fd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/system_error.875D642C0148A94F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.724DF011BB330EF7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.724DF011BB330EF7.idx new file mode 100644 index 0000000..61911f1 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/time.h.724DF011BB330EF7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.DF67834746399554.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.DF67834746399554.idx new file mode 100644 index 0000000..fa1a3ed Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb.h.DF67834746399554.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.2920031896084516.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.2920031896084516.idx new file mode 100644 index 0000000..bc31fe7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/timeb_s.h.2920031896084516.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.9AEF752A3C62AE6B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.9AEF752A3C62AE6B.idx new file mode 100644 index 0000000..0b5b031 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/tuple.9AEF752A3C62AE6B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.50D0C9D5F0D2CB68.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.50D0C9D5F0D2CB68.idx new file mode 100644 index 0000000..40014dd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.50D0C9D5F0D2CB68.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.A04FE3FE02787689.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.A04FE3FE02787689.idx new file mode 100644 index 0000000..d06f7a0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/type_traits.h.A04FE3FE02787689.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.811C3604E4D04429.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.811C3604E4D04429.idx new file mode 100644 index 0000000..470f1ea Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/typeinfo.811C3604E4D04429.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.7CEC2F421DD32CD5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.7CEC2F421DD32CD5.idx new file mode 100644 index 0000000..06449a6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/types.h.7CEC2F421DD32CD5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.123388CFB189BFD1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.123388CFB189BFD1.idx new file mode 100644 index 0000000..b71b651 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.123388CFB189BFD1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.E4C8F50B24DE044E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.E4C8F50B24DE044E.idx new file mode 100644 index 0000000..dacbe00 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unique_ptr.h.E4C8F50B24DE044E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.204832C65F3C994A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.204832C65F3C994A.idx new file mode 100644 index 0000000..8d7f0e5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.204832C65F3C994A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.1B1E72626F8610FD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.1B1E72626F8610FD.idx new file mode 100644 index 0000000..604bba9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/unordered_map.h.1B1E72626F8610FD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.E10432212A77F203.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.E10432212A77F203.idx new file mode 100644 index 0000000..ec2ec94 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator.h.E10432212A77F203.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.C934EFC91FF706A8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.C934EFC91FF706A8.idx new file mode 100644 index 0000000..0e7a715 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.C934EFC91FF706A8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.08192F6BD1017D43.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.08192F6BD1017D43.idx new file mode 100644 index 0000000..dbf9701 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.08192F6BD1017D43.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.h.D7BF09B530AD0BC5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.h.D7BF09B530AD0BC5.idx new file mode 100644 index 0000000..52820b0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/utility.h.D7BF09B530AD0BC5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.1689146E01EF1909.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.1689146E01EF1909.idx new file mode 100644 index 0000000..c4d7f61 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.1689146E01EF1909.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.C6151C7F15298086.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.C6151C7F15298086.idx new file mode 100644 index 0000000..8e1e3b6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vadefs.h.C6151C7F15298086.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.C138F4EA17E13377.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.C138F4EA17E13377.idx new file mode 100644 index 0000000..85df9d5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/variant.C138F4EA17E13377.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.7042D592D3999043.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.7042D592D3999043.idx new file mode 100644 index 0000000..bc84408 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.7042D592D3999043.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.2801D3DC0C7F6E99.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.2801D3DC0C7F6E99.idx new file mode 100644 index 0000000..39ee2e7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/vector.tcc.2801D3DC0C7F6E99.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.796217028ADCB0F8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.796217028ADCB0F8.idx new file mode 100644 index 0000000..4487112 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/version.796217028ADCB0F8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.50F5BE55A4A30485.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.50F5BE55A4A30485.idx new file mode 100644 index 0000000..5343b39 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar.h.50F5BE55A4A30485.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.CEB12EF941C1E7F0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.CEB12EF941C1E7F0.idx new file mode 100644 index 0000000..3f2b493 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc_clangd/.cache/clangd/index/wchar_s.h.CEB12EF941C1E7F0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeCache.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeCache.txt new file mode 100644 index 0000000..cafd6f0 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeCache.txt @@ -0,0 +1,1328 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug +# It was generated by CMake: C:/dev/Qt/Tools/CMake_64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Debug + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=1 + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//No help, variable specified on the command line. +CMAKE_CXX_FLAGS_INIT:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +CMAKE_CXX_OUTPUT_EXTENSION:STRING=.obj + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//No help, variable specified on the command line. +CMAKE_C_COMPILER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc.exe + +CMAKE_C_OUTPUT_EXTENSION:STRING= + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/dlltool.exe + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/pkgRedirects + +//No help, variable specified on the command line. +CMAKE_GENERATOR:STRING=Ninja + +//Convert GNU import libraries to MS format (requires Visual Studio) +CMAKE_GNUtoMS:BOOL=OFF + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/fontManager + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/dev/Qt/Tools/Ninja/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe + +//No help, variable specified on the command line. +CMAKE_PREFIX_PATH:PATH=C:/dev/Qt/6.8.0/mingw_64 + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//No help, variable specified on the command line. +CMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=fontManager + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe + +//Flags for Windows Resource Compiler during all build types. +CMAKE_RC_FLAGS:STRING= + +//Flags for Windows Resource Compiler during DEBUG builds. +CMAKE_RC_FLAGS_DEBUG:STRING= + +//Flags for Windows Resource Compiler during MINSIZEREL builds. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during RELEASE builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Additional directories where find(Qt6 ...) host Qt components +// are searched +QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH:STRING= + +//Additional directories where find(Qt6 ...) components are searched +QT_ADDITIONAL_PACKAGES_PREFIX_PATH:STRING= + +//Skip Qt Creator's package manager auto-setup +QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP:BOOL=OFF + +//The directory containing a CMake configuration file for QT. +QT_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6 + +//No help, variable specified on the command line. +QT_QMAKE_EXECUTABLE:FILEPATH=C:/dev/Qt/6.8.0/mingw_64/bin/qmake.exe + +//The directory containing a CMake configuration file for Qt6CoreTools. +Qt6CoreTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools + +//The directory containing a CMake configuration file for Qt6Core. +Qt6Core_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core + +//The directory containing a CMake configuration file for Qt6EntryPointPrivate. +Qt6EntryPointPrivate_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate + +//The directory containing a CMake configuration file for Qt6GuiTools. +Qt6GuiTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools + +//The directory containing a CMake configuration file for Qt6Gui. +Qt6Gui_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui + +//The directory containing a CMake configuration file for Qt6PrintSupport. +Qt6PrintSupport_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport + +//The directory containing a CMake configuration file for Qt6WidgetsTools. +Qt6WidgetsTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools + +//The directory containing a CMake configuration file for Qt6Widgets. +Qt6Widgets_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets + +//The directory containing a CMake configuration file for Qt6ZlibPrivate. +Qt6ZlibPrivate_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate + +//The directory containing a CMake configuration file for Qt6. +Qt6_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6 + +//Path to a program. +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE:FILEPATH=Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND + +//Path to a program. +Vulkan_GLSLC_EXECUTABLE:FILEPATH=Vulkan_GLSLC_EXECUTABLE-NOTFOUND + +//Path to a file. +Vulkan_INCLUDE_DIR:PATH=Vulkan_INCLUDE_DIR-NOTFOUND + +//Path to a library. +Vulkan_LIBRARY:FILEPATH=Vulkan_LIBRARY-NOTFOUND + +//Path to a program. +WINDEPLOYQT_EXECUTABLE:FILEPATH=C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe + +//Value Computed by CMake +fontManager_BINARY_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app + +//Value Computed by CMake +fontManager_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +fontManager_SOURCE_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/app + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=29 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/herwi/Documents/GitHub/qt/fontManager +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/dev/Qt/Tools/CMake_64/share/cmake-3.29 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//Details about finding WrapAtomic +FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic:INTERNAL=[1][v()] +//Test HAVE_STDATOMIC +HAVE_STDATOMIC:INTERNAL=1 +//Qt feature: abstractbutton (from target Qt6::Widgets) +QT_FEATURE_abstractbutton:INTERNAL=ON +//Qt feature: abstractslider (from target Qt6::Widgets) +QT_FEATURE_abstractslider:INTERNAL=ON +//Qt feature: accessibility (from target Qt6::Gui) +QT_FEATURE_accessibility:INTERNAL=ON +//Qt feature: accessibility_atspi_bridge (from target Qt6::Gui) +QT_FEATURE_accessibility_atspi_bridge:INTERNAL=OFF +//Qt feature: action (from target Qt6::Gui) +QT_FEATURE_action:INTERNAL=ON +//Qt feature: aesni (from target Qt6::Core) +QT_FEATURE_aesni:INTERNAL=ON +//Qt feature: alloca (from target Qt6::Core) +QT_FEATURE_alloca:INTERNAL=ON +//Qt feature: alloca_h (from target Qt6::Core) +QT_FEATURE_alloca_h:INTERNAL=OFF +//Qt feature: alloca_malloc_h (from target Qt6::Core) +QT_FEATURE_alloca_malloc_h:INTERNAL=ON +//Qt feature: android_style_assets (from target Qt6::Core) +QT_FEATURE_android_style_assets:INTERNAL=OFF +//Qt feature: animation (from target Qt6::Core) +QT_FEATURE_animation:INTERNAL=ON +//Qt feature: appstore_compliant (from target Qt6::Core) +QT_FEATURE_appstore_compliant:INTERNAL=OFF +//Qt feature: arm_crc32 (from target Qt6::Core) +QT_FEATURE_arm_crc32:INTERNAL=OFF +//Qt feature: arm_crypto (from target Qt6::Core) +QT_FEATURE_arm_crypto:INTERNAL=OFF +//Qt feature: avx (from target Qt6::Core) +QT_FEATURE_avx:INTERNAL=ON +//Qt feature: avx2 (from target Qt6::Core) +QT_FEATURE_avx2:INTERNAL=ON +//Qt feature: avx512bw (from target Qt6::Core) +QT_FEATURE_avx512bw:INTERNAL=ON +//Qt feature: avx512cd (from target Qt6::Core) +QT_FEATURE_avx512cd:INTERNAL=ON +//Qt feature: avx512dq (from target Qt6::Core) +QT_FEATURE_avx512dq:INTERNAL=ON +//Qt feature: avx512er (from target Qt6::Core) +QT_FEATURE_avx512er:INTERNAL=ON +//Qt feature: avx512f (from target Qt6::Core) +QT_FEATURE_avx512f:INTERNAL=ON +//Qt feature: avx512ifma (from target Qt6::Core) +QT_FEATURE_avx512ifma:INTERNAL=ON +//Qt feature: avx512pf (from target Qt6::Core) +QT_FEATURE_avx512pf:INTERNAL=ON +//Qt feature: avx512vbmi (from target Qt6::Core) +QT_FEATURE_avx512vbmi:INTERNAL=ON +//Qt feature: avx512vbmi2 (from target Qt6::Core) +QT_FEATURE_avx512vbmi2:INTERNAL=ON +//Qt feature: avx512vl (from target Qt6::Core) +QT_FEATURE_avx512vl:INTERNAL=ON +//Qt feature: backtrace (from target Qt6::Core) +QT_FEATURE_backtrace:INTERNAL=OFF +//Qt feature: buttongroup (from target Qt6::Widgets) +QT_FEATURE_buttongroup:INTERNAL=ON +//Qt feature: calendarwidget (from target Qt6::Widgets) +QT_FEATURE_calendarwidget:INTERNAL=ON +//Qt feature: cborstreamreader (from target Qt6::Core) +QT_FEATURE_cborstreamreader:INTERNAL=ON +//Qt feature: cborstreamwriter (from target Qt6::Core) +QT_FEATURE_cborstreamwriter:INTERNAL=ON +//Qt feature: checkbox (from target Qt6::Widgets) +QT_FEATURE_checkbox:INTERNAL=ON +//Qt feature: clipboard (from target Qt6::Gui) +QT_FEATURE_clipboard:INTERNAL=ON +//Qt feature: clock_gettime (from target Qt6::Core) +QT_FEATURE_clock_gettime:INTERNAL=OFF +//Qt feature: clock_monotonic (from target Qt6::Core) +QT_FEATURE_clock_monotonic:INTERNAL=OFF +//Qt feature: close_range (from target Qt6::Core) +QT_FEATURE_close_range:INTERNAL=OFF +//Qt feature: colordialog (from target Qt6::Widgets) +QT_FEATURE_colordialog:INTERNAL=ON +//Qt feature: colornames (from target Qt6::Gui) +QT_FEATURE_colornames:INTERNAL=ON +//Qt feature: columnview (from target Qt6::Widgets) +QT_FEATURE_columnview:INTERNAL=ON +//Qt feature: combobox (from target Qt6::Widgets) +QT_FEATURE_combobox:INTERNAL=ON +//Qt feature: commandlineparser (from target Qt6::Core) +QT_FEATURE_commandlineparser:INTERNAL=ON +//Qt feature: commandlinkbutton (from target Qt6::Widgets) +QT_FEATURE_commandlinkbutton:INTERNAL=ON +//Qt feature: completer (from target Qt6::Widgets) +QT_FEATURE_completer:INTERNAL=ON +//Qt feature: concatenatetablesproxymodel (from target Qt6::Core) +QT_FEATURE_concatenatetablesproxymodel:INTERNAL=ON +//Qt feature: concurrent (from target Qt6::Core) +QT_FEATURE_concurrent:INTERNAL=ON +//Qt feature: contextmenu (from target Qt6::Widgets) +QT_FEATURE_contextmenu:INTERNAL=ON +//Qt feature: cpp_winrt (from target Qt6::Core) +QT_FEATURE_cpp_winrt:INTERNAL=OFF +//Qt feature: cross_compile (from target Qt6::Core) +QT_FEATURE_cross_compile:INTERNAL=OFF +//Qt feature: cssparser (from target Qt6::Gui) +QT_FEATURE_cssparser:INTERNAL=ON +//Qt feature: ctf (from target Qt6::Core) +QT_FEATURE_ctf:INTERNAL=OFF +//Qt feature: cups (from target Qt6::PrintSupport) +QT_FEATURE_cups:INTERNAL=OFF +//Qt feature: cupsjobwidget (from target Qt6::PrintSupport) +QT_FEATURE_cupsjobwidget:INTERNAL=OFF +//Qt feature: cupspassworddialog (from target Qt6::PrintSupport) +QT_FEATURE_cupspassworddialog:INTERNAL=ON +//Qt feature: cursor (from target Qt6::Gui) +QT_FEATURE_cursor:INTERNAL=ON +//Qt feature: cxx11_future (from target Qt6::Core) +QT_FEATURE_cxx11_future:INTERNAL=ON +//Qt feature: cxx17_filesystem (from target Qt6::Core) +QT_FEATURE_cxx17_filesystem:INTERNAL=ON +//Qt feature: cxx20 (from target Qt6::Core) +QT_FEATURE_cxx20:INTERNAL=OFF +//Qt feature: cxx23_stacktrace (from target Qt6::Core) +QT_FEATURE_cxx23_stacktrace:INTERNAL=OFF +//Qt feature: cxx2a (from target Qt6::Core) +QT_FEATURE_cxx2a:INTERNAL=OFF +//Qt feature: cxx2b (from target Qt6::Core) +QT_FEATURE_cxx2b:INTERNAL=OFF +//Qt feature: datawidgetmapper (from target Qt6::Widgets) +QT_FEATURE_datawidgetmapper:INTERNAL=ON +//Qt feature: datestring (from target Qt6::Core) +QT_FEATURE_datestring:INTERNAL=ON +//Qt feature: datetimeedit (from target Qt6::Widgets) +QT_FEATURE_datetimeedit:INTERNAL=ON +//Qt feature: datetimeparser (from target Qt6::Core) +QT_FEATURE_datetimeparser:INTERNAL=ON +//Qt feature: dbus (from target Qt6::Core) +QT_FEATURE_dbus:INTERNAL=ON +//Qt feature: dbus_linked (from target Qt6::Core) +QT_FEATURE_dbus_linked:INTERNAL=OFF +//Qt feature: debug (from target Qt6::Core) +QT_FEATURE_debug:INTERNAL=OFF +//Qt feature: debug_and_release (from target Qt6::Core) +QT_FEATURE_debug_and_release:INTERNAL=OFF +//Qt feature: desktopservices (from target Qt6::Gui) +QT_FEATURE_desktopservices:INTERNAL=ON +//Qt feature: developer_build (from target Qt6::Core) +QT_FEATURE_developer_build:INTERNAL=OFF +//Qt feature: dial (from target Qt6::Widgets) +QT_FEATURE_dial:INTERNAL=ON +//Qt feature: dialog (from target Qt6::Widgets) +QT_FEATURE_dialog:INTERNAL=ON +//Qt feature: dialogbuttonbox (from target Qt6::Widgets) +QT_FEATURE_dialogbuttonbox:INTERNAL=ON +//Qt feature: direct2d (from target Qt6::Gui) +QT_FEATURE_direct2d:INTERNAL=ON +//Qt feature: direct2d1_1 (from target Qt6::Gui) +QT_FEATURE_direct2d1_1:INTERNAL=ON +//Qt feature: directfb (from target Qt6::Gui) +QT_FEATURE_directfb:INTERNAL=OFF +//Qt feature: directwrite (from target Qt6::Gui) +QT_FEATURE_directwrite:INTERNAL=ON +//Qt feature: directwrite3 (from target Qt6::Gui) +QT_FEATURE_directwrite3:INTERNAL=ON +//Qt feature: dladdr (from target Qt6::Core) +QT_FEATURE_dladdr:INTERNAL=OFF +//Qt feature: dlopen (from target Qt6::Core) +QT_FEATURE_dlopen:INTERNAL=OFF +//Qt feature: dockwidget (from target Qt6::Widgets) +QT_FEATURE_dockwidget:INTERNAL=ON +//Qt feature: doubleconversion (from target Qt6::Core) +QT_FEATURE_doubleconversion:INTERNAL=ON +//Qt feature: draganddrop (from target Qt6::Gui) +QT_FEATURE_draganddrop:INTERNAL=ON +//Qt feature: drm_atomic (from target Qt6::Gui) +QT_FEATURE_drm_atomic:INTERNAL=OFF +//Qt feature: dynamicgl (from target Qt6::Gui) +QT_FEATURE_dynamicgl:INTERNAL=ON +//Qt feature: easingcurve (from target Qt6::Core) +QT_FEATURE_easingcurve:INTERNAL=ON +//Qt feature: effects (from target Qt6::Widgets) +QT_FEATURE_effects:INTERNAL=ON +//Qt feature: egl (from target Qt6::Gui) +QT_FEATURE_egl:INTERNAL=OFF +//Qt feature: egl_x11 (from target Qt6::Gui) +QT_FEATURE_egl_x11:INTERNAL=OFF +//Qt feature: eglfs (from target Qt6::Gui) +QT_FEATURE_eglfs:INTERNAL=OFF +//Qt feature: eglfs_brcm (from target Qt6::Gui) +QT_FEATURE_eglfs_brcm:INTERNAL=OFF +//Qt feature: eglfs_egldevice (from target Qt6::Gui) +QT_FEATURE_eglfs_egldevice:INTERNAL=OFF +//Qt feature: eglfs_gbm (from target Qt6::Gui) +QT_FEATURE_eglfs_gbm:INTERNAL=OFF +//Qt feature: eglfs_mali (from target Qt6::Gui) +QT_FEATURE_eglfs_mali:INTERNAL=OFF +//Qt feature: eglfs_openwfd (from target Qt6::Gui) +QT_FEATURE_eglfs_openwfd:INTERNAL=OFF +//Qt feature: eglfs_rcar (from target Qt6::Gui) +QT_FEATURE_eglfs_rcar:INTERNAL=OFF +//Qt feature: eglfs_viv (from target Qt6::Gui) +QT_FEATURE_eglfs_viv:INTERNAL=OFF +//Qt feature: eglfs_viv_wl (from target Qt6::Gui) +QT_FEATURE_eglfs_viv_wl:INTERNAL=OFF +//Qt feature: eglfs_vsp2 (from target Qt6::Gui) +QT_FEATURE_eglfs_vsp2:INTERNAL=OFF +//Qt feature: eglfs_x11 (from target Qt6::Gui) +QT_FEATURE_eglfs_x11:INTERNAL=OFF +//Qt feature: elf_private_full_version (from target Qt6::Core) +QT_FEATURE_elf_private_full_version:INTERNAL=OFF +//Qt feature: errormessage (from target Qt6::Widgets) +QT_FEATURE_errormessage:INTERNAL=ON +//Qt feature: etw (from target Qt6::Core) +QT_FEATURE_etw:INTERNAL=OFF +//Qt feature: evdev (from target Qt6::Gui) +QT_FEATURE_evdev:INTERNAL=OFF +//Qt feature: f16c (from target Qt6::Core) +QT_FEATURE_f16c:INTERNAL=ON +//Qt feature: filedialog (from target Qt6::Widgets) +QT_FEATURE_filedialog:INTERNAL=ON +//Qt feature: filesystemiterator (from target Qt6::Core) +QT_FEATURE_filesystemiterator:INTERNAL=ON +//Qt feature: filesystemmodel (from target Qt6::Gui) +QT_FEATURE_filesystemmodel:INTERNAL=ON +//Qt feature: filesystemwatcher (from target Qt6::Core) +QT_FEATURE_filesystemwatcher:INTERNAL=ON +//Qt feature: fontcombobox (from target Qt6::Widgets) +QT_FEATURE_fontcombobox:INTERNAL=ON +//Qt feature: fontconfig (from target Qt6::Gui) +QT_FEATURE_fontconfig:INTERNAL=OFF +//Qt feature: fontdialog (from target Qt6::Widgets) +QT_FEATURE_fontdialog:INTERNAL=ON +//Qt feature: force_asserts (from target Qt6::Core) +QT_FEATURE_force_asserts:INTERNAL=OFF +//Qt feature: force_debug_info (from target Qt6::Core) +QT_FEATURE_force_debug_info:INTERNAL=ON +//Qt feature: forkfd_pidfd (from target Qt6::Core) +QT_FEATURE_forkfd_pidfd:INTERNAL=OFF +//Qt feature: formlayout (from target Qt6::Widgets) +QT_FEATURE_formlayout:INTERNAL=ON +//Qt feature: framework (from target Qt6::Core) +QT_FEATURE_framework:INTERNAL=OFF +//Qt feature: freetype (from target Qt6::Gui) +QT_FEATURE_freetype:INTERNAL=ON +//Qt feature: fscompleter (from target Qt6::Widgets) +QT_FEATURE_fscompleter:INTERNAL=ON +//Qt feature: futimens (from target Qt6::Core) +QT_FEATURE_futimens:INTERNAL=OFF +//Qt feature: future (from target Qt6::Core) +QT_FEATURE_future:INTERNAL=ON +//Qt feature: gc_binaries (from target Qt6::Core) +QT_FEATURE_gc_binaries:INTERNAL=OFF +//Qt feature: gestures (from target Qt6::Core) +QT_FEATURE_gestures:INTERNAL=ON +//Qt feature: getauxval (from target Qt6::Core) +QT_FEATURE_getauxval:INTERNAL=OFF +//Qt feature: getentropy (from target Qt6::Core) +QT_FEATURE_getentropy:INTERNAL=OFF +//Qt feature: gif (from target Qt6::Gui) +QT_FEATURE_gif:INTERNAL=ON +//Qt feature: glib (from target Qt6::Core) +QT_FEATURE_glib:INTERNAL=OFF +//Qt feature: glibc_fortify_source (from target Qt6::Core) +QT_FEATURE_glibc_fortify_source:INTERNAL=OFF +//Qt feature: graphicseffect (from target Qt6::Widgets) +QT_FEATURE_graphicseffect:INTERNAL=ON +//Qt feature: graphicsframecapture (from target Qt6::Gui) +QT_FEATURE_graphicsframecapture:INTERNAL=OFF +//Qt feature: graphicsview (from target Qt6::Widgets) +QT_FEATURE_graphicsview:INTERNAL=ON +//Qt feature: groupbox (from target Qt6::Widgets) +QT_FEATURE_groupbox:INTERNAL=ON +//Qt feature: gtk3 (from target Qt6::Widgets) +QT_FEATURE_gtk3:INTERNAL=OFF +//Qt feature: gui (from target Qt6::Core) +QT_FEATURE_gui:INTERNAL=ON +//Qt feature: harfbuzz (from target Qt6::Gui) +QT_FEATURE_harfbuzz:INTERNAL=ON +//Qt feature: highdpiscaling (from target Qt6::Gui) +QT_FEATURE_highdpiscaling:INTERNAL=ON +//Qt feature: hijricalendar (from target Qt6::Core) +QT_FEATURE_hijricalendar:INTERNAL=ON +//Qt feature: ico (from target Qt6::Gui) +QT_FEATURE_ico:INTERNAL=ON +//Qt feature: icu (from target Qt6::Core) +QT_FEATURE_icu:INTERNAL=OFF +//Qt feature: identityproxymodel (from target Qt6::Core) +QT_FEATURE_identityproxymodel:INTERNAL=ON +//Qt feature: im (from target Qt6::Gui) +QT_FEATURE_im:INTERNAL=ON +//Qt feature: image_heuristic_mask (from target Qt6::Gui) +QT_FEATURE_image_heuristic_mask:INTERNAL=ON +//Qt feature: image_text (from target Qt6::Gui) +QT_FEATURE_image_text:INTERNAL=ON +//Qt feature: imageformat_bmp (from target Qt6::Gui) +QT_FEATURE_imageformat_bmp:INTERNAL=ON +//Qt feature: imageformat_jpeg (from target Qt6::Gui) +QT_FEATURE_imageformat_jpeg:INTERNAL=ON +//Qt feature: imageformat_png (from target Qt6::Gui) +QT_FEATURE_imageformat_png:INTERNAL=ON +//Qt feature: imageformat_ppm (from target Qt6::Gui) +QT_FEATURE_imageformat_ppm:INTERNAL=ON +//Qt feature: imageformat_xbm (from target Qt6::Gui) +QT_FEATURE_imageformat_xbm:INTERNAL=ON +//Qt feature: imageformat_xpm (from target Qt6::Gui) +QT_FEATURE_imageformat_xpm:INTERNAL=ON +//Qt feature: imageformatplugin (from target Qt6::Gui) +QT_FEATURE_imageformatplugin:INTERNAL=ON +//Qt feature: imageio_text_loading (from target Qt6::Gui) +QT_FEATURE_imageio_text_loading:INTERNAL=ON +//Qt feature: inotify (from target Qt6::Core) +QT_FEATURE_inotify:INTERNAL=OFF +//Qt feature: inputdialog (from target Qt6::Widgets) +QT_FEATURE_inputdialog:INTERNAL=ON +//Qt feature: integrityfb (from target Qt6::Gui) +QT_FEATURE_integrityfb:INTERNAL=OFF +//Qt feature: integrityhid (from target Qt6::Gui) +QT_FEATURE_integrityhid:INTERNAL=OFF +//Qt feature: intelcet (from target Qt6::Core) +QT_FEATURE_intelcet:INTERNAL=ON +//Qt feature: islamiccivilcalendar (from target Qt6::Core) +QT_FEATURE_islamiccivilcalendar:INTERNAL=ON +//Qt feature: itemmodel (from target Qt6::Core) +QT_FEATURE_itemmodel:INTERNAL=ON +//Qt feature: itemviews (from target Qt6::Widgets) +QT_FEATURE_itemviews:INTERNAL=ON +//Qt feature: jalalicalendar (from target Qt6::Core) +QT_FEATURE_jalalicalendar:INTERNAL=ON +//Qt feature: journald (from target Qt6::Core) +QT_FEATURE_journald:INTERNAL=OFF +//Qt feature: jpeg (from target Qt6::Gui) +QT_FEATURE_jpeg:INTERNAL=ON +//Qt feature: keysequenceedit (from target Qt6::Widgets) +QT_FEATURE_keysequenceedit:INTERNAL=ON +//Qt feature: kms (from target Qt6::Gui) +QT_FEATURE_kms:INTERNAL=OFF +//Qt feature: label (from target Qt6::Widgets) +QT_FEATURE_label:INTERNAL=ON +//Qt feature: largefile (from target Qt6::Core) +QT_FEATURE_largefile:INTERNAL=ON +//Qt feature: lcdnumber (from target Qt6::Widgets) +QT_FEATURE_lcdnumber:INTERNAL=ON +//Qt feature: libcpp_hardening (from target Qt6::Core) +QT_FEATURE_libcpp_hardening:INTERNAL=OFF +//Qt feature: libinput (from target Qt6::Gui) +QT_FEATURE_libinput:INTERNAL=OFF +//Qt feature: libinput_axis_api (from target Qt6::Gui) +QT_FEATURE_libinput_axis_api:INTERNAL=OFF +//Qt feature: libinput_hires_wheel_support (from target Qt6::Gui) +QT_FEATURE_libinput_hires_wheel_support:INTERNAL=OFF +//Qt feature: library (from target Qt6::Core) +QT_FEATURE_library:INTERNAL=ON +//Qt feature: libstdcpp_assertions (from target Qt6::Core) +QT_FEATURE_libstdcpp_assertions:INTERNAL=ON +//Qt feature: libudev (from target Qt6::Core) +QT_FEATURE_libudev:INTERNAL=OFF +//Qt feature: lineedit (from target Qt6::Widgets) +QT_FEATURE_lineedit:INTERNAL=ON +//Qt feature: linkat (from target Qt6::Core) +QT_FEATURE_linkat:INTERNAL=OFF +//Qt feature: linuxfb (from target Qt6::Gui) +QT_FEATURE_linuxfb:INTERNAL=OFF +//Qt feature: listview (from target Qt6::Widgets) +QT_FEATURE_listview:INTERNAL=ON +//Qt feature: listwidget (from target Qt6::Widgets) +QT_FEATURE_listwidget:INTERNAL=ON +//Qt feature: localtime_r (from target Qt6::Core) +QT_FEATURE_localtime_r:INTERNAL=OFF +//Qt feature: localtime_s (from target Qt6::Core) +QT_FEATURE_localtime_s:INTERNAL=ON +//Qt feature: lttng (from target Qt6::Core) +QT_FEATURE_lttng:INTERNAL=OFF +//Qt feature: mainwindow (from target Qt6::Widgets) +QT_FEATURE_mainwindow:INTERNAL=ON +//Qt feature: mdiarea (from target Qt6::Widgets) +QT_FEATURE_mdiarea:INTERNAL=ON +//Qt feature: memmem (from target Qt6::Core) +QT_FEATURE_memmem:INTERNAL=OFF +//Qt feature: memrchr (from target Qt6::Core) +QT_FEATURE_memrchr:INTERNAL=OFF +//Qt feature: menu (from target Qt6::Widgets) +QT_FEATURE_menu:INTERNAL=ON +//Qt feature: menubar (from target Qt6::Widgets) +QT_FEATURE_menubar:INTERNAL=ON +//Qt feature: messagebox (from target Qt6::Widgets) +QT_FEATURE_messagebox:INTERNAL=ON +//Qt feature: metal (from target Qt6::Gui) +QT_FEATURE_metal:INTERNAL=OFF +//Qt feature: mimetype (from target Qt6::Core) +QT_FEATURE_mimetype:INTERNAL=ON +//Qt feature: mimetype_database (from target Qt6::Core) +QT_FEATURE_mimetype_database:INTERNAL=ON +//Qt feature: mips_dsp (from target Qt6::Core) +QT_FEATURE_mips_dsp:INTERNAL=OFF +//Qt feature: mips_dspr2 (from target Qt6::Core) +QT_FEATURE_mips_dspr2:INTERNAL=OFF +//Qt feature: movie (from target Qt6::Gui) +QT_FEATURE_movie:INTERNAL=ON +//Qt feature: mtdev (from target Qt6::Gui) +QT_FEATURE_mtdev:INTERNAL=OFF +//Qt feature: multiprocess (from target Qt6::Gui) +QT_FEATURE_multiprocess:INTERNAL=ON +//Qt feature: neon (from target Qt6::Core) +QT_FEATURE_neon:INTERNAL=OFF +//Qt feature: network (from target Qt6::Core) +QT_FEATURE_network:INTERNAL=ON +//Qt feature: no_direct_extern_access (from target Qt6::Core) +QT_FEATURE_no_direct_extern_access:INTERNAL=OFF +//Qt feature: no_pkg_config (from target Qt6::Core) +QT_FEATURE_no_pkg_config:INTERNAL=ON +//Qt feature: opengl (from target Qt6::Gui) +QT_FEATURE_opengl:INTERNAL=ON +//Qt feature: opengles2 (from target Qt6::Gui) +QT_FEATURE_opengles2:INTERNAL=OFF +//Qt feature: opengles3 (from target Qt6::Gui) +QT_FEATURE_opengles3:INTERNAL=OFF +//Qt feature: opengles31 (from target Qt6::Gui) +QT_FEATURE_opengles31:INTERNAL=OFF +//Qt feature: opengles32 (from target Qt6::Gui) +QT_FEATURE_opengles32:INTERNAL=OFF +//Qt feature: openssl (from target Qt6::Core) +QT_FEATURE_openssl:INTERNAL=ON +//Qt feature: openssl_hash (from target Qt6::Core) +QT_FEATURE_openssl_hash:INTERNAL=OFF +//Qt feature: openssl_linked (from target Qt6::Core) +QT_FEATURE_openssl_linked:INTERNAL=OFF +//Qt feature: opensslv11 (from target Qt6::Core) +QT_FEATURE_opensslv11:INTERNAL=OFF +//Qt feature: opensslv30 (from target Qt6::Core) +QT_FEATURE_opensslv30:INTERNAL=ON +//Qt feature: openvg (from target Qt6::Gui) +QT_FEATURE_openvg:INTERNAL=OFF +//Qt feature: pcre2 (from target Qt6::Core) +QT_FEATURE_pcre2:INTERNAL=ON +//Qt feature: pdf (from target Qt6::Gui) +QT_FEATURE_pdf:INTERNAL=ON +//Qt feature: permissions (from target Qt6::Core) +QT_FEATURE_permissions:INTERNAL=ON +//Qt feature: picture (from target Qt6::Gui) +QT_FEATURE_picture:INTERNAL=ON +//Qt feature: pkg_config (from target Qt6::Core) +QT_FEATURE_pkg_config:INTERNAL=OFF +//Qt feature: plugin_manifest (from target Qt6::Core) +QT_FEATURE_plugin_manifest:INTERNAL=ON +//Qt feature: png (from target Qt6::Gui) +QT_FEATURE_png:INTERNAL=ON +//Qt feature: poll_exit_on_error (from target Qt6::Core) +QT_FEATURE_poll_exit_on_error:INTERNAL=OFF +//Qt feature: poll_poll (from target Qt6::Core) +QT_FEATURE_poll_poll:INTERNAL=OFF +//Qt feature: poll_pollts (from target Qt6::Core) +QT_FEATURE_poll_pollts:INTERNAL=OFF +//Qt feature: poll_ppoll (from target Qt6::Core) +QT_FEATURE_poll_ppoll:INTERNAL=OFF +//Qt feature: poll_select (from target Qt6::Core) +QT_FEATURE_poll_select:INTERNAL=OFF +//Qt feature: posix_fallocate (from target Qt6::Core) +QT_FEATURE_posix_fallocate:INTERNAL=OFF +//Qt feature: posix_sem (from target Qt6::Core) +QT_FEATURE_posix_sem:INTERNAL=ON +//Qt feature: posix_shm (from target Qt6::Core) +QT_FEATURE_posix_shm:INTERNAL=OFF +//Qt feature: precompile_header (from target Qt6::Core) +QT_FEATURE_precompile_header:INTERNAL=ON +//Qt feature: printdialog (from target Qt6::PrintSupport) +QT_FEATURE_printdialog:INTERNAL=ON +//Qt feature: printer (from target Qt6::PrintSupport) +QT_FEATURE_printer:INTERNAL=ON +//Qt feature: printpreviewdialog (from target Qt6::PrintSupport) +QT_FEATURE_printpreviewdialog:INTERNAL=ON +//Qt feature: printpreviewwidget (from target Qt6::PrintSupport) +QT_FEATURE_printpreviewwidget:INTERNAL=ON +//Qt feature: printsupport (from target Qt6::Core) +QT_FEATURE_printsupport:INTERNAL=ON +//Qt feature: private_tests (from target Qt6::Core) +QT_FEATURE_private_tests:INTERNAL=OFF +//Qt feature: process (from target Qt6::Core) +QT_FEATURE_process:INTERNAL=ON +//Qt feature: processenvironment (from target Qt6::Core) +QT_FEATURE_processenvironment:INTERNAL=ON +//Qt feature: progressbar (from target Qt6::Widgets) +QT_FEATURE_progressbar:INTERNAL=ON +//Qt feature: progressdialog (from target Qt6::Widgets) +QT_FEATURE_progressdialog:INTERNAL=ON +//Qt feature: proxymodel (from target Qt6::Core) +QT_FEATURE_proxymodel:INTERNAL=ON +//Qt feature: pushbutton (from target Qt6::Widgets) +QT_FEATURE_pushbutton:INTERNAL=ON +//Qt feature: qqnx_imf (from target Qt6::Gui) +QT_FEATURE_qqnx_imf:INTERNAL=OFF +//Qt feature: qqnx_pps (from target Qt6::Core) +QT_FEATURE_qqnx_pps:INTERNAL=OFF +//Qt feature: radiobutton (from target Qt6::Widgets) +QT_FEATURE_radiobutton:INTERNAL=ON +//Qt feature: raster_64bit (from target Qt6::Gui) +QT_FEATURE_raster_64bit:INTERNAL=ON +//Qt feature: raster_fp (from target Qt6::Gui) +QT_FEATURE_raster_fp:INTERNAL=ON +//Qt feature: rdrnd (from target Qt6::Core) +QT_FEATURE_rdrnd:INTERNAL=ON +//Qt feature: rdseed (from target Qt6::Core) +QT_FEATURE_rdseed:INTERNAL=ON +//Qt feature: reduce_exports (from target Qt6::Core) +QT_FEATURE_reduce_exports:INTERNAL=ON +//Qt feature: reduce_relocations (from target Qt6::Core) +QT_FEATURE_reduce_relocations:INTERNAL=OFF +//Qt feature: regularexpression (from target Qt6::Core) +QT_FEATURE_regularexpression:INTERNAL=ON +//Qt feature: relocatable (from target Qt6::Core) +QT_FEATURE_relocatable:INTERNAL=ON +//Qt feature: relro_now_linker (from target Qt6::Core) +QT_FEATURE_relro_now_linker:INTERNAL=OFF +//Qt feature: renameat2 (from target Qt6::Core) +QT_FEATURE_renameat2:INTERNAL=OFF +//Qt feature: resizehandler (from target Qt6::Widgets) +QT_FEATURE_resizehandler:INTERNAL=ON +//Qt feature: rpath (from target Qt6::Core) +QT_FEATURE_rpath:INTERNAL=OFF +//Qt feature: rubberband (from target Qt6::Widgets) +QT_FEATURE_rubberband:INTERNAL=ON +//Qt feature: scrollarea (from target Qt6::Widgets) +QT_FEATURE_scrollarea:INTERNAL=ON +//Qt feature: scrollbar (from target Qt6::Widgets) +QT_FEATURE_scrollbar:INTERNAL=ON +//Qt feature: scroller (from target Qt6::Widgets) +QT_FEATURE_scroller:INTERNAL=ON +//Qt feature: separate_debug_info (from target Qt6::Core) +QT_FEATURE_separate_debug_info:INTERNAL=ON +//Qt feature: sessionmanager (from target Qt6::Gui) +QT_FEATURE_sessionmanager:INTERNAL=ON +//Qt feature: settings (from target Qt6::Core) +QT_FEATURE_settings:INTERNAL=ON +//Qt feature: sha3_fast (from target Qt6::Core) +QT_FEATURE_sha3_fast:INTERNAL=ON +//Qt feature: shani (from target Qt6::Core) +QT_FEATURE_shani:INTERNAL=ON +//Qt feature: shared (from target Qt6::Core) +QT_FEATURE_shared:INTERNAL=ON +//Qt feature: sharedmemory (from target Qt6::Core) +QT_FEATURE_sharedmemory:INTERNAL=ON +//Qt feature: shortcut (from target Qt6::Core) +QT_FEATURE_shortcut:INTERNAL=ON +//Qt feature: signaling_nan (from target Qt6::Core) +QT_FEATURE_signaling_nan:INTERNAL=ON +//Qt feature: simulator_and_device (from target Qt6::Core) +QT_FEATURE_simulator_and_device:INTERNAL=OFF +//Qt feature: sizegrip (from target Qt6::Widgets) +QT_FEATURE_sizegrip:INTERNAL=ON +//Qt feature: slider (from target Qt6::Widgets) +QT_FEATURE_slider:INTERNAL=ON +//Qt feature: slog2 (from target Qt6::Core) +QT_FEATURE_slog2:INTERNAL=OFF +//Qt feature: sortfilterproxymodel (from target Qt6::Core) +QT_FEATURE_sortfilterproxymodel:INTERNAL=ON +//Qt feature: spinbox (from target Qt6::Widgets) +QT_FEATURE_spinbox:INTERNAL=ON +//Qt feature: splashscreen (from target Qt6::Widgets) +QT_FEATURE_splashscreen:INTERNAL=ON +//Qt feature: splitter (from target Qt6::Widgets) +QT_FEATURE_splitter:INTERNAL=ON +//Qt feature: sql (from target Qt6::Core) +QT_FEATURE_sql:INTERNAL=ON +//Qt feature: sse2 (from target Qt6::Core) +QT_FEATURE_sse2:INTERNAL=ON +//Qt feature: sse3 (from target Qt6::Core) +QT_FEATURE_sse3:INTERNAL=ON +//Qt feature: sse4_1 (from target Qt6::Core) +QT_FEATURE_sse4_1:INTERNAL=ON +//Qt feature: sse4_2 (from target Qt6::Core) +QT_FEATURE_sse4_2:INTERNAL=ON +//Qt feature: ssse3 (from target Qt6::Core) +QT_FEATURE_ssse3:INTERNAL=ON +//Qt feature: stack_clash_protection (from target Qt6::Core) +QT_FEATURE_stack_clash_protection:INTERNAL=ON +//Qt feature: stack_protector (from target Qt6::Core) +QT_FEATURE_stack_protector:INTERNAL=ON +//Qt feature: stackedwidget (from target Qt6::Widgets) +QT_FEATURE_stackedwidget:INTERNAL=ON +//Qt feature: standarditemmodel (from target Qt6::Gui) +QT_FEATURE_standarditemmodel:INTERNAL=ON +//Qt feature: static (from target Qt6::Core) +QT_FEATURE_static:INTERNAL=OFF +//Qt feature: statusbar (from target Qt6::Widgets) +QT_FEATURE_statusbar:INTERNAL=ON +//Qt feature: statustip (from target Qt6::Widgets) +QT_FEATURE_statustip:INTERNAL=ON +//Qt feature: std_atomic64 (from target Qt6::Core) +QT_FEATURE_std_atomic64:INTERNAL=ON +//Qt feature: stdlib_libcpp (from target Qt6::Core) +QT_FEATURE_stdlib_libcpp:INTERNAL=OFF +//Qt feature: stringlistmodel (from target Qt6::Core) +QT_FEATURE_stringlistmodel:INTERNAL=ON +//Qt feature: style_android (from target Qt6::Widgets) +QT_FEATURE_style_android:INTERNAL=OFF +//Qt feature: style_fusion (from target Qt6::Widgets) +QT_FEATURE_style_fusion:INTERNAL=ON +//Qt feature: style_mac (from target Qt6::Widgets) +QT_FEATURE_style_mac:INTERNAL=OFF +//Qt feature: style_stylesheet (from target Qt6::Widgets) +QT_FEATURE_style_stylesheet:INTERNAL=ON +//Qt feature: style_windows (from target Qt6::Widgets) +QT_FEATURE_style_windows:INTERNAL=ON +//Qt feature: style_windows11 (from target Qt6::Widgets) +QT_FEATURE_style_windows11:INTERNAL=ON +//Qt feature: style_windowsvista (from target Qt6::Widgets) +QT_FEATURE_style_windowsvista:INTERNAL=ON +//Qt feature: syntaxhighlighter (from target Qt6::Widgets) +QT_FEATURE_syntaxhighlighter:INTERNAL=ON +//Qt feature: syslog (from target Qt6::Core) +QT_FEATURE_syslog:INTERNAL=OFF +//Qt feature: system_doubleconversion (from target Qt6::Core) +QT_FEATURE_system_doubleconversion:INTERNAL=OFF +//Qt feature: system_freetype (from target Qt6::Gui) +QT_FEATURE_system_freetype:INTERNAL=OFF +//Qt feature: system_harfbuzz (from target Qt6::Gui) +QT_FEATURE_system_harfbuzz:INTERNAL=OFF +//Qt feature: system_jpeg (from target Qt6::Gui) +QT_FEATURE_system_jpeg:INTERNAL=OFF +//Qt feature: system_libb2 (from target Qt6::Core) +QT_FEATURE_system_libb2:INTERNAL=OFF +//Qt feature: system_pcre2 (from target Qt6::Core) +QT_FEATURE_system_pcre2:INTERNAL=OFF +//Qt feature: system_png (from target Qt6::Gui) +QT_FEATURE_system_png:INTERNAL=OFF +//Qt feature: system_textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_system_textmarkdownreader:INTERNAL=OFF +//Qt feature: system_xcb_xinput (from target Qt6::Gui) +QT_FEATURE_system_xcb_xinput:INTERNAL=OFF +//Qt feature: system_zlib (from target Qt6::Core) +QT_FEATURE_system_zlib:INTERNAL=OFF +//Qt feature: systemsemaphore (from target Qt6::Core) +QT_FEATURE_systemsemaphore:INTERNAL=ON +//Qt feature: systemtrayicon (from target Qt6::Gui) +QT_FEATURE_systemtrayicon:INTERNAL=ON +//Qt feature: sysv_sem (from target Qt6::Core) +QT_FEATURE_sysv_sem:INTERNAL=OFF +//Qt feature: sysv_shm (from target Qt6::Core) +QT_FEATURE_sysv_shm:INTERNAL=OFF +//Qt feature: tabbar (from target Qt6::Widgets) +QT_FEATURE_tabbar:INTERNAL=ON +//Qt feature: tabletevent (from target Qt6::Gui) +QT_FEATURE_tabletevent:INTERNAL=ON +//Qt feature: tableview (from target Qt6::Widgets) +QT_FEATURE_tableview:INTERNAL=ON +//Qt feature: tablewidget (from target Qt6::Widgets) +QT_FEATURE_tablewidget:INTERNAL=ON +//Qt feature: tabwidget (from target Qt6::Widgets) +QT_FEATURE_tabwidget:INTERNAL=ON +//Qt feature: temporaryfile (from target Qt6::Core) +QT_FEATURE_temporaryfile:INTERNAL=ON +//Qt feature: testlib (from target Qt6::Core) +QT_FEATURE_testlib:INTERNAL=ON +//Qt feature: textbrowser (from target Qt6::Widgets) +QT_FEATURE_textbrowser:INTERNAL=ON +//Qt feature: textdate (from target Qt6::Core) +QT_FEATURE_textdate:INTERNAL=ON +//Qt feature: textedit (from target Qt6::Widgets) +QT_FEATURE_textedit:INTERNAL=ON +//Qt feature: texthtmlparser (from target Qt6::Gui) +QT_FEATURE_texthtmlparser:INTERNAL=ON +//Qt feature: textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_textmarkdownreader:INTERNAL=ON +//Qt feature: textmarkdownwriter (from target Qt6::Gui) +QT_FEATURE_textmarkdownwriter:INTERNAL=ON +//Qt feature: textodfwriter (from target Qt6::Gui) +QT_FEATURE_textodfwriter:INTERNAL=ON +//Qt feature: thread (from target Qt6::Core) +QT_FEATURE_thread:INTERNAL=ON +//Qt feature: timezone (from target Qt6::Core) +QT_FEATURE_timezone:INTERNAL=ON +//Qt feature: timezone_locale (from target Qt6::Core) +QT_FEATURE_timezone_locale:INTERNAL=OFF +//Qt feature: toolbar (from target Qt6::Widgets) +QT_FEATURE_toolbar:INTERNAL=ON +//Qt feature: toolbox (from target Qt6::Widgets) +QT_FEATURE_toolbox:INTERNAL=ON +//Qt feature: toolbutton (from target Qt6::Widgets) +QT_FEATURE_toolbutton:INTERNAL=ON +//Qt feature: tooltip (from target Qt6::Widgets) +QT_FEATURE_tooltip:INTERNAL=ON +//Qt feature: translation (from target Qt6::Core) +QT_FEATURE_translation:INTERNAL=ON +//Qt feature: transposeproxymodel (from target Qt6::Core) +QT_FEATURE_transposeproxymodel:INTERNAL=ON +//Qt feature: treeview (from target Qt6::Widgets) +QT_FEATURE_treeview:INTERNAL=ON +//Qt feature: treewidget (from target Qt6::Widgets) +QT_FEATURE_treewidget:INTERNAL=ON +//Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core) +QT_FEATURE_trivial_auto_var_init_pattern:INTERNAL=OFF +//Qt feature: tslib (from target Qt6::Gui) +QT_FEATURE_tslib:INTERNAL=OFF +//Qt feature: tuiotouch (from target Qt6::Gui) +QT_FEATURE_tuiotouch:INTERNAL=ON +//Qt feature: undocommand (from target Qt6::Gui) +QT_FEATURE_undocommand:INTERNAL=ON +//Qt feature: undogroup (from target Qt6::Gui) +QT_FEATURE_undogroup:INTERNAL=ON +//Qt feature: undostack (from target Qt6::Gui) +QT_FEATURE_undostack:INTERNAL=ON +//Qt feature: undoview (from target Qt6::Widgets) +QT_FEATURE_undoview:INTERNAL=ON +//Qt feature: use_bfd_linker (from target Qt6::Core) +QT_FEATURE_use_bfd_linker:INTERNAL=OFF +//Qt feature: use_gold_linker (from target Qt6::Core) +QT_FEATURE_use_gold_linker:INTERNAL=OFF +//Qt feature: use_lld_linker (from target Qt6::Core) +QT_FEATURE_use_lld_linker:INTERNAL=OFF +//Qt feature: use_mold_linker (from target Qt6::Core) +QT_FEATURE_use_mold_linker:INTERNAL=OFF +//Qt feature: vaes (from target Qt6::Core) +QT_FEATURE_vaes:INTERNAL=ON +//Qt feature: validator (from target Qt6::Gui) +QT_FEATURE_validator:INTERNAL=ON +//Qt feature: version_tagging (from target Qt6::Core) +QT_FEATURE_version_tagging:INTERNAL=ON +//Qt feature: vkgen (from target Qt6::Gui) +QT_FEATURE_vkgen:INTERNAL=ON +//Qt feature: vkkhrdisplay (from target Qt6::Gui) +QT_FEATURE_vkkhrdisplay:INTERNAL=OFF +//Qt feature: vnc (from target Qt6::Gui) +QT_FEATURE_vnc:INTERNAL=OFF +//Qt feature: vsp2 (from target Qt6::Gui) +QT_FEATURE_vsp2:INTERNAL=OFF +//Qt feature: vulkan (from target Qt6::Gui) +QT_FEATURE_vulkan:INTERNAL=ON +//Qt feature: wasm_exceptions (from target Qt6::Core) +QT_FEATURE_wasm_exceptions:INTERNAL=OFF +//Qt feature: wasm_simd128 (from target Qt6::Core) +QT_FEATURE_wasm_simd128:INTERNAL=OFF +//Qt feature: wayland (from target Qt6::Gui) +QT_FEATURE_wayland:INTERNAL=OFF +//Qt feature: whatsthis (from target Qt6::Gui) +QT_FEATURE_whatsthis:INTERNAL=ON +//Qt feature: wheelevent (from target Qt6::Gui) +QT_FEATURE_wheelevent:INTERNAL=ON +//Qt feature: widgets (from target Qt6::Core) +QT_FEATURE_widgets:INTERNAL=ON +//Qt feature: widgettextcontrol (from target Qt6::Widgets) +QT_FEATURE_widgettextcontrol:INTERNAL=ON +//Qt feature: wizard (from target Qt6::Widgets) +QT_FEATURE_wizard:INTERNAL=ON +//Qt feature: x86intrin (from target Qt6::Core) +QT_FEATURE_x86intrin:INTERNAL=ON +//Qt feature: xcb (from target Qt6::Gui) +QT_FEATURE_xcb:INTERNAL=OFF +//Qt feature: xcb_egl_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_egl_plugin:INTERNAL=OFF +//Qt feature: xcb_glx (from target Qt6::Gui) +QT_FEATURE_xcb_glx:INTERNAL=OFF +//Qt feature: xcb_glx_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_glx_plugin:INTERNAL=OFF +//Qt feature: xcb_native_painting (from target Qt6::Gui) +QT_FEATURE_xcb_native_painting:INTERNAL=OFF +//Qt feature: xcb_sm (from target Qt6::Gui) +QT_FEATURE_xcb_sm:INTERNAL=OFF +//Qt feature: xcb_xlib (from target Qt6::Gui) +QT_FEATURE_xcb_xlib:INTERNAL=OFF +//Qt feature: xkbcommon (from target Qt6::Gui) +QT_FEATURE_xkbcommon:INTERNAL=OFF +//Qt feature: xkbcommon_x11 (from target Qt6::Gui) +QT_FEATURE_xkbcommon_x11:INTERNAL=OFF +//Qt feature: xlib (from target Qt6::Gui) +QT_FEATURE_xlib:INTERNAL=OFF +//Qt feature: xml (from target Qt6::Core) +QT_FEATURE_xml:INTERNAL=ON +//Qt feature: xmlstream (from target Qt6::Core) +QT_FEATURE_xmlstream:INTERNAL=ON +//Qt feature: xmlstreamreader (from target Qt6::Core) +QT_FEATURE_xmlstreamreader:INTERNAL=ON +//Qt feature: xmlstreamwriter (from target Qt6::Core) +QT_FEATURE_xmlstreamwriter:INTERNAL=ON +//Qt feature: xrender (from target Qt6::Gui) +QT_FEATURE_xrender:INTERNAL=OFF +//Qt feature: zstd (from target Qt6::Core) +QT_FEATURE_zstd:INTERNAL=OFF +//ADVANCED property for variable: Vulkan_GLSLANG_VALIDATOR_EXECUTABLE +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_GLSLC_EXECUTABLE +Vulkan_GLSLC_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_INCLUDE_DIR +Vulkan_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_LIBRARY +Vulkan_LIBRARY-ADVANCED:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/fontManager + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeCache.txt.prev b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeCache.txt.prev new file mode 100644 index 0000000..cafd6f0 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeCache.txt.prev @@ -0,0 +1,1328 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug +# It was generated by CMake: C:/dev/Qt/Tools/CMake_64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Debug + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=1 + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//No help, variable specified on the command line. +CMAKE_CXX_FLAGS_INIT:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +CMAKE_CXX_OUTPUT_EXTENSION:STRING=.obj + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//No help, variable specified on the command line. +CMAKE_C_COMPILER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc.exe + +CMAKE_C_OUTPUT_EXTENSION:STRING= + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/dlltool.exe + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/pkgRedirects + +//No help, variable specified on the command line. +CMAKE_GENERATOR:STRING=Ninja + +//Convert GNU import libraries to MS format (requires Visual Studio) +CMAKE_GNUtoMS:BOOL=OFF + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/fontManager + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/dev/Qt/Tools/Ninja/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe + +//No help, variable specified on the command line. +CMAKE_PREFIX_PATH:PATH=C:/dev/Qt/6.8.0/mingw_64 + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//No help, variable specified on the command line. +CMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=fontManager + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe + +//Flags for Windows Resource Compiler during all build types. +CMAKE_RC_FLAGS:STRING= + +//Flags for Windows Resource Compiler during DEBUG builds. +CMAKE_RC_FLAGS_DEBUG:STRING= + +//Flags for Windows Resource Compiler during MINSIZEREL builds. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during RELEASE builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Additional directories where find(Qt6 ...) host Qt components +// are searched +QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH:STRING= + +//Additional directories where find(Qt6 ...) components are searched +QT_ADDITIONAL_PACKAGES_PREFIX_PATH:STRING= + +//Skip Qt Creator's package manager auto-setup +QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP:BOOL=OFF + +//The directory containing a CMake configuration file for QT. +QT_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6 + +//No help, variable specified on the command line. +QT_QMAKE_EXECUTABLE:FILEPATH=C:/dev/Qt/6.8.0/mingw_64/bin/qmake.exe + +//The directory containing a CMake configuration file for Qt6CoreTools. +Qt6CoreTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools + +//The directory containing a CMake configuration file for Qt6Core. +Qt6Core_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core + +//The directory containing a CMake configuration file for Qt6EntryPointPrivate. +Qt6EntryPointPrivate_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate + +//The directory containing a CMake configuration file for Qt6GuiTools. +Qt6GuiTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools + +//The directory containing a CMake configuration file for Qt6Gui. +Qt6Gui_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui + +//The directory containing a CMake configuration file for Qt6PrintSupport. +Qt6PrintSupport_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport + +//The directory containing a CMake configuration file for Qt6WidgetsTools. +Qt6WidgetsTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools + +//The directory containing a CMake configuration file for Qt6Widgets. +Qt6Widgets_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets + +//The directory containing a CMake configuration file for Qt6ZlibPrivate. +Qt6ZlibPrivate_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate + +//The directory containing a CMake configuration file for Qt6. +Qt6_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6 + +//Path to a program. +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE:FILEPATH=Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND + +//Path to a program. +Vulkan_GLSLC_EXECUTABLE:FILEPATH=Vulkan_GLSLC_EXECUTABLE-NOTFOUND + +//Path to a file. +Vulkan_INCLUDE_DIR:PATH=Vulkan_INCLUDE_DIR-NOTFOUND + +//Path to a library. +Vulkan_LIBRARY:FILEPATH=Vulkan_LIBRARY-NOTFOUND + +//Path to a program. +WINDEPLOYQT_EXECUTABLE:FILEPATH=C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe + +//Value Computed by CMake +fontManager_BINARY_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app + +//Value Computed by CMake +fontManager_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +fontManager_SOURCE_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/app + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=29 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/herwi/Documents/GitHub/qt/fontManager +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/dev/Qt/Tools/CMake_64/share/cmake-3.29 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//Details about finding WrapAtomic +FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic:INTERNAL=[1][v()] +//Test HAVE_STDATOMIC +HAVE_STDATOMIC:INTERNAL=1 +//Qt feature: abstractbutton (from target Qt6::Widgets) +QT_FEATURE_abstractbutton:INTERNAL=ON +//Qt feature: abstractslider (from target Qt6::Widgets) +QT_FEATURE_abstractslider:INTERNAL=ON +//Qt feature: accessibility (from target Qt6::Gui) +QT_FEATURE_accessibility:INTERNAL=ON +//Qt feature: accessibility_atspi_bridge (from target Qt6::Gui) +QT_FEATURE_accessibility_atspi_bridge:INTERNAL=OFF +//Qt feature: action (from target Qt6::Gui) +QT_FEATURE_action:INTERNAL=ON +//Qt feature: aesni (from target Qt6::Core) +QT_FEATURE_aesni:INTERNAL=ON +//Qt feature: alloca (from target Qt6::Core) +QT_FEATURE_alloca:INTERNAL=ON +//Qt feature: alloca_h (from target Qt6::Core) +QT_FEATURE_alloca_h:INTERNAL=OFF +//Qt feature: alloca_malloc_h (from target Qt6::Core) +QT_FEATURE_alloca_malloc_h:INTERNAL=ON +//Qt feature: android_style_assets (from target Qt6::Core) +QT_FEATURE_android_style_assets:INTERNAL=OFF +//Qt feature: animation (from target Qt6::Core) +QT_FEATURE_animation:INTERNAL=ON +//Qt feature: appstore_compliant (from target Qt6::Core) +QT_FEATURE_appstore_compliant:INTERNAL=OFF +//Qt feature: arm_crc32 (from target Qt6::Core) +QT_FEATURE_arm_crc32:INTERNAL=OFF +//Qt feature: arm_crypto (from target Qt6::Core) +QT_FEATURE_arm_crypto:INTERNAL=OFF +//Qt feature: avx (from target Qt6::Core) +QT_FEATURE_avx:INTERNAL=ON +//Qt feature: avx2 (from target Qt6::Core) +QT_FEATURE_avx2:INTERNAL=ON +//Qt feature: avx512bw (from target Qt6::Core) +QT_FEATURE_avx512bw:INTERNAL=ON +//Qt feature: avx512cd (from target Qt6::Core) +QT_FEATURE_avx512cd:INTERNAL=ON +//Qt feature: avx512dq (from target Qt6::Core) +QT_FEATURE_avx512dq:INTERNAL=ON +//Qt feature: avx512er (from target Qt6::Core) +QT_FEATURE_avx512er:INTERNAL=ON +//Qt feature: avx512f (from target Qt6::Core) +QT_FEATURE_avx512f:INTERNAL=ON +//Qt feature: avx512ifma (from target Qt6::Core) +QT_FEATURE_avx512ifma:INTERNAL=ON +//Qt feature: avx512pf (from target Qt6::Core) +QT_FEATURE_avx512pf:INTERNAL=ON +//Qt feature: avx512vbmi (from target Qt6::Core) +QT_FEATURE_avx512vbmi:INTERNAL=ON +//Qt feature: avx512vbmi2 (from target Qt6::Core) +QT_FEATURE_avx512vbmi2:INTERNAL=ON +//Qt feature: avx512vl (from target Qt6::Core) +QT_FEATURE_avx512vl:INTERNAL=ON +//Qt feature: backtrace (from target Qt6::Core) +QT_FEATURE_backtrace:INTERNAL=OFF +//Qt feature: buttongroup (from target Qt6::Widgets) +QT_FEATURE_buttongroup:INTERNAL=ON +//Qt feature: calendarwidget (from target Qt6::Widgets) +QT_FEATURE_calendarwidget:INTERNAL=ON +//Qt feature: cborstreamreader (from target Qt6::Core) +QT_FEATURE_cborstreamreader:INTERNAL=ON +//Qt feature: cborstreamwriter (from target Qt6::Core) +QT_FEATURE_cborstreamwriter:INTERNAL=ON +//Qt feature: checkbox (from target Qt6::Widgets) +QT_FEATURE_checkbox:INTERNAL=ON +//Qt feature: clipboard (from target Qt6::Gui) +QT_FEATURE_clipboard:INTERNAL=ON +//Qt feature: clock_gettime (from target Qt6::Core) +QT_FEATURE_clock_gettime:INTERNAL=OFF +//Qt feature: clock_monotonic (from target Qt6::Core) +QT_FEATURE_clock_monotonic:INTERNAL=OFF +//Qt feature: close_range (from target Qt6::Core) +QT_FEATURE_close_range:INTERNAL=OFF +//Qt feature: colordialog (from target Qt6::Widgets) +QT_FEATURE_colordialog:INTERNAL=ON +//Qt feature: colornames (from target Qt6::Gui) +QT_FEATURE_colornames:INTERNAL=ON +//Qt feature: columnview (from target Qt6::Widgets) +QT_FEATURE_columnview:INTERNAL=ON +//Qt feature: combobox (from target Qt6::Widgets) +QT_FEATURE_combobox:INTERNAL=ON +//Qt feature: commandlineparser (from target Qt6::Core) +QT_FEATURE_commandlineparser:INTERNAL=ON +//Qt feature: commandlinkbutton (from target Qt6::Widgets) +QT_FEATURE_commandlinkbutton:INTERNAL=ON +//Qt feature: completer (from target Qt6::Widgets) +QT_FEATURE_completer:INTERNAL=ON +//Qt feature: concatenatetablesproxymodel (from target Qt6::Core) +QT_FEATURE_concatenatetablesproxymodel:INTERNAL=ON +//Qt feature: concurrent (from target Qt6::Core) +QT_FEATURE_concurrent:INTERNAL=ON +//Qt feature: contextmenu (from target Qt6::Widgets) +QT_FEATURE_contextmenu:INTERNAL=ON +//Qt feature: cpp_winrt (from target Qt6::Core) +QT_FEATURE_cpp_winrt:INTERNAL=OFF +//Qt feature: cross_compile (from target Qt6::Core) +QT_FEATURE_cross_compile:INTERNAL=OFF +//Qt feature: cssparser (from target Qt6::Gui) +QT_FEATURE_cssparser:INTERNAL=ON +//Qt feature: ctf (from target Qt6::Core) +QT_FEATURE_ctf:INTERNAL=OFF +//Qt feature: cups (from target Qt6::PrintSupport) +QT_FEATURE_cups:INTERNAL=OFF +//Qt feature: cupsjobwidget (from target Qt6::PrintSupport) +QT_FEATURE_cupsjobwidget:INTERNAL=OFF +//Qt feature: cupspassworddialog (from target Qt6::PrintSupport) +QT_FEATURE_cupspassworddialog:INTERNAL=ON +//Qt feature: cursor (from target Qt6::Gui) +QT_FEATURE_cursor:INTERNAL=ON +//Qt feature: cxx11_future (from target Qt6::Core) +QT_FEATURE_cxx11_future:INTERNAL=ON +//Qt feature: cxx17_filesystem (from target Qt6::Core) +QT_FEATURE_cxx17_filesystem:INTERNAL=ON +//Qt feature: cxx20 (from target Qt6::Core) +QT_FEATURE_cxx20:INTERNAL=OFF +//Qt feature: cxx23_stacktrace (from target Qt6::Core) +QT_FEATURE_cxx23_stacktrace:INTERNAL=OFF +//Qt feature: cxx2a (from target Qt6::Core) +QT_FEATURE_cxx2a:INTERNAL=OFF +//Qt feature: cxx2b (from target Qt6::Core) +QT_FEATURE_cxx2b:INTERNAL=OFF +//Qt feature: datawidgetmapper (from target Qt6::Widgets) +QT_FEATURE_datawidgetmapper:INTERNAL=ON +//Qt feature: datestring (from target Qt6::Core) +QT_FEATURE_datestring:INTERNAL=ON +//Qt feature: datetimeedit (from target Qt6::Widgets) +QT_FEATURE_datetimeedit:INTERNAL=ON +//Qt feature: datetimeparser (from target Qt6::Core) +QT_FEATURE_datetimeparser:INTERNAL=ON +//Qt feature: dbus (from target Qt6::Core) +QT_FEATURE_dbus:INTERNAL=ON +//Qt feature: dbus_linked (from target Qt6::Core) +QT_FEATURE_dbus_linked:INTERNAL=OFF +//Qt feature: debug (from target Qt6::Core) +QT_FEATURE_debug:INTERNAL=OFF +//Qt feature: debug_and_release (from target Qt6::Core) +QT_FEATURE_debug_and_release:INTERNAL=OFF +//Qt feature: desktopservices (from target Qt6::Gui) +QT_FEATURE_desktopservices:INTERNAL=ON +//Qt feature: developer_build (from target Qt6::Core) +QT_FEATURE_developer_build:INTERNAL=OFF +//Qt feature: dial (from target Qt6::Widgets) +QT_FEATURE_dial:INTERNAL=ON +//Qt feature: dialog (from target Qt6::Widgets) +QT_FEATURE_dialog:INTERNAL=ON +//Qt feature: dialogbuttonbox (from target Qt6::Widgets) +QT_FEATURE_dialogbuttonbox:INTERNAL=ON +//Qt feature: direct2d (from target Qt6::Gui) +QT_FEATURE_direct2d:INTERNAL=ON +//Qt feature: direct2d1_1 (from target Qt6::Gui) +QT_FEATURE_direct2d1_1:INTERNAL=ON +//Qt feature: directfb (from target Qt6::Gui) +QT_FEATURE_directfb:INTERNAL=OFF +//Qt feature: directwrite (from target Qt6::Gui) +QT_FEATURE_directwrite:INTERNAL=ON +//Qt feature: directwrite3 (from target Qt6::Gui) +QT_FEATURE_directwrite3:INTERNAL=ON +//Qt feature: dladdr (from target Qt6::Core) +QT_FEATURE_dladdr:INTERNAL=OFF +//Qt feature: dlopen (from target Qt6::Core) +QT_FEATURE_dlopen:INTERNAL=OFF +//Qt feature: dockwidget (from target Qt6::Widgets) +QT_FEATURE_dockwidget:INTERNAL=ON +//Qt feature: doubleconversion (from target Qt6::Core) +QT_FEATURE_doubleconversion:INTERNAL=ON +//Qt feature: draganddrop (from target Qt6::Gui) +QT_FEATURE_draganddrop:INTERNAL=ON +//Qt feature: drm_atomic (from target Qt6::Gui) +QT_FEATURE_drm_atomic:INTERNAL=OFF +//Qt feature: dynamicgl (from target Qt6::Gui) +QT_FEATURE_dynamicgl:INTERNAL=ON +//Qt feature: easingcurve (from target Qt6::Core) +QT_FEATURE_easingcurve:INTERNAL=ON +//Qt feature: effects (from target Qt6::Widgets) +QT_FEATURE_effects:INTERNAL=ON +//Qt feature: egl (from target Qt6::Gui) +QT_FEATURE_egl:INTERNAL=OFF +//Qt feature: egl_x11 (from target Qt6::Gui) +QT_FEATURE_egl_x11:INTERNAL=OFF +//Qt feature: eglfs (from target Qt6::Gui) +QT_FEATURE_eglfs:INTERNAL=OFF +//Qt feature: eglfs_brcm (from target Qt6::Gui) +QT_FEATURE_eglfs_brcm:INTERNAL=OFF +//Qt feature: eglfs_egldevice (from target Qt6::Gui) +QT_FEATURE_eglfs_egldevice:INTERNAL=OFF +//Qt feature: eglfs_gbm (from target Qt6::Gui) +QT_FEATURE_eglfs_gbm:INTERNAL=OFF +//Qt feature: eglfs_mali (from target Qt6::Gui) +QT_FEATURE_eglfs_mali:INTERNAL=OFF +//Qt feature: eglfs_openwfd (from target Qt6::Gui) +QT_FEATURE_eglfs_openwfd:INTERNAL=OFF +//Qt feature: eglfs_rcar (from target Qt6::Gui) +QT_FEATURE_eglfs_rcar:INTERNAL=OFF +//Qt feature: eglfs_viv (from target Qt6::Gui) +QT_FEATURE_eglfs_viv:INTERNAL=OFF +//Qt feature: eglfs_viv_wl (from target Qt6::Gui) +QT_FEATURE_eglfs_viv_wl:INTERNAL=OFF +//Qt feature: eglfs_vsp2 (from target Qt6::Gui) +QT_FEATURE_eglfs_vsp2:INTERNAL=OFF +//Qt feature: eglfs_x11 (from target Qt6::Gui) +QT_FEATURE_eglfs_x11:INTERNAL=OFF +//Qt feature: elf_private_full_version (from target Qt6::Core) +QT_FEATURE_elf_private_full_version:INTERNAL=OFF +//Qt feature: errormessage (from target Qt6::Widgets) +QT_FEATURE_errormessage:INTERNAL=ON +//Qt feature: etw (from target Qt6::Core) +QT_FEATURE_etw:INTERNAL=OFF +//Qt feature: evdev (from target Qt6::Gui) +QT_FEATURE_evdev:INTERNAL=OFF +//Qt feature: f16c (from target Qt6::Core) +QT_FEATURE_f16c:INTERNAL=ON +//Qt feature: filedialog (from target Qt6::Widgets) +QT_FEATURE_filedialog:INTERNAL=ON +//Qt feature: filesystemiterator (from target Qt6::Core) +QT_FEATURE_filesystemiterator:INTERNAL=ON +//Qt feature: filesystemmodel (from target Qt6::Gui) +QT_FEATURE_filesystemmodel:INTERNAL=ON +//Qt feature: filesystemwatcher (from target Qt6::Core) +QT_FEATURE_filesystemwatcher:INTERNAL=ON +//Qt feature: fontcombobox (from target Qt6::Widgets) +QT_FEATURE_fontcombobox:INTERNAL=ON +//Qt feature: fontconfig (from target Qt6::Gui) +QT_FEATURE_fontconfig:INTERNAL=OFF +//Qt feature: fontdialog (from target Qt6::Widgets) +QT_FEATURE_fontdialog:INTERNAL=ON +//Qt feature: force_asserts (from target Qt6::Core) +QT_FEATURE_force_asserts:INTERNAL=OFF +//Qt feature: force_debug_info (from target Qt6::Core) +QT_FEATURE_force_debug_info:INTERNAL=ON +//Qt feature: forkfd_pidfd (from target Qt6::Core) +QT_FEATURE_forkfd_pidfd:INTERNAL=OFF +//Qt feature: formlayout (from target Qt6::Widgets) +QT_FEATURE_formlayout:INTERNAL=ON +//Qt feature: framework (from target Qt6::Core) +QT_FEATURE_framework:INTERNAL=OFF +//Qt feature: freetype (from target Qt6::Gui) +QT_FEATURE_freetype:INTERNAL=ON +//Qt feature: fscompleter (from target Qt6::Widgets) +QT_FEATURE_fscompleter:INTERNAL=ON +//Qt feature: futimens (from target Qt6::Core) +QT_FEATURE_futimens:INTERNAL=OFF +//Qt feature: future (from target Qt6::Core) +QT_FEATURE_future:INTERNAL=ON +//Qt feature: gc_binaries (from target Qt6::Core) +QT_FEATURE_gc_binaries:INTERNAL=OFF +//Qt feature: gestures (from target Qt6::Core) +QT_FEATURE_gestures:INTERNAL=ON +//Qt feature: getauxval (from target Qt6::Core) +QT_FEATURE_getauxval:INTERNAL=OFF +//Qt feature: getentropy (from target Qt6::Core) +QT_FEATURE_getentropy:INTERNAL=OFF +//Qt feature: gif (from target Qt6::Gui) +QT_FEATURE_gif:INTERNAL=ON +//Qt feature: glib (from target Qt6::Core) +QT_FEATURE_glib:INTERNAL=OFF +//Qt feature: glibc_fortify_source (from target Qt6::Core) +QT_FEATURE_glibc_fortify_source:INTERNAL=OFF +//Qt feature: graphicseffect (from target Qt6::Widgets) +QT_FEATURE_graphicseffect:INTERNAL=ON +//Qt feature: graphicsframecapture (from target Qt6::Gui) +QT_FEATURE_graphicsframecapture:INTERNAL=OFF +//Qt feature: graphicsview (from target Qt6::Widgets) +QT_FEATURE_graphicsview:INTERNAL=ON +//Qt feature: groupbox (from target Qt6::Widgets) +QT_FEATURE_groupbox:INTERNAL=ON +//Qt feature: gtk3 (from target Qt6::Widgets) +QT_FEATURE_gtk3:INTERNAL=OFF +//Qt feature: gui (from target Qt6::Core) +QT_FEATURE_gui:INTERNAL=ON +//Qt feature: harfbuzz (from target Qt6::Gui) +QT_FEATURE_harfbuzz:INTERNAL=ON +//Qt feature: highdpiscaling (from target Qt6::Gui) +QT_FEATURE_highdpiscaling:INTERNAL=ON +//Qt feature: hijricalendar (from target Qt6::Core) +QT_FEATURE_hijricalendar:INTERNAL=ON +//Qt feature: ico (from target Qt6::Gui) +QT_FEATURE_ico:INTERNAL=ON +//Qt feature: icu (from target Qt6::Core) +QT_FEATURE_icu:INTERNAL=OFF +//Qt feature: identityproxymodel (from target Qt6::Core) +QT_FEATURE_identityproxymodel:INTERNAL=ON +//Qt feature: im (from target Qt6::Gui) +QT_FEATURE_im:INTERNAL=ON +//Qt feature: image_heuristic_mask (from target Qt6::Gui) +QT_FEATURE_image_heuristic_mask:INTERNAL=ON +//Qt feature: image_text (from target Qt6::Gui) +QT_FEATURE_image_text:INTERNAL=ON +//Qt feature: imageformat_bmp (from target Qt6::Gui) +QT_FEATURE_imageformat_bmp:INTERNAL=ON +//Qt feature: imageformat_jpeg (from target Qt6::Gui) +QT_FEATURE_imageformat_jpeg:INTERNAL=ON +//Qt feature: imageformat_png (from target Qt6::Gui) +QT_FEATURE_imageformat_png:INTERNAL=ON +//Qt feature: imageformat_ppm (from target Qt6::Gui) +QT_FEATURE_imageformat_ppm:INTERNAL=ON +//Qt feature: imageformat_xbm (from target Qt6::Gui) +QT_FEATURE_imageformat_xbm:INTERNAL=ON +//Qt feature: imageformat_xpm (from target Qt6::Gui) +QT_FEATURE_imageformat_xpm:INTERNAL=ON +//Qt feature: imageformatplugin (from target Qt6::Gui) +QT_FEATURE_imageformatplugin:INTERNAL=ON +//Qt feature: imageio_text_loading (from target Qt6::Gui) +QT_FEATURE_imageio_text_loading:INTERNAL=ON +//Qt feature: inotify (from target Qt6::Core) +QT_FEATURE_inotify:INTERNAL=OFF +//Qt feature: inputdialog (from target Qt6::Widgets) +QT_FEATURE_inputdialog:INTERNAL=ON +//Qt feature: integrityfb (from target Qt6::Gui) +QT_FEATURE_integrityfb:INTERNAL=OFF +//Qt feature: integrityhid (from target Qt6::Gui) +QT_FEATURE_integrityhid:INTERNAL=OFF +//Qt feature: intelcet (from target Qt6::Core) +QT_FEATURE_intelcet:INTERNAL=ON +//Qt feature: islamiccivilcalendar (from target Qt6::Core) +QT_FEATURE_islamiccivilcalendar:INTERNAL=ON +//Qt feature: itemmodel (from target Qt6::Core) +QT_FEATURE_itemmodel:INTERNAL=ON +//Qt feature: itemviews (from target Qt6::Widgets) +QT_FEATURE_itemviews:INTERNAL=ON +//Qt feature: jalalicalendar (from target Qt6::Core) +QT_FEATURE_jalalicalendar:INTERNAL=ON +//Qt feature: journald (from target Qt6::Core) +QT_FEATURE_journald:INTERNAL=OFF +//Qt feature: jpeg (from target Qt6::Gui) +QT_FEATURE_jpeg:INTERNAL=ON +//Qt feature: keysequenceedit (from target Qt6::Widgets) +QT_FEATURE_keysequenceedit:INTERNAL=ON +//Qt feature: kms (from target Qt6::Gui) +QT_FEATURE_kms:INTERNAL=OFF +//Qt feature: label (from target Qt6::Widgets) +QT_FEATURE_label:INTERNAL=ON +//Qt feature: largefile (from target Qt6::Core) +QT_FEATURE_largefile:INTERNAL=ON +//Qt feature: lcdnumber (from target Qt6::Widgets) +QT_FEATURE_lcdnumber:INTERNAL=ON +//Qt feature: libcpp_hardening (from target Qt6::Core) +QT_FEATURE_libcpp_hardening:INTERNAL=OFF +//Qt feature: libinput (from target Qt6::Gui) +QT_FEATURE_libinput:INTERNAL=OFF +//Qt feature: libinput_axis_api (from target Qt6::Gui) +QT_FEATURE_libinput_axis_api:INTERNAL=OFF +//Qt feature: libinput_hires_wheel_support (from target Qt6::Gui) +QT_FEATURE_libinput_hires_wheel_support:INTERNAL=OFF +//Qt feature: library (from target Qt6::Core) +QT_FEATURE_library:INTERNAL=ON +//Qt feature: libstdcpp_assertions (from target Qt6::Core) +QT_FEATURE_libstdcpp_assertions:INTERNAL=ON +//Qt feature: libudev (from target Qt6::Core) +QT_FEATURE_libudev:INTERNAL=OFF +//Qt feature: lineedit (from target Qt6::Widgets) +QT_FEATURE_lineedit:INTERNAL=ON +//Qt feature: linkat (from target Qt6::Core) +QT_FEATURE_linkat:INTERNAL=OFF +//Qt feature: linuxfb (from target Qt6::Gui) +QT_FEATURE_linuxfb:INTERNAL=OFF +//Qt feature: listview (from target Qt6::Widgets) +QT_FEATURE_listview:INTERNAL=ON +//Qt feature: listwidget (from target Qt6::Widgets) +QT_FEATURE_listwidget:INTERNAL=ON +//Qt feature: localtime_r (from target Qt6::Core) +QT_FEATURE_localtime_r:INTERNAL=OFF +//Qt feature: localtime_s (from target Qt6::Core) +QT_FEATURE_localtime_s:INTERNAL=ON +//Qt feature: lttng (from target Qt6::Core) +QT_FEATURE_lttng:INTERNAL=OFF +//Qt feature: mainwindow (from target Qt6::Widgets) +QT_FEATURE_mainwindow:INTERNAL=ON +//Qt feature: mdiarea (from target Qt6::Widgets) +QT_FEATURE_mdiarea:INTERNAL=ON +//Qt feature: memmem (from target Qt6::Core) +QT_FEATURE_memmem:INTERNAL=OFF +//Qt feature: memrchr (from target Qt6::Core) +QT_FEATURE_memrchr:INTERNAL=OFF +//Qt feature: menu (from target Qt6::Widgets) +QT_FEATURE_menu:INTERNAL=ON +//Qt feature: menubar (from target Qt6::Widgets) +QT_FEATURE_menubar:INTERNAL=ON +//Qt feature: messagebox (from target Qt6::Widgets) +QT_FEATURE_messagebox:INTERNAL=ON +//Qt feature: metal (from target Qt6::Gui) +QT_FEATURE_metal:INTERNAL=OFF +//Qt feature: mimetype (from target Qt6::Core) +QT_FEATURE_mimetype:INTERNAL=ON +//Qt feature: mimetype_database (from target Qt6::Core) +QT_FEATURE_mimetype_database:INTERNAL=ON +//Qt feature: mips_dsp (from target Qt6::Core) +QT_FEATURE_mips_dsp:INTERNAL=OFF +//Qt feature: mips_dspr2 (from target Qt6::Core) +QT_FEATURE_mips_dspr2:INTERNAL=OFF +//Qt feature: movie (from target Qt6::Gui) +QT_FEATURE_movie:INTERNAL=ON +//Qt feature: mtdev (from target Qt6::Gui) +QT_FEATURE_mtdev:INTERNAL=OFF +//Qt feature: multiprocess (from target Qt6::Gui) +QT_FEATURE_multiprocess:INTERNAL=ON +//Qt feature: neon (from target Qt6::Core) +QT_FEATURE_neon:INTERNAL=OFF +//Qt feature: network (from target Qt6::Core) +QT_FEATURE_network:INTERNAL=ON +//Qt feature: no_direct_extern_access (from target Qt6::Core) +QT_FEATURE_no_direct_extern_access:INTERNAL=OFF +//Qt feature: no_pkg_config (from target Qt6::Core) +QT_FEATURE_no_pkg_config:INTERNAL=ON +//Qt feature: opengl (from target Qt6::Gui) +QT_FEATURE_opengl:INTERNAL=ON +//Qt feature: opengles2 (from target Qt6::Gui) +QT_FEATURE_opengles2:INTERNAL=OFF +//Qt feature: opengles3 (from target Qt6::Gui) +QT_FEATURE_opengles3:INTERNAL=OFF +//Qt feature: opengles31 (from target Qt6::Gui) +QT_FEATURE_opengles31:INTERNAL=OFF +//Qt feature: opengles32 (from target Qt6::Gui) +QT_FEATURE_opengles32:INTERNAL=OFF +//Qt feature: openssl (from target Qt6::Core) +QT_FEATURE_openssl:INTERNAL=ON +//Qt feature: openssl_hash (from target Qt6::Core) +QT_FEATURE_openssl_hash:INTERNAL=OFF +//Qt feature: openssl_linked (from target Qt6::Core) +QT_FEATURE_openssl_linked:INTERNAL=OFF +//Qt feature: opensslv11 (from target Qt6::Core) +QT_FEATURE_opensslv11:INTERNAL=OFF +//Qt feature: opensslv30 (from target Qt6::Core) +QT_FEATURE_opensslv30:INTERNAL=ON +//Qt feature: openvg (from target Qt6::Gui) +QT_FEATURE_openvg:INTERNAL=OFF +//Qt feature: pcre2 (from target Qt6::Core) +QT_FEATURE_pcre2:INTERNAL=ON +//Qt feature: pdf (from target Qt6::Gui) +QT_FEATURE_pdf:INTERNAL=ON +//Qt feature: permissions (from target Qt6::Core) +QT_FEATURE_permissions:INTERNAL=ON +//Qt feature: picture (from target Qt6::Gui) +QT_FEATURE_picture:INTERNAL=ON +//Qt feature: pkg_config (from target Qt6::Core) +QT_FEATURE_pkg_config:INTERNAL=OFF +//Qt feature: plugin_manifest (from target Qt6::Core) +QT_FEATURE_plugin_manifest:INTERNAL=ON +//Qt feature: png (from target Qt6::Gui) +QT_FEATURE_png:INTERNAL=ON +//Qt feature: poll_exit_on_error (from target Qt6::Core) +QT_FEATURE_poll_exit_on_error:INTERNAL=OFF +//Qt feature: poll_poll (from target Qt6::Core) +QT_FEATURE_poll_poll:INTERNAL=OFF +//Qt feature: poll_pollts (from target Qt6::Core) +QT_FEATURE_poll_pollts:INTERNAL=OFF +//Qt feature: poll_ppoll (from target Qt6::Core) +QT_FEATURE_poll_ppoll:INTERNAL=OFF +//Qt feature: poll_select (from target Qt6::Core) +QT_FEATURE_poll_select:INTERNAL=OFF +//Qt feature: posix_fallocate (from target Qt6::Core) +QT_FEATURE_posix_fallocate:INTERNAL=OFF +//Qt feature: posix_sem (from target Qt6::Core) +QT_FEATURE_posix_sem:INTERNAL=ON +//Qt feature: posix_shm (from target Qt6::Core) +QT_FEATURE_posix_shm:INTERNAL=OFF +//Qt feature: precompile_header (from target Qt6::Core) +QT_FEATURE_precompile_header:INTERNAL=ON +//Qt feature: printdialog (from target Qt6::PrintSupport) +QT_FEATURE_printdialog:INTERNAL=ON +//Qt feature: printer (from target Qt6::PrintSupport) +QT_FEATURE_printer:INTERNAL=ON +//Qt feature: printpreviewdialog (from target Qt6::PrintSupport) +QT_FEATURE_printpreviewdialog:INTERNAL=ON +//Qt feature: printpreviewwidget (from target Qt6::PrintSupport) +QT_FEATURE_printpreviewwidget:INTERNAL=ON +//Qt feature: printsupport (from target Qt6::Core) +QT_FEATURE_printsupport:INTERNAL=ON +//Qt feature: private_tests (from target Qt6::Core) +QT_FEATURE_private_tests:INTERNAL=OFF +//Qt feature: process (from target Qt6::Core) +QT_FEATURE_process:INTERNAL=ON +//Qt feature: processenvironment (from target Qt6::Core) +QT_FEATURE_processenvironment:INTERNAL=ON +//Qt feature: progressbar (from target Qt6::Widgets) +QT_FEATURE_progressbar:INTERNAL=ON +//Qt feature: progressdialog (from target Qt6::Widgets) +QT_FEATURE_progressdialog:INTERNAL=ON +//Qt feature: proxymodel (from target Qt6::Core) +QT_FEATURE_proxymodel:INTERNAL=ON +//Qt feature: pushbutton (from target Qt6::Widgets) +QT_FEATURE_pushbutton:INTERNAL=ON +//Qt feature: qqnx_imf (from target Qt6::Gui) +QT_FEATURE_qqnx_imf:INTERNAL=OFF +//Qt feature: qqnx_pps (from target Qt6::Core) +QT_FEATURE_qqnx_pps:INTERNAL=OFF +//Qt feature: radiobutton (from target Qt6::Widgets) +QT_FEATURE_radiobutton:INTERNAL=ON +//Qt feature: raster_64bit (from target Qt6::Gui) +QT_FEATURE_raster_64bit:INTERNAL=ON +//Qt feature: raster_fp (from target Qt6::Gui) +QT_FEATURE_raster_fp:INTERNAL=ON +//Qt feature: rdrnd (from target Qt6::Core) +QT_FEATURE_rdrnd:INTERNAL=ON +//Qt feature: rdseed (from target Qt6::Core) +QT_FEATURE_rdseed:INTERNAL=ON +//Qt feature: reduce_exports (from target Qt6::Core) +QT_FEATURE_reduce_exports:INTERNAL=ON +//Qt feature: reduce_relocations (from target Qt6::Core) +QT_FEATURE_reduce_relocations:INTERNAL=OFF +//Qt feature: regularexpression (from target Qt6::Core) +QT_FEATURE_regularexpression:INTERNAL=ON +//Qt feature: relocatable (from target Qt6::Core) +QT_FEATURE_relocatable:INTERNAL=ON +//Qt feature: relro_now_linker (from target Qt6::Core) +QT_FEATURE_relro_now_linker:INTERNAL=OFF +//Qt feature: renameat2 (from target Qt6::Core) +QT_FEATURE_renameat2:INTERNAL=OFF +//Qt feature: resizehandler (from target Qt6::Widgets) +QT_FEATURE_resizehandler:INTERNAL=ON +//Qt feature: rpath (from target Qt6::Core) +QT_FEATURE_rpath:INTERNAL=OFF +//Qt feature: rubberband (from target Qt6::Widgets) +QT_FEATURE_rubberband:INTERNAL=ON +//Qt feature: scrollarea (from target Qt6::Widgets) +QT_FEATURE_scrollarea:INTERNAL=ON +//Qt feature: scrollbar (from target Qt6::Widgets) +QT_FEATURE_scrollbar:INTERNAL=ON +//Qt feature: scroller (from target Qt6::Widgets) +QT_FEATURE_scroller:INTERNAL=ON +//Qt feature: separate_debug_info (from target Qt6::Core) +QT_FEATURE_separate_debug_info:INTERNAL=ON +//Qt feature: sessionmanager (from target Qt6::Gui) +QT_FEATURE_sessionmanager:INTERNAL=ON +//Qt feature: settings (from target Qt6::Core) +QT_FEATURE_settings:INTERNAL=ON +//Qt feature: sha3_fast (from target Qt6::Core) +QT_FEATURE_sha3_fast:INTERNAL=ON +//Qt feature: shani (from target Qt6::Core) +QT_FEATURE_shani:INTERNAL=ON +//Qt feature: shared (from target Qt6::Core) +QT_FEATURE_shared:INTERNAL=ON +//Qt feature: sharedmemory (from target Qt6::Core) +QT_FEATURE_sharedmemory:INTERNAL=ON +//Qt feature: shortcut (from target Qt6::Core) +QT_FEATURE_shortcut:INTERNAL=ON +//Qt feature: signaling_nan (from target Qt6::Core) +QT_FEATURE_signaling_nan:INTERNAL=ON +//Qt feature: simulator_and_device (from target Qt6::Core) +QT_FEATURE_simulator_and_device:INTERNAL=OFF +//Qt feature: sizegrip (from target Qt6::Widgets) +QT_FEATURE_sizegrip:INTERNAL=ON +//Qt feature: slider (from target Qt6::Widgets) +QT_FEATURE_slider:INTERNAL=ON +//Qt feature: slog2 (from target Qt6::Core) +QT_FEATURE_slog2:INTERNAL=OFF +//Qt feature: sortfilterproxymodel (from target Qt6::Core) +QT_FEATURE_sortfilterproxymodel:INTERNAL=ON +//Qt feature: spinbox (from target Qt6::Widgets) +QT_FEATURE_spinbox:INTERNAL=ON +//Qt feature: splashscreen (from target Qt6::Widgets) +QT_FEATURE_splashscreen:INTERNAL=ON +//Qt feature: splitter (from target Qt6::Widgets) +QT_FEATURE_splitter:INTERNAL=ON +//Qt feature: sql (from target Qt6::Core) +QT_FEATURE_sql:INTERNAL=ON +//Qt feature: sse2 (from target Qt6::Core) +QT_FEATURE_sse2:INTERNAL=ON +//Qt feature: sse3 (from target Qt6::Core) +QT_FEATURE_sse3:INTERNAL=ON +//Qt feature: sse4_1 (from target Qt6::Core) +QT_FEATURE_sse4_1:INTERNAL=ON +//Qt feature: sse4_2 (from target Qt6::Core) +QT_FEATURE_sse4_2:INTERNAL=ON +//Qt feature: ssse3 (from target Qt6::Core) +QT_FEATURE_ssse3:INTERNAL=ON +//Qt feature: stack_clash_protection (from target Qt6::Core) +QT_FEATURE_stack_clash_protection:INTERNAL=ON +//Qt feature: stack_protector (from target Qt6::Core) +QT_FEATURE_stack_protector:INTERNAL=ON +//Qt feature: stackedwidget (from target Qt6::Widgets) +QT_FEATURE_stackedwidget:INTERNAL=ON +//Qt feature: standarditemmodel (from target Qt6::Gui) +QT_FEATURE_standarditemmodel:INTERNAL=ON +//Qt feature: static (from target Qt6::Core) +QT_FEATURE_static:INTERNAL=OFF +//Qt feature: statusbar (from target Qt6::Widgets) +QT_FEATURE_statusbar:INTERNAL=ON +//Qt feature: statustip (from target Qt6::Widgets) +QT_FEATURE_statustip:INTERNAL=ON +//Qt feature: std_atomic64 (from target Qt6::Core) +QT_FEATURE_std_atomic64:INTERNAL=ON +//Qt feature: stdlib_libcpp (from target Qt6::Core) +QT_FEATURE_stdlib_libcpp:INTERNAL=OFF +//Qt feature: stringlistmodel (from target Qt6::Core) +QT_FEATURE_stringlistmodel:INTERNAL=ON +//Qt feature: style_android (from target Qt6::Widgets) +QT_FEATURE_style_android:INTERNAL=OFF +//Qt feature: style_fusion (from target Qt6::Widgets) +QT_FEATURE_style_fusion:INTERNAL=ON +//Qt feature: style_mac (from target Qt6::Widgets) +QT_FEATURE_style_mac:INTERNAL=OFF +//Qt feature: style_stylesheet (from target Qt6::Widgets) +QT_FEATURE_style_stylesheet:INTERNAL=ON +//Qt feature: style_windows (from target Qt6::Widgets) +QT_FEATURE_style_windows:INTERNAL=ON +//Qt feature: style_windows11 (from target Qt6::Widgets) +QT_FEATURE_style_windows11:INTERNAL=ON +//Qt feature: style_windowsvista (from target Qt6::Widgets) +QT_FEATURE_style_windowsvista:INTERNAL=ON +//Qt feature: syntaxhighlighter (from target Qt6::Widgets) +QT_FEATURE_syntaxhighlighter:INTERNAL=ON +//Qt feature: syslog (from target Qt6::Core) +QT_FEATURE_syslog:INTERNAL=OFF +//Qt feature: system_doubleconversion (from target Qt6::Core) +QT_FEATURE_system_doubleconversion:INTERNAL=OFF +//Qt feature: system_freetype (from target Qt6::Gui) +QT_FEATURE_system_freetype:INTERNAL=OFF +//Qt feature: system_harfbuzz (from target Qt6::Gui) +QT_FEATURE_system_harfbuzz:INTERNAL=OFF +//Qt feature: system_jpeg (from target Qt6::Gui) +QT_FEATURE_system_jpeg:INTERNAL=OFF +//Qt feature: system_libb2 (from target Qt6::Core) +QT_FEATURE_system_libb2:INTERNAL=OFF +//Qt feature: system_pcre2 (from target Qt6::Core) +QT_FEATURE_system_pcre2:INTERNAL=OFF +//Qt feature: system_png (from target Qt6::Gui) +QT_FEATURE_system_png:INTERNAL=OFF +//Qt feature: system_textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_system_textmarkdownreader:INTERNAL=OFF +//Qt feature: system_xcb_xinput (from target Qt6::Gui) +QT_FEATURE_system_xcb_xinput:INTERNAL=OFF +//Qt feature: system_zlib (from target Qt6::Core) +QT_FEATURE_system_zlib:INTERNAL=OFF +//Qt feature: systemsemaphore (from target Qt6::Core) +QT_FEATURE_systemsemaphore:INTERNAL=ON +//Qt feature: systemtrayicon (from target Qt6::Gui) +QT_FEATURE_systemtrayicon:INTERNAL=ON +//Qt feature: sysv_sem (from target Qt6::Core) +QT_FEATURE_sysv_sem:INTERNAL=OFF +//Qt feature: sysv_shm (from target Qt6::Core) +QT_FEATURE_sysv_shm:INTERNAL=OFF +//Qt feature: tabbar (from target Qt6::Widgets) +QT_FEATURE_tabbar:INTERNAL=ON +//Qt feature: tabletevent (from target Qt6::Gui) +QT_FEATURE_tabletevent:INTERNAL=ON +//Qt feature: tableview (from target Qt6::Widgets) +QT_FEATURE_tableview:INTERNAL=ON +//Qt feature: tablewidget (from target Qt6::Widgets) +QT_FEATURE_tablewidget:INTERNAL=ON +//Qt feature: tabwidget (from target Qt6::Widgets) +QT_FEATURE_tabwidget:INTERNAL=ON +//Qt feature: temporaryfile (from target Qt6::Core) +QT_FEATURE_temporaryfile:INTERNAL=ON +//Qt feature: testlib (from target Qt6::Core) +QT_FEATURE_testlib:INTERNAL=ON +//Qt feature: textbrowser (from target Qt6::Widgets) +QT_FEATURE_textbrowser:INTERNAL=ON +//Qt feature: textdate (from target Qt6::Core) +QT_FEATURE_textdate:INTERNAL=ON +//Qt feature: textedit (from target Qt6::Widgets) +QT_FEATURE_textedit:INTERNAL=ON +//Qt feature: texthtmlparser (from target Qt6::Gui) +QT_FEATURE_texthtmlparser:INTERNAL=ON +//Qt feature: textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_textmarkdownreader:INTERNAL=ON +//Qt feature: textmarkdownwriter (from target Qt6::Gui) +QT_FEATURE_textmarkdownwriter:INTERNAL=ON +//Qt feature: textodfwriter (from target Qt6::Gui) +QT_FEATURE_textodfwriter:INTERNAL=ON +//Qt feature: thread (from target Qt6::Core) +QT_FEATURE_thread:INTERNAL=ON +//Qt feature: timezone (from target Qt6::Core) +QT_FEATURE_timezone:INTERNAL=ON +//Qt feature: timezone_locale (from target Qt6::Core) +QT_FEATURE_timezone_locale:INTERNAL=OFF +//Qt feature: toolbar (from target Qt6::Widgets) +QT_FEATURE_toolbar:INTERNAL=ON +//Qt feature: toolbox (from target Qt6::Widgets) +QT_FEATURE_toolbox:INTERNAL=ON +//Qt feature: toolbutton (from target Qt6::Widgets) +QT_FEATURE_toolbutton:INTERNAL=ON +//Qt feature: tooltip (from target Qt6::Widgets) +QT_FEATURE_tooltip:INTERNAL=ON +//Qt feature: translation (from target Qt6::Core) +QT_FEATURE_translation:INTERNAL=ON +//Qt feature: transposeproxymodel (from target Qt6::Core) +QT_FEATURE_transposeproxymodel:INTERNAL=ON +//Qt feature: treeview (from target Qt6::Widgets) +QT_FEATURE_treeview:INTERNAL=ON +//Qt feature: treewidget (from target Qt6::Widgets) +QT_FEATURE_treewidget:INTERNAL=ON +//Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core) +QT_FEATURE_trivial_auto_var_init_pattern:INTERNAL=OFF +//Qt feature: tslib (from target Qt6::Gui) +QT_FEATURE_tslib:INTERNAL=OFF +//Qt feature: tuiotouch (from target Qt6::Gui) +QT_FEATURE_tuiotouch:INTERNAL=ON +//Qt feature: undocommand (from target Qt6::Gui) +QT_FEATURE_undocommand:INTERNAL=ON +//Qt feature: undogroup (from target Qt6::Gui) +QT_FEATURE_undogroup:INTERNAL=ON +//Qt feature: undostack (from target Qt6::Gui) +QT_FEATURE_undostack:INTERNAL=ON +//Qt feature: undoview (from target Qt6::Widgets) +QT_FEATURE_undoview:INTERNAL=ON +//Qt feature: use_bfd_linker (from target Qt6::Core) +QT_FEATURE_use_bfd_linker:INTERNAL=OFF +//Qt feature: use_gold_linker (from target Qt6::Core) +QT_FEATURE_use_gold_linker:INTERNAL=OFF +//Qt feature: use_lld_linker (from target Qt6::Core) +QT_FEATURE_use_lld_linker:INTERNAL=OFF +//Qt feature: use_mold_linker (from target Qt6::Core) +QT_FEATURE_use_mold_linker:INTERNAL=OFF +//Qt feature: vaes (from target Qt6::Core) +QT_FEATURE_vaes:INTERNAL=ON +//Qt feature: validator (from target Qt6::Gui) +QT_FEATURE_validator:INTERNAL=ON +//Qt feature: version_tagging (from target Qt6::Core) +QT_FEATURE_version_tagging:INTERNAL=ON +//Qt feature: vkgen (from target Qt6::Gui) +QT_FEATURE_vkgen:INTERNAL=ON +//Qt feature: vkkhrdisplay (from target Qt6::Gui) +QT_FEATURE_vkkhrdisplay:INTERNAL=OFF +//Qt feature: vnc (from target Qt6::Gui) +QT_FEATURE_vnc:INTERNAL=OFF +//Qt feature: vsp2 (from target Qt6::Gui) +QT_FEATURE_vsp2:INTERNAL=OFF +//Qt feature: vulkan (from target Qt6::Gui) +QT_FEATURE_vulkan:INTERNAL=ON +//Qt feature: wasm_exceptions (from target Qt6::Core) +QT_FEATURE_wasm_exceptions:INTERNAL=OFF +//Qt feature: wasm_simd128 (from target Qt6::Core) +QT_FEATURE_wasm_simd128:INTERNAL=OFF +//Qt feature: wayland (from target Qt6::Gui) +QT_FEATURE_wayland:INTERNAL=OFF +//Qt feature: whatsthis (from target Qt6::Gui) +QT_FEATURE_whatsthis:INTERNAL=ON +//Qt feature: wheelevent (from target Qt6::Gui) +QT_FEATURE_wheelevent:INTERNAL=ON +//Qt feature: widgets (from target Qt6::Core) +QT_FEATURE_widgets:INTERNAL=ON +//Qt feature: widgettextcontrol (from target Qt6::Widgets) +QT_FEATURE_widgettextcontrol:INTERNAL=ON +//Qt feature: wizard (from target Qt6::Widgets) +QT_FEATURE_wizard:INTERNAL=ON +//Qt feature: x86intrin (from target Qt6::Core) +QT_FEATURE_x86intrin:INTERNAL=ON +//Qt feature: xcb (from target Qt6::Gui) +QT_FEATURE_xcb:INTERNAL=OFF +//Qt feature: xcb_egl_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_egl_plugin:INTERNAL=OFF +//Qt feature: xcb_glx (from target Qt6::Gui) +QT_FEATURE_xcb_glx:INTERNAL=OFF +//Qt feature: xcb_glx_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_glx_plugin:INTERNAL=OFF +//Qt feature: xcb_native_painting (from target Qt6::Gui) +QT_FEATURE_xcb_native_painting:INTERNAL=OFF +//Qt feature: xcb_sm (from target Qt6::Gui) +QT_FEATURE_xcb_sm:INTERNAL=OFF +//Qt feature: xcb_xlib (from target Qt6::Gui) +QT_FEATURE_xcb_xlib:INTERNAL=OFF +//Qt feature: xkbcommon (from target Qt6::Gui) +QT_FEATURE_xkbcommon:INTERNAL=OFF +//Qt feature: xkbcommon_x11 (from target Qt6::Gui) +QT_FEATURE_xkbcommon_x11:INTERNAL=OFF +//Qt feature: xlib (from target Qt6::Gui) +QT_FEATURE_xlib:INTERNAL=OFF +//Qt feature: xml (from target Qt6::Core) +QT_FEATURE_xml:INTERNAL=ON +//Qt feature: xmlstream (from target Qt6::Core) +QT_FEATURE_xmlstream:INTERNAL=ON +//Qt feature: xmlstreamreader (from target Qt6::Core) +QT_FEATURE_xmlstreamreader:INTERNAL=ON +//Qt feature: xmlstreamwriter (from target Qt6::Core) +QT_FEATURE_xmlstreamwriter:INTERNAL=ON +//Qt feature: xrender (from target Qt6::Gui) +QT_FEATURE_xrender:INTERNAL=OFF +//Qt feature: zstd (from target Qt6::Core) +QT_FEATURE_zstd:INTERNAL=OFF +//ADVANCED property for variable: Vulkan_GLSLANG_VALIDATOR_EXECUTABLE +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_GLSLC_EXECUTABLE +Vulkan_GLSLC_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_INCLUDE_DIR +Vulkan_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_LIBRARY +Vulkan_LIBRARY-ADVANCED:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/fontManager + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..500b50c --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake @@ -0,0 +1,92 @@ +set(CMAKE_CXX_COMPILER "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "13.1.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "MinGW") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe") +set(CMAKE_RANLIB "C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe") +set(CMAKE_LINKER "C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe") +set(CMAKE_CXX_COMPILER_LINKER_ID "") +set(CMAKE_CXX_COMPILER_LINKER_VERSION ) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;mingw32;gcc_s;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex;kernel32") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0;C:/dev/Qt/Tools/mingw1310_64/lib/gcc;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib;C:/dev/Qt/Tools/mingw1310_64/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeDetermineCompilerABI_CXX.bin b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..d026b0f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeRCCompiler.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeRCCompiler.cmake new file mode 100644 index 0000000..6c1d08d --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC) +set(CMAKE_RC_OUTPUT_EXTENSION .obj) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeSystem.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeSystem.cmake new file mode 100644 index 0000000..9c49cbb --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22631") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22631") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.22631") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.22631") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..9a5e8f8 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,878 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/a.exe b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/a.exe new file mode 100644 index 0000000..bed775e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/a.exe differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeConfigureLog.yaml b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..8f7cbe8 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,400 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:5 (project)" + message: | + The system is: Windows - 10.0.22631 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:5 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe + Build flags: -DQT_QML_DEBUG + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe" + + The CXX compiler identification is GNU, found in: + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/3.29.3/CompilerIdCXX/a.exe + + - + kind: "try_compile-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:67 (try_compile)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-80gj09" + binary: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-80gj09" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-80gj09' + + Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_10a62 + [1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -fdiagnostics-color=always -v -o CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj -c C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe + Target: x86_64-w64-mingw32 + Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc' + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 13.1.0 (x86_64-posix-seh-rev1, Built by MinGW-Builds project) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_10a62.dir/' + C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT -D QT_QML_DEBUG C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_10a62.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=core2 -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\herwi\\AppData\\Local\\Temp\\cclNkFIb.s + GNU C++17 (x86_64-posix-seh-rev1, Built by MinGW-Builds project) version 13.1.0 (x86_64-w64-mingw32) + compiled by GNU C version 13.1.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.25-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include" + ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64D:/a/_temp/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include" + ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/mingw/include" + #include "..." search starts here: + #include <...> search starts here: + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++ + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32 + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include + End of search list. + Compiler executable checksum: b3d236387f35294e2a73c51628039e05 + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_10a62.dir/' + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\herwi\\AppData\\Local\\Temp\\cclNkFIb.s + GNU assembler version 2.39 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.39 + COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ + LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -v -Wl,-v CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_10a62.exe -Wl,--out-implib,libcmTC_10a62.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ." + Using built-in specs. + COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe + COLLECT_LTO_WRAPPER=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe + Target: x86_64-w64-mingw32 + Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc' + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 13.1.0 (x86_64-posix-seh-rev1, Built by MinGW-Builds project) + COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ + LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ + COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_10a62.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_10a62.' + C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -plugin C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll -plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\ccNJUWfh.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 --sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 -m i386pep -Bdynamic -o cmTC_10a62.exe C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_10a62.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o + collect2 version 13.1.0 + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ld.exe -plugin C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll -plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\ccNJUWfh.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 --sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 -m i386pep -Bdynamic -o cmTC_10a62.exe C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_10a62.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o + GNU ld (GNU Binutils) 2.39\x0d + COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_10a62.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_10a62.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:137 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] + end of search list found + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include] + implicit include dirs: [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include] + + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:173 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-80gj09'] + ignore line: [] + ignore line: [Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_10a62] + ignore line: [[1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -fdiagnostics-color=always -v -o CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj -c C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc'] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.1.0 (x86_64-posix-seh-rev1 Built by MinGW-Builds project) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_10a62.dir/'] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT -D QT_QML_DEBUG C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_10a62.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=core2 -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\herwi\\AppData\\Local\\Temp\\cclNkFIb.s] + ignore line: [GNU C++17 (x86_64-posix-seh-rev1 Built by MinGW-Builds project) version 13.1.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 13.1.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.25-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include"] + ignore line: [ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64D:/a/_temp/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: b3d236387f35294e2a73c51628039e05] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_10a62.dir/'] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\herwi\\AppData\\Local\\Temp\\cclNkFIb.s] + ignore line: [GNU assembler version 2.39 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.39] + ignore line: [COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -v -Wl -v CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_10a62.exe -Wl --out-implib libcmTC_10a62.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc'] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.1.0 (x86_64-posix-seh-rev1 Built by MinGW-Builds project) ] + ignore line: [COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_10a62.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_10a62.'] + link line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -plugin C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll -plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\ccNJUWfh.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 --sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 -m i386pep -Bdynamic -o cmTC_10a62.exe C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_10a62.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\ccNJUWfh.res] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-lpthread] ==> ignore + arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore + arg [-plugin-opt=-pass-through=-lshell32] ==> ignore + arg [-plugin-opt=-pass-through=-luser32] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-liconv] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [--sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64] ==> ignore + arg [-m] ==> ignore + arg [i386pep] ==> ignore + arg [-Bdynamic] ==> search dynamic + arg [-o] ==> ignore + arg [cmTC_10a62.exe] ==> ignore + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] ==> obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_10a62.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTC_10a62.dll.a] ==> ignore + arg [--major-image-version] ==> ignore + arg [0] ==> ignore + arg [--minor-image-version] ==> ignore + arg [0] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lkernel32] ==> lib [kernel32] + arg [-lpthread] ==> lib [pthread] + arg [-ladvapi32] ==> lib [advapi32] + arg [-lshell32] ==> lib [shell32] + arg [-luser32] ==> lib [user32] + arg [-lkernel32] ==> lib [kernel32] + arg [-liconv] ==> lib [iconv] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lkernel32] ==> lib [kernel32] + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] ==> obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + linker tool for 'CXX': ../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe + remove lib [msvcrt] + remove lib [msvcrt] + collapse obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib/crt2.o] + collapse obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] + collapse obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] ==> [C:/dev/Qt/Tools/mingw1310_64/lib] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] ==> [C:/dev/Qt/Tools/mingw1310_64/lib] + implicit libs: [stdc++;mingw32;gcc_s;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex;kernel32] + implicit objs: [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib/crt2.o;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + implicit dirs: [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0;C:/dev/Qt/Tools/mingw1310_64/lib/gcc;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib;C:/dev/Qt/Tools/mingw1310_64/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:210 (cmake_determine_linker_id)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Running the CXX compiler's linker: "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe" "-v" + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:210 (cmake_determine_linker_id)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Running the CXX compiler's linker: "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe" "-V" + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:210 (cmake_determine_linker_id)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Running the CXX compiler's linker: "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe" "--version" + + - + kind: "try_compile-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake:99 (CHECK_CXX_SOURCE_COMPILES)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake:34 (_qt_internal_find_third_party_dependencies)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake:136 (include)" + - "CMakeLists.txt:7 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-1mdv68" + binary: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-1mdv68" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/kwin" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-1mdv68' + + Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_55932 + [1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DCMAKE_HAVE_LIBC_PTHREAD -DQT_QML_DEBUG -fdiagnostics-color=always -o CMakeFiles/cmTC_55932.dir/src.cxx.obj -c C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-1mdv68/src.cxx + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG CMakeFiles/cmTC_55932.dir/src.cxx.obj -o cmTC_55932.exe -Wl,--out-implib,libcmTC_55932.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake:36 (check_cxx_source_compiles)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake:35 (_qt_internal_find_third_party_dependencies)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake:45 (include)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake:181 (find_package)" + - "CMakeLists.txt:7 (find_package)" + checks: + - "Performing Test HAVE_STDATOMIC" + directories: + source: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-0drsw4" + binary: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-0drsw4" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/kwin" + buildResult: + variable: "HAVE_STDATOMIC" + cached: true + stdout: | + Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-0drsw4' + + Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_9aff7 + [1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DHAVE_STDATOMIC -DQT_QML_DEBUG -fdiagnostics-color=always -o CMakeFiles/cmTC_9aff7.dir/src.cxx.obj -c C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/CMakeScratch/TryCompile-0drsw4/src.cxx + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG CMakeFiles/cmTC_9aff7.dir/src.cxx.obj -o cmTC_9aff7.exe -Wl,--out-implib,libcmTC_9aff7.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 +... diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/TargetDirectories.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..67cf653 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,31 @@ +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/edit_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/rebuild_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/list_install_components.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/install.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/install/local.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/install/strip.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/CMakeFiles/edit_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/CMakeFiles/rebuild_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/CMakeFiles/list_install_components.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/CMakeFiles/install.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/CMakeFiles/install/local.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/CMakeFiles/install/strip.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/qt_internal_plugins.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/edit_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/rebuild_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/list_install_components.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/install.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/install/local.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/install/strip.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen_timestamp_deps.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/edit_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/rebuild_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/list_install_components.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/install.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/install/local.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/install/strip.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen_timestamp_deps.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/clean_additional.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..994846b --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/clean_additional.cmake @@ -0,0 +1,13 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "Debug") + file(REMOVE_RECURSE + "app\\CMakeFiles\\fontManager_autogen.dir\\AutogenUsed.txt" + "app\\CMakeFiles\\fontManager_autogen.dir\\ParseCache.txt" + "app\\fontManager_autogen" + "plugins\\googlefonts\\CMakeFiles\\googlefonts_autogen.dir\\AutogenUsed.txt" + "plugins\\googlefonts\\CMakeFiles\\googlefonts_autogen.dir\\ParseCache.txt" + "plugins\\googlefonts\\googlefonts_autogen" + ) +endif() diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/cmake.check_cache b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/rules.ninja b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/rules.ninja new file mode 100644 index 0000000..120a5b7 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/rules.ninja @@ -0,0 +1,91 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.29 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: fontManager +# Configurations: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__googlefonts_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\dev\Qt\Tools\mingw1310_64\bin\g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared module. + +rule CXX_MODULE_LIBRARY_LINKER__googlefonts_Debug + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\dev\Qt\Tools\mingw1310_64\bin\g++.exe $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared -o $TARGET_FILE -Wl,--major-image-version,0,--minor-image-version,0 $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared module $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__fontManager_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\dev\Qt\Tools\mingw1310_64\bin\g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX executable. + +rule CXX_EXECUTABLE_LINKER__fontManager_Debug + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\dev\Qt\Tools\mingw1310_64\bin\g++.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE -Wl,--out-implib,$TARGET_IMPLIB -Wl,--major-image-version,0,--minor-image-version,0 $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\dev\Qt\Tools\Ninja\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\dev\Qt\Tools\Ninja\ninja.exe -t targets + description = All primary targets available: + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log new file mode 100644 index 0000000..856ff55 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/Testing/Temporary/LastTest.log @@ -0,0 +1,3 @@ +Start testing: Oct 25 15:01 W. Europe Daylight Time +---------------------------------------------------------- +End testing: Oct 25 15:01 W. Europe Daylight Time diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/query/cache-v2 b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/query/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/query/cmakeFiles-v1 b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/query/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/query/codemodel-v2 b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/query/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/cache-v2-3a946ed14265b03d724b.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/cache-v2-3a946ed14265b03d724b.json new file mode 100644 index 0000000..62a8333 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/cache-v2-3a946ed14265b03d724b.json @@ -0,0 +1,6499 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/addr2line.exe" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "29" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "1" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "STRING", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_INIT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : ".obj" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc.exe" + }, + { + "name" : "CMAKE_C_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/dlltool.exe" + }, + { + "name" : "CMAKE_EDIT_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cache edit program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cmake-gui.exe" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "Unknown" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable output of compile commands during generation." + } + ], + "type" : "BOOL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Ninja" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GNUtoMS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Convert GNU import libraries to MS format (requires Visual Studio)" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CMAKE_HAVE_LIBC_PTHREAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + { + "name" : "CMAKE_INSTALL_BINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "User executables (bin)" + } + ], + "type" : "PATH", + "value" : "bin" + }, + { + "name" : "CMAKE_INSTALL_DATADIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data (DATAROOTDIR)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_DATAROOTDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data root (share)" + } + ], + "type" : "PATH", + "value" : "share" + }, + { + "name" : "CMAKE_INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files (include)" + } + ], + "type" : "PATH", + "value" : "include" + }, + { + "name" : "CMAKE_INSTALL_INFODIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Info documentation (DATAROOTDIR/info)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Object code libraries (lib)" + } + ], + "type" : "PATH", + "value" : "lib" + }, + { + "name" : "CMAKE_INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program executables (libexec)" + } + ], + "type" : "PATH", + "value" : "libexec" + }, + { + "name" : "CMAKE_INSTALL_LOCALEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Locale-dependent data (DATAROOTDIR/locale)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LOCALSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable single-machine data (var)" + } + ], + "type" : "PATH", + "value" : "var" + }, + { + "name" : "CMAKE_INSTALL_MANDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Man documentation (DATAROOTDIR/man)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files for non-gcc (/usr/include)" + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/fontManager" + }, + { + "name" : "CMAKE_INSTALL_RUNSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Run-time variable data (LOCALSTATEDIR/run)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_SBINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "System admin executables (sbin)" + } + ], + "type" : "PATH", + "value" : "sbin" + }, + { + "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable architecture-independent data (com)" + } + ], + "type" : "PATH", + "value" : "com" + }, + { + "name" : "CMAKE_INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only single-machine data (etc)" + } + ], + "type" : "PATH", + "value" : "etc" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program used to build from build.ninja files." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/Ninja/ninja.exe" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "4" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_INCLUDE_BEFORE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "fontManager" + }, + { + "name" : "CMAKE_PROJECT_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0.1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MAJOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MINOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_PATCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_VERSION_TWEAK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe" + }, + { + "name" : "CMAKE_RC_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "RC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe" + }, + { + "name" : "CMAKE_RC_COMPILER_WORKS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_RC_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe" + }, + { + "name" : "CMAKE_TAPI", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_TAPI-NOTFOUND" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Threads" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding WrapAtomic" + } + ], + "type" : "INTERNAL", + "value" : "[1][v()]" + }, + { + "name" : "HAVE_STDATOMIC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_STDATOMIC" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) host Qt components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_ADDITIONAL_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Skip Qt Creator's package manager auto-setup" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for QT." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "QT_FEATURE_abstractbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_abstractslider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractslider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility_atspi_bridge", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility_atspi_bridge (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_action", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: action (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_aesni", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: aesni (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_alloca_malloc_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_android_style_assets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: android_style_assets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_animation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: animation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_appstore_compliant", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: appstore_compliant (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crc32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crc32 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crypto", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crypto (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512bw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512bw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512cd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512cd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512dq", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512dq (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512er", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512er (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512f", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512f (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512ifma", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512ifma (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512pf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512pf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_backtrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: backtrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_buttongroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: buttongroup (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_calendarwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: calendarwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_checkbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: checkbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clipboard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clipboard (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clock_gettime", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_gettime (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_clock_monotonic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_monotonic (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_close_range", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: close_range (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_colordialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colordialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_colornames", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colornames (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_columnview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: columnview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_combobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: combobox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlineparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlineparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlinkbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlinkbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_completer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: completer (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concatenatetablesproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concatenatetablesproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concurrent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concurrent (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_contextmenu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: contextmenu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cpp_winrt", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cpp_winrt (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cross_compile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cross_compile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cssparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cssparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ctf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ctf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cups", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cups (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cupsjobwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cupsjobwidget (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cupspassworddialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cupspassworddialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cursor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cursor (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx11_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx11_future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx17_filesystem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx17_filesystem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx20", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx20 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx23_stacktrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx23_stacktrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2a", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2a (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2b", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2b (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_datawidgetmapper", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datawidgetmapper (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datestring", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datestring (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug_and_release", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug_and_release (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_desktopservices", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: desktopservices (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_developer_build", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: developer_build (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dial", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dial (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialogbuttonbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialogbuttonbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d1_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_directfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_directwrite", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_directwrite3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dladdr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dladdr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dlopen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dlopen (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dockwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dockwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_draganddrop", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: draganddrop (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_drm_atomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: drm_atomic (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dynamicgl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dynamicgl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_easingcurve", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: easingcurve (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_effects", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: effects (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_egl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_egl_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_brcm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_brcm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_egldevice", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_egldevice (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_gbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_gbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_mali", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_mali (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_openwfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_openwfd (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_rcar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_rcar (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv_wl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv_wl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_elf_private_full_version", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: elf_private_full_version (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_errormessage", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: errormessage (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_etw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: etw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_evdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: evdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_f16c", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: f16c (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filedialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filedialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemiterator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemiterator (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemwatcher", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemwatcher (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontcombobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontcombobox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontconfig", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontconfig (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_fontdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_force_asserts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_asserts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_force_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_forkfd_pidfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_formlayout", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: formlayout (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_framework", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: framework (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fscompleter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fscompleter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_futimens", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: futimens (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gc_binaries", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gc_binaries (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gestures", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gestures (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_getauxval", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getauxval (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_getentropy", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getentropy (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gif", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gif (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_glib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_glibc_fortify_source", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glibc_fortify_source (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicseffect", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicseffect (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_graphicsframecapture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsframecapture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicsview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_groupbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: groupbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gtk3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gtk3 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gui", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gui (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_highdpiscaling", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: highdpiscaling (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_hijricalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: hijricalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ico", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ico (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_icu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: icu (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_identityproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: identityproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_im", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: im (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_heuristic_mask", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_heuristic_mask (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_text", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_text (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_bmp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_bmp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_ppm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_ppm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xpm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xpm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformatplugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformatplugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageio_text_loading", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageio_text_loading (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_inotify", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inotify (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_inputdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inputdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_integrityfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_integrityhid", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityhid (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_intelcet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: intelcet (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_islamiccivilcalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: islamiccivilcalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemviews", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemviews (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_jalalicalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jalalicalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_journald", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: journald (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_keysequenceedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: keysequenceedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_kms", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: kms (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_label", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: label (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_largefile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: largefile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lcdnumber", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lcdnumber (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libcpp_hardening", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libcpp_hardening (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_axis_api", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_axis_api (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_hires_wheel_support", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_hires_wheel_support (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_library", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: library (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libstdcpp_assertions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libstdcpp_assertions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libudev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libudev (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_lineedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lineedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_linkat", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linkat (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_linuxfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linuxfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_listview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_listwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_localtime_r", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localtime_r (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_localtime_s", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localtime_s (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lttng", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lttng (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mainwindow", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mainwindow (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mdiarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mdiarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_memmem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: memmem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_memrchr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: memrchr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_menu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_menubar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menubar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_messagebox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: messagebox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_metal", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: metal (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mimetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mimetype_database", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype_database (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mips_dsp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dsp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mips_dspr2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dspr2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_movie", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: movie (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mtdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mtdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_multiprocess", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: multiprocess (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_neon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: neon (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_network", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: network (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_no_direct_extern_access", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_direct_extern_access (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_no_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengles2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles31", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles31 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles32 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openssl_hash", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_hash (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv11 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv30", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv30 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openvg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openvg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pdf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pdf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_permissions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: permissions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_picture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: picture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_plugin_manifest", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: plugin_manifest (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_poll_exit_on_error", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_exit_on_error (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_poll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_poll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_pollts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_pollts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_ppoll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_ppoll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_select", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_select (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_fallocate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_fallocate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_posix_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_precompile_header", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: precompile_header (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printdialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printer (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printpreviewdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printpreviewdialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printpreviewwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printpreviewwidget (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printsupport", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printsupport (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_private_tests", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: private_tests (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_process", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: process (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_processenvironment", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: processenvironment (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_proxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: proxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pushbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pushbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qqnx_imf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_imf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qqnx_pps", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_pps (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_radiobutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: radiobutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_64bit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_64bit (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_fp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_fp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdrnd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdrnd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdseed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdseed (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_exports", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_exports (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_relocations", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_relocations (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_regularexpression", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: regularexpression (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relocatable", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relocatable (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relro_now_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relro_now_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_renameat2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: renameat2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_resizehandler", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: resizehandler (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rpath", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rpath (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_rubberband", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rubberband (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scroller", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scroller (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_separate_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: separate_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sessionmanager", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sessionmanager (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_settings", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: settings (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sha3_fast", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sha3_fast (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shani", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shani (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shared", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shared (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sharedmemory", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sharedmemory (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shortcut", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shortcut (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_signaling_nan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: signaling_nan (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_simulator_and_device", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: simulator_and_device (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sizegrip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sizegrip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slog2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slog2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sortfilterproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_spinbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: spinbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splashscreen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splashscreen (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splitter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splitter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sql", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sql (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_1 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ssse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ssse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stack_clash_protection", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_clash_protection (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stack_protector", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_protector (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stackedwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stackedwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_standarditemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: standarditemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_static", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: static (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_statusbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statusbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_statustip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statustip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_std_atomic64", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: std_atomic64 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stdlib_libcpp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stdlib_libcpp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_stringlistmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stringlistmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_android", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_android (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_fusion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_fusion (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_mac", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_mac (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_stylesheet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_stylesheet (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows11 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windowsvista", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windowsvista (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syntaxhighlighter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syntaxhighlighter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syslog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syslog (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_libb2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_libb2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_xcb_xinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_xcb_xinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_zlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_zlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_systemsemaphore", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemsemaphore (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_systemtrayicon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemtrayicon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sysv_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sysv_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tabbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabletevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabletevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tableview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tableview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tablewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tablewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_temporaryfile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: temporaryfile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_testlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: testlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textbrowser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textbrowser (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textdate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textdate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_texthtmlparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: texthtmlparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textodfwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textodfwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_thread", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: thread (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone_locale", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone_locale (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_toolbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tooltip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tooltip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_translation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: translation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_transposeproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: transposeproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treeview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treeview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_trivial_auto_var_init_pattern", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tslib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tslib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tuiotouch", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tuiotouch (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undocommand", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undocommand (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undogroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undogroup (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undostack", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undostack (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undoview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undoview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_use_bfd_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_bfd_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_gold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_gold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_lld_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_lld_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_mold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_mold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vaes", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vaes (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_validator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: validator (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_version_tagging", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: version_tagging (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkgen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkgen (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkkhrdisplay", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkkhrdisplay (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vnc", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vnc (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vulkan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vulkan (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wasm_exceptions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_exceptions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wasm_simd128", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_simd128 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wayland", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wayland (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_whatsthis", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: whatsthis (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wheelevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wheelevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgettextcontrol", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgettextcontrol (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wizard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wizard (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_x86intrin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: x86intrin (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xcb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_egl_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_egl_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_native_painting", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_native_painting (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_sm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_sm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xml", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xml (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstream", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstream (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xrender", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xrender (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_zstd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: zstd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_QMAKE_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/bin/qmake.exe" + }, + { + "name" : "Qt6CoreTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6CoreTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools" + }, + { + "name" : "Qt6Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Core." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core" + }, + { + "name" : "Qt6EntryPointPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6EntryPointPrivate." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate" + }, + { + "name" : "Qt6GuiTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6GuiTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools" + }, + { + "name" : "Qt6Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Gui." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui" + }, + { + "name" : "Qt6PrintSupport_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6PrintSupport." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport" + }, + { + "name" : "Qt6WidgetsTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6WidgetsTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools" + }, + { + "name" : "Qt6Widgets_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Widgets." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets" + }, + { + "name" : "Qt6ZlibPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6ZlibPrivate." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate" + }, + { + "name" : "Qt6_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_GLSLC_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLC_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "Vulkan_INCLUDE_DIR-NOTFOUND" + }, + { + "name" : "Vulkan_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_LIBRARY-NOTFOUND" + }, + { + "name" : "WINDEPLOYQT_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe" + }, + { + "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "linker supports push/pop state" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files (x86)/fontManager" + }, + { + "name" : "fontManager_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app" + }, + { + "name" : "fontManager_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "OFF" + }, + { + "name" : "fontManager_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/cmakeFiles-v1-5bfe8d5a2e610a567591.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/cmakeFiles-v1-5bfe8d5a2e610a567591.json new file mode 100644 index 0000000..0848427 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/cmakeFiles-v1-5bfe8d5a2e610a567591.json @@ -0,0 +1,1460 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + }, + { + "path" : "plugins/CMakeLists.txt" + }, + { + "path" : "plugins/googlefonts/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake" + }, + { + "path" : "app/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app", + "source" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/codemodel-v2-6c70190812b87e4ca32e.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/codemodel-v2-6c70190812b87e4ca32e.json new file mode 100644 index 0000000..0bc7f8b --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/codemodel-v2-6c70190812b87e4ca32e.json @@ -0,0 +1,166 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "childIndexes" : + [ + 1, + 3 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "projectIndex" : 0, + "source" : "." + }, + { + "build" : "plugins", + "childIndexes" : + [ + 2 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-plugins-Debug-432f0029505b84f51ac1.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "plugins" + }, + { + "build" : "plugins/googlefonts", + "hasInstallRule" : true, + "jsonFile" : "directory-plugins.googlefonts-Debug-89867994d616812654dc.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "plugins/googlefonts", + "targetIndexes" : + [ + 3, + 4, + 5, + 6 + ] + }, + { + "build" : "app", + "hasInstallRule" : true, + "jsonFile" : "directory-app-Debug-69030c270d8f93fcf634.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "app", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0, + 1, + 2, + 3 + ], + "name" : "fontManager", + "targetIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 3, + "id" : "fontManager::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager-Debug-d6f3bf15576e97b73842.json", + "name" : "fontManager", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "fontManager_autogen::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager_autogen-Debug-00da2a1ef4c753b128c8.json", + "name" : "fontManager_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json", + "name" : "fontManager_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts-Debug-fd484b7f496b6bd18fe7.json", + "name" : "googlefonts", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts_autogen-Debug-63d2a8be7e99871a7dc4.json", + "name" : "googlefonts_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json", + "name" : "googlefonts_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "qt_internal_plugins::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json", + "name" : "qt_internal_plugins", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app", + "source" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + "version" : + { + "major" : 2, + "minor" : 7 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-.-Debug-d0094a50bb2071803777.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-.-Debug-d0094a50bb2071803777.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-.-Debug-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-app-Debug-69030c270d8f93fcf634.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-app-Debug-69030c270d8f93fcf634.json new file mode 100644 index 0000000..22b4ff8 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-app-Debug-69030c270d8f93fcf634.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 64, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "fontManager.exe" + ], + "targetId" : "fontManager::@5f5a17c01335469806cb", + "targetIndex" : 0, + "type" : "target" + } + ], + "paths" : + { + "build" : "app", + "source" : "app" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-plugins-Debug-432f0029505b84f51ac1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-plugins-Debug-432f0029505b84f51ac1.json new file mode 100644 index 0000000..b980c73 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-plugins-Debug-432f0029505b84f51ac1.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "plugins", + "source" : "plugins" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-plugins.googlefonts-Debug-89867994d616812654dc.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-plugins.googlefonts-Debug-89867994d616812654dc.json new file mode 100644 index 0000000..0e44d5c --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/directory-plugins.googlefonts-Debug-89867994d616812654dc.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 37, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin/app", + "paths" : + [ + "app/googlefonts.dll" + ], + "targetId" : "googlefonts::@eb1341fde24df9e9f4d4", + "targetIndex" : 3, + "type" : "target" + } + ], + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/index-2024-10-25T13-48-44-0749.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/index-2024-10-25T13-48-44-0749.json new file mode 100644 index 0000000..b770f7c --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/index-2024-10-25T13-48-44-0749.json @@ -0,0 +1,89 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe", + "cpack" : "C:/dev/Qt/Tools/CMake_64/bin/cpack.exe", + "ctest" : "C:/dev/Qt/Tools/CMake_64/bin/ctest.exe", + "root" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 29, + "patch" : 3, + "string" : "3.29.3", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-6c70190812b87e4ca32e.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + }, + { + "jsonFile" : "cache-v2-3a946ed14265b03d724b.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-5bfe8d5a2e610a567591.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-3a946ed14265b03d724b.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-5bfe8d5a2e610a567591.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-6c70190812b87e4ca32e.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + } + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-fontManager-Debug-d6f3bf15576e97b73842.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-fontManager-Debug-d6f3bf15576e97b73842.json new file mode 100644 index 0000000..1b319a4 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-fontManager-Debug-d6f3bf15576e97b73842.json @@ -0,0 +1,566 @@ +{ + "artifacts" : + [ + { + "path" : "fontManager.exe" + }, + { + "path" : "fontManager.pdb" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "_qt_internal_create_executable", + "qt6_add_executable", + "qt_add_executable", + "install", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "find_dependency", + "_qt_internal_find_qt_dependencies", + "add_compile_definitions" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "app/CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 957, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 644, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 703, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 64, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 47, + "parent" : 0 + }, + { + "file" : 5 + }, + { + "command" : 8, + "file" : 5, + "line" : 7, + "parent" : 7 + }, + { + "file" : 4, + "parent" : 8 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 3, + "parent" : 10 + }, + { + "command" : 7, + "file" : 3, + "line" : 55, + "parent" : 11 + }, + { + "file" : 2, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 13 + }, + { + "command" : 5, + "file" : 0, + "line" : 645, + "parent" : 2 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 7, + "parent" : 16 + }, + { + "command" : 7, + "file" : 7, + "line" : 57, + "parent" : 17 + }, + { + "file" : 6, + "parent" : 18 + }, + { + "command" : 6, + "file" : 6, + "line" : 61, + "parent" : 19 + }, + { + "command" : 7, + "file" : 7, + "line" : 45, + "parent" : 17 + }, + { + "file" : 12, + "parent" : 21 + }, + { + "command" : 10, + "file" : 12, + "line" : 44, + "parent" : 22 + }, + { + "command" : 9, + "file" : 11, + "line" : 143, + "parent" : 23 + }, + { + "command" : 8, + "file" : 10, + "line" : 76, + "parent" : 24 + }, + { + "file" : 9, + "parent" : 25 + }, + { + "command" : 7, + "file" : 9, + "line" : 55, + "parent" : 26 + }, + { + "file" : 8, + "parent" : 27 + }, + { + "command" : 6, + "file" : 8, + "line" : 61, + "parent" : 28 + }, + { + "command" : 6, + "file" : 8, + "line" : 83, + "parent" : 28 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 14, + "parent" : 31 + }, + { + "command" : 7, + "file" : 14, + "line" : 55, + "parent" : 32 + }, + { + "file" : 13, + "parent" : 33 + }, + { + "command" : 6, + "file" : 13, + "line" : 61, + "parent" : 34 + }, + { + "command" : 11, + "file" : 5, + "line" : 11, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 15, + "define" : "MINGW_HAS_SECURE_API=1" + }, + { + "backtrace" : 15, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 15, + "define" : "QT_NEEDS_QMAIN" + }, + { + "backtrace" : 36, + "define" : "QT_NO_CAST_FROM_ASCII" + }, + { + "backtrace" : 6, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 15, + "define" : "UNICODE" + }, + { + "backtrace" : 15, + "define" : "WIN32" + }, + { + "backtrace" : 15, + "define" : "WIN64" + }, + { + "backtrace" : 15, + "define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE" + }, + { + "backtrace" : 15, + "define" : "_UNICODE" + }, + { + "backtrace" : 15, + "define" : "_WIN64" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/include" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtCore" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtGui" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 15, + 15 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "fontManager_autogen::@5f5a17c01335469806cb" + }, + { + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb" + } + ], + "id" : "fontManager::@5f5a17c01335469806cb", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/fontManager" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g", + "role" : "flags" + }, + { + "fragment" : "-mwindows", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 14, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Core.a", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-lmpr", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-luserenv", + "role" : "libraries" + }, + { + "backtrace" : 29, + "fragment" : "-lmingw32", + "role" : "libraries" + }, + { + "backtrace" : 29, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6EntryPoint.a", + "role" : "libraries" + }, + { + "backtrace" : 30, + "fragment" : "-lshell32", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ld3d11", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ldxgi", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ldxguid", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ld3d12", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "fontManager", + "nameOnDisk" : "fontManager.exe", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 6, + 7 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1, + 2 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 5 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 8 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "app/main.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "app/cmainwindow.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "app/cmainwindow.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "app/cmainwindow.ui", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 4, + "path" : "app/ifontprovider.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/include/ui_cmainwindow.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp.rule", + "sourceGroupIndex" : 4 + } + ], + "type" : "EXECUTABLE" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-fontManager_autogen-Debug-00da2a1ef4c753b128c8.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-fontManager_autogen-Debug-00da2a1ef4c753b128c8.json new file mode 100644 index 0000000..0adc73f --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-fontManager_autogen-Debug-00da2a1ef4c753b128c8.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "fontManager_autogen::@5f5a17c01335469806cb", + "isGeneratorProvided" : true, + "name" : "fontManager_autogen", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json new file mode 100644 index 0000000..79b87b0 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json @@ -0,0 +1,31 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb", + "isGeneratorProvided" : true, + "name" : "fontManager_autogen_timestamp_deps", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-googlefonts-Debug-fd484b7f496b6bd18fe7.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-googlefonts-Debug-fd484b7f496b6bd18fe7.json new file mode 100644 index 0000000..1b63afe --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-googlefonts-Debug-fd484b7f496b6bd18fe7.json @@ -0,0 +1,557 @@ +{ + "artifacts" : + [ + { + "path" : "app/googlefonts.dll" + }, + { + "path" : "app/googlefonts.pdb" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt_add_plugin", + "install", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "target_compile_definitions", + "add_compile_definitions", + "target_include_directories", + "target_sources", + "qt6_extract_metatypes", + "qt6_finalize_target" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "plugins/googlefonts/CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:2648:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2657, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2557, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2767, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 37, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 27, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "file" : 5 + }, + { + "command" : 8, + "file" : 5, + "line" : 7, + "parent" : 8 + }, + { + "file" : 4, + "parent" : 9 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 10 + }, + { + "file" : 3, + "parent" : 11 + }, + { + "command" : 7, + "file" : 3, + "line" : 57, + "parent" : 12 + }, + { + "file" : 2, + "parent" : 13 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 14 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 10 + }, + { + "file" : 7, + "parent" : 16 + }, + { + "command" : 7, + "file" : 7, + "line" : 55, + "parent" : 17 + }, + { + "file" : 6, + "parent" : 18 + }, + { + "command" : 6, + "file" : 6, + "line" : 61, + "parent" : 19 + }, + { + "command" : 8, + "file" : 1, + "line" : 9, + "parent" : 0 + }, + { + "file" : 4, + "parent" : 21 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 22 + }, + { + "file" : 9, + "parent" : 23 + }, + { + "command" : 7, + "file" : 9, + "line" : 55, + "parent" : 24 + }, + { + "file" : 8, + "parent" : 25 + }, + { + "command" : 6, + "file" : 8, + "line" : 61, + "parent" : 26 + }, + { + "command" : 9, + "file" : 0, + "line" : 2624, + "parent" : 2 + }, + { + "command" : 10, + "file" : 5, + "line" : 11, + "parent" : 8 + }, + { + "command" : 11, + "file" : 1, + "line" : 16, + "parent" : 0 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 14, + "file" : 10, + "line" : 1, + "parent" : 31 + }, + { + "command" : 13, + "file" : 0, + "line" : 875, + "parent" : 32 + }, + { + "command" : 12, + "file" : 0, + "line" : 1512, + "parent" : 33 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "MINGW_HAS_SECURE_API=1" + }, + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 28, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 29, + "define" : "QT_NO_CAST_FROM_ASCII" + }, + { + "backtrace" : 28, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 6, + "define" : "QT_PRINTSUPPORT_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 7, + "define" : "UNICODE" + }, + { + "backtrace" : 7, + "define" : "WIN32" + }, + { + "backtrace" : 7, + "define" : "WIN64" + }, + { + "backtrace" : 7, + "define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE" + }, + { + "backtrace" : 7, + "define" : "_UNICODE" + }, + { + "backtrace" : 7, + "define" : "_WIN64" + }, + { + "define" : "googlefonts_EXPORTS" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/include" + }, + { + "backtrace" : 30, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/../../app" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtCore" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtGui" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtPrintSupport" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4" + }, + { + "backtrace" : 0, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4" + } + ], + "id" : "googlefonts::@eb1341fde24df9e9f4d4", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin/app" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/fontManager" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6PrintSupport.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Core.a", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "-lmpr", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "-luserenv", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ld3d11", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ldxgi", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ldxguid", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ld3d12", + "role" : "libraries" + }, + { + "backtrace" : 27, + "fragment" : "-lcomdlg32", + "role" : "libraries" + }, + { + "backtrace" : 27, + "fragment" : "-lwinspool", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "googlefonts", + "nameOnDisk" : "googlefonts.dll", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 4 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 2 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 3 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 5, + 6, + 7 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "plugins/googlefonts/googlefonts.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "plugins/googlefonts/googlefonts.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 34, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.rule", + "sourceGroupIndex" : 4 + } + ], + "type" : "MODULE_LIBRARY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-googlefonts_autogen-Debug-63d2a8be7e99871a7dc4.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-googlefonts_autogen-Debug-63d2a8be7e99871a7dc4.json new file mode 100644 index 0000000..8b54868 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-googlefonts_autogen-Debug-63d2a8be7e99871a7dc4.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4", + "isGeneratorProvided" : true, + "name" : "googlefonts_autogen", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json new file mode 100644 index 0000000..0136c24 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json @@ -0,0 +1,31 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4", + "isGeneratorProvided" : true, + "name" : "googlefonts_autogen_timestamp_deps", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json new file mode 100644 index 0000000..206eed3 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply.prev/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json @@ -0,0 +1,68 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_add_plugin", + "qt_add_plugin", + "add_dependencies" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 2657, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2631, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2634, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "googlefonts::@eb1341fde24df9e9f4d4" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "qt_internal_plugins::@eb1341fde24df9e9f4d4", + "name" : "qt_internal_plugins", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/cache-v2-3a946ed14265b03d724b.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/cache-v2-3a946ed14265b03d724b.json new file mode 100644 index 0000000..62a8333 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/cache-v2-3a946ed14265b03d724b.json @@ -0,0 +1,6499 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/addr2line.exe" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Debug" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app" + }, + { + "name" : "CMAKE_CACHE_MAJOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Major version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_CACHE_MINOR_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Minor version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "29" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "3" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "1" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "STRING", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ar' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "A wrapper around 'ranlib' adding the appropriate '--plugin' option for the GCC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe" + }, + { + "name" : "CMAKE_CXX_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during all build types." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_CXX_FLAGS_INIT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "-DQT_QML_DEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the CXX compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_CXX_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : ".obj" + }, + { + "name" : "CMAKE_CXX_STANDARD_LIBRARIES", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Libraries linked by default with all C++ applications." + } + ], + "type" : "STRING", + "value" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32" + }, + { + "name" : "CMAKE_C_COMPILER", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/gcc.exe" + }, + { + "name" : "CMAKE_C_OUTPUT_EXTENSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/dlltool.exe" + }, + { + "name" : "CMAKE_EDIT_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cache edit program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/bin/cmake-gui.exe" + }, + { + "name" : "CMAKE_EXECUTABLE_FORMAT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Executable file format" + } + ], + "type" : "INTERNAL", + "value" : "Unknown" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_EXPORT_COMPILE_COMMANDS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Enable/Disable output of compile commands during generation." + } + ], + "type" : "BOOL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "STRING", + "value" : "Ninja" + }, + { + "name" : "CMAKE_GENERATOR_INSTANCE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Generator instance identifier." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_PLATFORM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator platform." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GENERATOR_TOOLSET", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator toolset." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_GNUtoMS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Convert GNU import libraries to MS format (requires Visual Studio)" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "CMAKE_HAVE_LIBC_PTHREAD", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test CMAKE_HAVE_LIBC_PTHREAD" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + { + "name" : "CMAKE_INSTALL_BINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "User executables (bin)" + } + ], + "type" : "PATH", + "value" : "bin" + }, + { + "name" : "CMAKE_INSTALL_DATADIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data (DATAROOTDIR)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_DATAROOTDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only architecture-independent data root (share)" + } + ], + "type" : "PATH", + "value" : "share" + }, + { + "name" : "CMAKE_INSTALL_DOCDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Documentation root (DATAROOTDIR/doc/PROJECT_NAME)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_INCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files (include)" + } + ], + "type" : "PATH", + "value" : "include" + }, + { + "name" : "CMAKE_INSTALL_INFODIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Info documentation (DATAROOTDIR/info)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LIBDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Object code libraries (lib)" + } + ], + "type" : "PATH", + "value" : "lib" + }, + { + "name" : "CMAKE_INSTALL_LIBEXECDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program executables (libexec)" + } + ], + "type" : "PATH", + "value" : "libexec" + }, + { + "name" : "CMAKE_INSTALL_LOCALEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Locale-dependent data (DATAROOTDIR/locale)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_LOCALSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable single-machine data (var)" + } + ], + "type" : "PATH", + "value" : "var" + }, + { + "name" : "CMAKE_INSTALL_MANDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Man documentation (DATAROOTDIR/man)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_OLDINCLUDEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C header files for non-gcc (/usr/include)" + } + ], + "type" : "PATH", + "value" : "/usr/include" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/fontManager" + }, + { + "name" : "CMAKE_INSTALL_RUNSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Run-time variable data (LOCALSTATEDIR/run)" + } + ], + "type" : "PATH", + "value" : "" + }, + { + "name" : "CMAKE_INSTALL_SBINDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "System admin executables (sbin)" + } + ], + "type" : "PATH", + "value" : "sbin" + }, + { + "name" : "CMAKE_INSTALL_SHAREDSTATEDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Modifiable architecture-independent data (com)" + } + ], + "type" : "PATH", + "value" : "com" + }, + { + "name" : "CMAKE_INSTALL_SYSCONFDIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Read-only single-machine data (etc)" + } + ], + "type" : "PATH", + "value" : "etc" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Program used to build from build.ninja files." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/Ninja/ninja.exe" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of modules during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_NM", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/nm.exe" + }, + { + "name" : "CMAKE_NUMBER_OF_MAKEFILES", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "number of local generators" + } + ], + "type" : "INTERNAL", + "value" : "4" + }, + { + "name" : "CMAKE_OBJCOPY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64" + }, + { + "name" : "CMAKE_PROJECT_DESCRIPTION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_HOMEPAGE_URL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_INCLUDE_BEFORE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake" + }, + { + "name" : "CMAKE_PROJECT_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "fontManager" + }, + { + "name" : "CMAKE_PROJECT_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0.1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MAJOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "0" + }, + { + "name" : "CMAKE_PROJECT_VERSION_MINOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "1" + }, + { + "name" : "CMAKE_PROJECT_VERSION_PATCH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_PROJECT_VERSION_TWEAK", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe" + }, + { + "name" : "CMAKE_RC_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "RC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe" + }, + { + "name" : "CMAKE_RC_COMPILER_WORKS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "CMAKE_RC_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_RC_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags for Windows Resource Compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_READELF", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of shared libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_SKIP_INSTALL_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when installing shared libraries, but are added when building." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_SKIP_RPATH", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If set, runtime paths are not added when using shared libraries." + } + ], + "type" : "BOOL", + "value" : "NO" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the linker during the creation of static libraries during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_STRIP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe" + }, + { + "name" : "CMAKE_TAPI", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "CMAKE_TAPI-NOTFOUND" + }, + { + "name" : "CMAKE_VERBOSE_MAKEFILE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo." + } + ], + "type" : "BOOL", + "value" : "FALSE" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_Threads", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding Threads" + } + ], + "type" : "INTERNAL", + "value" : "[TRUE][v()]" + }, + { + "name" : "FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Details about finding WrapAtomic" + } + ], + "type" : "INTERNAL", + "value" : "[1][v()]" + }, + { + "name" : "HAVE_STDATOMIC", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Test HAVE_STDATOMIC" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "name" : "QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) host Qt components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_ADDITIONAL_PACKAGES_PREFIX_PATH", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Additional directories where find(Qt6 ...) components are searched" + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Skip Qt Creator's package manager auto-setup" + } + ], + "type" : "BOOL", + "value" : "OFF" + }, + { + "name" : "QT_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for QT." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "QT_FEATURE_abstractbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_abstractslider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: abstractslider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_accessibility_atspi_bridge", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: accessibility_atspi_bridge (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_action", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: action (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_aesni", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: aesni (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_alloca_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_alloca_malloc_h", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: alloca_malloc_h (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_android_style_assets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: android_style_assets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_animation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: animation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_appstore_compliant", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: appstore_compliant (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crc32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crc32 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_arm_crypto", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: arm_crypto (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_avx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512bw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512bw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512cd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512cd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512dq", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512dq (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512er", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512er (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512f", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512f (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512ifma", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512ifma (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512pf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512pf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vbmi2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vbmi2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_avx512vl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: avx512vl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_backtrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: backtrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_buttongroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: buttongroup (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_calendarwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: calendarwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cborstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cborstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_checkbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: checkbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clipboard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clipboard (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_clock_gettime", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_gettime (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_clock_monotonic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: clock_monotonic (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_close_range", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: close_range (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_colordialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colordialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_colornames", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: colornames (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_columnview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: columnview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_combobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: combobox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlineparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlineparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_commandlinkbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: commandlinkbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_completer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: completer (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concatenatetablesproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concatenatetablesproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_concurrent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: concurrent (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_contextmenu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: contextmenu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cpp_winrt", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cpp_winrt (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cross_compile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cross_compile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cssparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cssparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ctf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ctf (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cups", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cups (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cupsjobwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cupsjobwidget (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cupspassworddialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cupspassworddialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cursor", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cursor (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx11_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx11_future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx17_filesystem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx17_filesystem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_cxx20", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx20 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx23_stacktrace", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx23_stacktrace (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2a", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2a (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_cxx2b", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: cxx2b (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_datawidgetmapper", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datawidgetmapper (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datestring", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datestring (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_datetimeparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: datetimeparser (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dbus_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dbus_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_debug_and_release", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: debug_and_release (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_desktopservices", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: desktopservices (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_developer_build", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: developer_build (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dial", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dial (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dialogbuttonbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dialogbuttonbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_direct2d1_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: direct2d1_1 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_directfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_directwrite", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_directwrite3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: directwrite3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_dladdr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dladdr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dlopen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dlopen (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dockwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dockwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_draganddrop", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: draganddrop (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_drm_atomic", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: drm_atomic (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_dynamicgl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: dynamicgl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_easingcurve", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: easingcurve (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_effects", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: effects (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_egl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_egl_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: egl_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_brcm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_brcm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_egldevice", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_egldevice (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_gbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_gbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_mali", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_mali (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_openwfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_openwfd (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_rcar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_rcar (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_viv_wl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_viv_wl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_eglfs_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: eglfs_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_elf_private_full_version", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: elf_private_full_version (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_errormessage", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: errormessage (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_etw", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: etw (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_evdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: evdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_f16c", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: f16c (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filedialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filedialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemiterator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemiterator (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_filesystemwatcher", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: filesystemwatcher (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontcombobox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontcombobox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fontconfig", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontconfig (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_fontdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fontdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_force_asserts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_asserts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_force_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: force_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_forkfd_pidfd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: forkfd_pidfd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_formlayout", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: formlayout (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_framework", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: framework (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_fscompleter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: fscompleter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_futimens", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: futimens (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_future", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: future (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gc_binaries", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gc_binaries (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gestures", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gestures (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_getauxval", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getauxval (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_getentropy", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: getentropy (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gif", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gif (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_glib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_glibc_fortify_source", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: glibc_fortify_source (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicseffect", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicseffect (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_graphicsframecapture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsframecapture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_graphicsview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: graphicsview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_groupbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: groupbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_gtk3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gtk3 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_gui", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: gui (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_highdpiscaling", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: highdpiscaling (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_hijricalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: hijricalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ico", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ico (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_icu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: icu (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_identityproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: identityproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_im", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: im (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_heuristic_mask", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_heuristic_mask (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_image_text", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: image_text (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_bmp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_bmp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_ppm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_ppm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xbm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xbm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformat_xpm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformat_xpm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageformatplugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageformatplugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_imageio_text_loading", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: imageio_text_loading (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_inotify", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inotify (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_inputdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: inputdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_integrityfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_integrityhid", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: integrityhid (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_intelcet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: intelcet (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_islamiccivilcalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: islamiccivilcalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_itemviews", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: itemviews (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_jalalicalendar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jalalicalendar (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_journald", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: journald (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_keysequenceedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: keysequenceedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_kms", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: kms (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_label", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: label (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_largefile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: largefile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lcdnumber", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lcdnumber (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libcpp_hardening", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libcpp_hardening (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_axis_api", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_axis_api (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_libinput_hires_wheel_support", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libinput_hires_wheel_support (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_library", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: library (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libstdcpp_assertions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libstdcpp_assertions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_libudev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: libudev (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_lineedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lineedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_linkat", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linkat (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_linuxfb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: linuxfb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_listview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_listwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: listwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_localtime_r", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localtime_r (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_localtime_s", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: localtime_s (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_lttng", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: lttng (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mainwindow", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mainwindow (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mdiarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mdiarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_memmem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: memmem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_memrchr", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: memrchr (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_menu", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menu (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_menubar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: menubar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_messagebox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: messagebox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_metal", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: metal (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mimetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mimetype_database", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mimetype_database (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mips_dsp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dsp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_mips_dspr2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mips_dspr2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_movie", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: movie (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_mtdev", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: mtdev (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_multiprocess", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: multiprocess (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_neon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: neon (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_network", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: network (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_no_direct_extern_access", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_direct_extern_access (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_no_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: no_pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengl (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_opengles2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles3 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles31", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles31 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opengles32", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opengles32 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openssl_hash", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_hash (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_openssl_linked", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openssl_linked (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv11 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_opensslv30", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: opensslv30 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_openvg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: openvg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pdf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pdf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_permissions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: permissions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_picture", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: picture (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pkg_config", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pkg_config (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_plugin_manifest", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: plugin_manifest (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_poll_exit_on_error", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_exit_on_error (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_poll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_poll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_pollts", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_pollts (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_ppoll", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_ppoll (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_poll_select", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: poll_select (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_fallocate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_fallocate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_posix_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_posix_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: posix_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_precompile_header", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: precompile_header (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printdialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printer", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printer (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printpreviewdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printpreviewdialog (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printpreviewwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printpreviewwidget (from target Qt6::PrintSupport)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_printsupport", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: printsupport (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_private_tests", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: private_tests (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_process", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: process (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_processenvironment", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: processenvironment (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_progressdialog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: progressdialog (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_proxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: proxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_pushbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: pushbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_qqnx_imf", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_imf (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_qqnx_pps", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: qqnx_pps (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_radiobutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: radiobutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_64bit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_64bit (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_raster_fp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: raster_fp (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdrnd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdrnd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rdseed", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rdseed (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_exports", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_exports (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_reduce_relocations", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: reduce_relocations (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_regularexpression", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: regularexpression (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relocatable", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relocatable (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_relro_now_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: relro_now_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_renameat2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: renameat2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_resizehandler", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: resizehandler (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_rpath", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rpath (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_rubberband", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: rubberband (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollarea", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollarea (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scrollbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scrollbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_scroller", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: scroller (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_separate_debug_info", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: separate_debug_info (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sessionmanager", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sessionmanager (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_settings", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: settings (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sha3_fast", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sha3_fast (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shani", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shani (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shared", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shared (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sharedmemory", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sharedmemory (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_shortcut", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: shortcut (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_signaling_nan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: signaling_nan (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_simulator_and_device", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: simulator_and_device (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sizegrip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sizegrip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slider", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slider (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_slog2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: slog2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sortfilterproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sortfilterproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_spinbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: spinbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splashscreen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splashscreen (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_splitter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: splitter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sql", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sql (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_1", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_1 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sse4_2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sse4_2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_ssse3", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: ssse3 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stack_clash_protection", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_clash_protection (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stack_protector", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stack_protector (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stackedwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stackedwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_standarditemmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: standarditemmodel (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_static", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: static (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_statusbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statusbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_statustip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: statustip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_std_atomic64", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: std_atomic64 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_stdlib_libcpp", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stdlib_libcpp (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_stringlistmodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: stringlistmodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_android", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_android (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_fusion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_fusion (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_mac", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_mac (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_style_stylesheet", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_stylesheet (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windows11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windows11 (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_style_windowsvista", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: style_windowsvista (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syntaxhighlighter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syntaxhighlighter (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_syslog", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: syslog (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_doubleconversion", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_doubleconversion (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_freetype", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_freetype (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_harfbuzz", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_harfbuzz (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_jpeg", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_jpeg (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_libb2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_libb2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_pcre2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_pcre2 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_png", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_png (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_xcb_xinput", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_xcb_xinput (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_system_zlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: system_zlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_systemsemaphore", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemsemaphore (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_systemtrayicon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: systemtrayicon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_sysv_sem", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_sem (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_sysv_shm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: sysv_shm (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tabbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabletevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabletevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tableview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tableview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tablewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tablewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tabwidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tabwidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_temporaryfile", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: temporaryfile (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_testlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: testlib (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textbrowser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textbrowser (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textdate", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textdate (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textedit", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textedit (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_texthtmlparser", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: texthtmlparser (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownreader (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textmarkdownwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textmarkdownwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_textodfwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: textodfwriter (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_thread", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: thread (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_timezone_locale", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: timezone_locale (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_toolbar", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbar (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbox", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbox (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_toolbutton", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: toolbutton (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_tooltip", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tooltip (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_translation", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: translation (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_transposeproxymodel", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: transposeproxymodel (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treeview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treeview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_treewidget", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: treewidget (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_trivial_auto_var_init_pattern", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tslib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tslib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_tuiotouch", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: tuiotouch (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undocommand", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undocommand (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undogroup", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undogroup (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undostack", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undostack (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_undoview", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: undoview (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_use_bfd_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_bfd_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_gold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_gold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_lld_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_lld_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_use_mold_linker", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: use_mold_linker (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vaes", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vaes (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_validator", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: validator (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_version_tagging", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: version_tagging (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkgen", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkgen (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_vkkhrdisplay", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vkkhrdisplay (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vnc", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vnc (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vsp2", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vsp2 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_vulkan", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: vulkan (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wasm_exceptions", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_exceptions (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wasm_simd128", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wasm_simd128 (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_wayland", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wayland (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_whatsthis", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: whatsthis (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wheelevent", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wheelevent (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgets", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgets (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_widgettextcontrol", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: widgettextcontrol (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_wizard", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: wizard (from target Qt6::Widgets)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_x86intrin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: x86intrin (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xcb", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_egl_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_egl_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_glx_plugin", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_glx_plugin (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_native_painting", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_native_painting (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_sm", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_sm (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xcb_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xcb_xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xkbcommon_x11", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xkbcommon_x11 (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xlib", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xlib (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_xml", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xml (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstream", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstream (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamreader", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamreader (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xmlstreamwriter", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xmlstreamwriter (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "ON" + }, + { + "name" : "QT_FEATURE_xrender", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: xrender (from target Qt6::Gui)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_FEATURE_zstd", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Qt feature: zstd (from target Qt6::Core)" + } + ], + "type" : "INTERNAL", + "value" : "OFF" + }, + { + "name" : "QT_QMAKE_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "No help, variable specified on the command line." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/bin/qmake.exe" + }, + { + "name" : "Qt6CoreTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6CoreTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools" + }, + { + "name" : "Qt6Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Core." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core" + }, + { + "name" : "Qt6EntryPointPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6EntryPointPrivate." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate" + }, + { + "name" : "Qt6GuiTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6GuiTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools" + }, + { + "name" : "Qt6Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Gui." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui" + }, + { + "name" : "Qt6PrintSupport_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6PrintSupport." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport" + }, + { + "name" : "Qt6WidgetsTools_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6WidgetsTools." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools" + }, + { + "name" : "Qt6Widgets_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6Widgets." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets" + }, + { + "name" : "Qt6ZlibPrivate_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6ZlibPrivate." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate" + }, + { + "name" : "Qt6_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt6." + } + ], + "type" : "PATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6" + }, + { + "name" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_GLSLC_EXECUTABLE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_GLSLC_EXECUTABLE-NOTFOUND" + }, + { + "name" : "Vulkan_INCLUDE_DIR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a file." + } + ], + "type" : "PATH", + "value" : "Vulkan_INCLUDE_DIR-NOTFOUND" + }, + { + "name" : "Vulkan_LIBRARY", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a library." + } + ], + "type" : "FILEPATH", + "value" : "Vulkan_LIBRARY-NOTFOUND" + }, + { + "name" : "WINDEPLOYQT_EXECUTABLE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe" + }, + { + "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "linker supports push/pop state" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + }, + { + "name" : "_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "CMAKE_INSTALL_PREFIX during last run" + } + ], + "type" : "INTERNAL", + "value" : "C:/Program Files (x86)/fontManager" + }, + { + "name" : "fontManager_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app" + }, + { + "name" : "fontManager_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "OFF" + }, + { + "name" : "fontManager_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/cmakeFiles-v1-5bfe8d5a2e610a567591.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/cmakeFiles-v1-5bfe8d5a2e610a567591.json new file mode 100644 index 0000000..0848427 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/cmakeFiles-v1-5bfe8d5a2e610a567591.json @@ -0,0 +1,1460 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + }, + { + "path" : "plugins/CMakeLists.txt" + }, + { + "path" : "plugins/googlefonts/CMakeLists.txt" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake" + }, + { + "path" : "app/CMakeLists.txt" + }, + { + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake" + }, + { + "isExternal" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app", + "source" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/codemodel-v2-b48c50f7f20ad6fae421.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/codemodel-v2-b48c50f7f20ad6fae421.json new file mode 100644 index 0000000..27dc2fa --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/codemodel-v2-b48c50f7f20ad6fae421.json @@ -0,0 +1,166 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "childIndexes" : + [ + 1, + 3 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-.-Debug-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "projectIndex" : 0, + "source" : "." + }, + { + "build" : "plugins", + "childIndexes" : + [ + 2 + ], + "hasInstallRule" : true, + "jsonFile" : "directory-plugins-Debug-432f0029505b84f51ac1.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "plugins" + }, + { + "build" : "plugins/googlefonts", + "hasInstallRule" : true, + "jsonFile" : "directory-plugins.googlefonts-Debug-246f31a755b76fd7c38d.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 1, + "projectIndex" : 0, + "source" : "plugins/googlefonts", + "targetIndexes" : + [ + 3, + 4, + 5, + 6 + ] + }, + { + "build" : "app", + "hasInstallRule" : true, + "jsonFile" : "directory-app-Debug-69030c270d8f93fcf634.json", + "minimumCMakeVersion" : + { + "string" : "3.16" + }, + "parentIndex" : 0, + "projectIndex" : 0, + "source" : "app", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "Debug", + "projects" : + [ + { + "directoryIndexes" : + [ + 0, + 1, + 2, + 3 + ], + "name" : "fontManager", + "targetIndexes" : + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 3, + "id" : "fontManager::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager-Debug-5c35910f89079f7876fd.json", + "name" : "fontManager", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "fontManager_autogen::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager_autogen-Debug-00da2a1ef4c753b128c8.json", + "name" : "fontManager_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 3, + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb", + "jsonFile" : "target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json", + "name" : "fontManager_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts-Debug-6fed711654f90e8d7c35.json", + "name" : "googlefonts", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts_autogen-Debug-63d2a8be7e99871a7dc4.json", + "name" : "googlefonts_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json", + "name" : "googlefonts_autogen_timestamp_deps", + "projectIndex" : 0 + }, + { + "directoryIndex" : 2, + "id" : "qt_internal_plugins::@eb1341fde24df9e9f4d4", + "jsonFile" : "target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json", + "name" : "qt_internal_plugins", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app", + "source" : "C:/Users/herwi/Documents/GitHub/qt/fontManager" + }, + "version" : + { + "major" : 2, + "minor" : 7 + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-.-Debug-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-app-Debug-69030c270d8f93fcf634.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-app-Debug-69030c270d8f93fcf634.json new file mode 100644 index 0000000..22b4ff8 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-app-Debug-69030c270d8f93fcf634.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 64, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "fontManager.exe" + ], + "targetId" : "fontManager::@5f5a17c01335469806cb", + "targetIndex" : 0, + "type" : "target" + } + ], + "paths" : + { + "build" : "app", + "source" : "app" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-plugins-Debug-432f0029505b84f51ac1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-plugins-Debug-432f0029505b84f51ac1.json new file mode 100644 index 0000000..b980c73 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-plugins-Debug-432f0029505b84f51ac1.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : "plugins", + "source" : "plugins" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-plugins.googlefonts-Debug-246f31a755b76fd7c38d.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-plugins.googlefonts-Debug-246f31a755b76fd7c38d.json new file mode 100644 index 0000000..8957301 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/directory-plugins.googlefonts-Debug-246f31a755b76fd7c38d.json @@ -0,0 +1,45 @@ +{ + "backtraceGraph" : + { + "commands" : + [ + "install" + ], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 37, + "parent" : 0 + } + ] + }, + "installers" : + [ + { + "backtrace" : 1, + "component" : "Unspecified", + "destination" : "bin", + "paths" : + [ + "googlefonts.dll" + ], + "targetId" : "googlefonts::@eb1341fde24df9e9f4d4", + "targetIndex" : 3, + "type" : "target" + } + ], + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/index-2024-10-25T13-51-58-0485.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/index-2024-10-25T13-51-58-0485.json new file mode 100644 index 0000000..006396e --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/index-2024-10-25T13-51-58-0485.json @@ -0,0 +1,89 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe", + "cpack" : "C:/dev/Qt/Tools/CMake_64/bin/cpack.exe", + "ctest" : "C:/dev/Qt/Tools/CMake_64/bin/ctest.exe", + "root" : "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 29, + "patch" : 3, + "string" : "3.29.3", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-b48c50f7f20ad6fae421.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + }, + { + "jsonFile" : "cache-v2-3a946ed14265b03d724b.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-5bfe8d5a2e610a567591.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-3a946ed14265b03d724b.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-5bfe8d5a2e610a567591.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-b48c50f7f20ad6fae421.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 7 + } + } + } +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-fontManager-Debug-5c35910f89079f7876fd.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-fontManager-Debug-5c35910f89079f7876fd.json new file mode 100644 index 0000000..6a7a9da --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-fontManager-Debug-5c35910f89079f7876fd.json @@ -0,0 +1,566 @@ +{ + "artifacts" : + [ + { + "path" : "fontManager.exe" + }, + { + "path" : "fontManager.pdb" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_executable", + "_qt_internal_create_executable", + "qt6_add_executable", + "qt_add_executable", + "install", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "find_dependency", + "_qt_internal_find_qt_dependencies", + "add_compile_definitions" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "app/CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 23, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 957, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 644, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 703, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 64, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 47, + "parent" : 0 + }, + { + "file" : 5 + }, + { + "command" : 8, + "file" : 5, + "line" : 7, + "parent" : 7 + }, + { + "file" : 4, + "parent" : 8 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 3, + "parent" : 10 + }, + { + "command" : 7, + "file" : 3, + "line" : 55, + "parent" : 11 + }, + { + "file" : 2, + "parent" : 12 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 13 + }, + { + "command" : 5, + "file" : 0, + "line" : 645, + "parent" : 2 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 7, + "parent" : 16 + }, + { + "command" : 7, + "file" : 7, + "line" : 57, + "parent" : 17 + }, + { + "file" : 6, + "parent" : 18 + }, + { + "command" : 6, + "file" : 6, + "line" : 61, + "parent" : 19 + }, + { + "command" : 7, + "file" : 7, + "line" : 45, + "parent" : 17 + }, + { + "file" : 12, + "parent" : 21 + }, + { + "command" : 10, + "file" : 12, + "line" : 44, + "parent" : 22 + }, + { + "command" : 9, + "file" : 11, + "line" : 143, + "parent" : 23 + }, + { + "command" : 8, + "file" : 10, + "line" : 76, + "parent" : 24 + }, + { + "file" : 9, + "parent" : 25 + }, + { + "command" : 7, + "file" : 9, + "line" : 55, + "parent" : 26 + }, + { + "file" : 8, + "parent" : 27 + }, + { + "command" : 6, + "file" : 8, + "line" : 61, + "parent" : 28 + }, + { + "command" : 6, + "file" : 8, + "line" : 83, + "parent" : 28 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 9 + }, + { + "file" : 14, + "parent" : 31 + }, + { + "command" : 7, + "file" : 14, + "line" : 55, + "parent" : 32 + }, + { + "file" : 13, + "parent" : 33 + }, + { + "command" : 6, + "file" : 13, + "line" : 61, + "parent" : 34 + }, + { + "command" : 11, + "file" : 5, + "line" : 11, + "parent" : 7 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 15, + "define" : "MINGW_HAS_SECURE_API=1" + }, + { + "backtrace" : 15, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 6, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 15, + "define" : "QT_NEEDS_QMAIN" + }, + { + "backtrace" : 36, + "define" : "QT_NO_CAST_FROM_ASCII" + }, + { + "backtrace" : 6, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 15, + "define" : "UNICODE" + }, + { + "backtrace" : 15, + "define" : "WIN32" + }, + { + "backtrace" : 15, + "define" : "WIN64" + }, + { + "backtrace" : 15, + "define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE" + }, + { + "backtrace" : 15, + "define" : "_UNICODE" + }, + { + "backtrace" : 15, + "define" : "_WIN64" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/include" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtCore" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include" + }, + { + "backtrace" : 15, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtGui" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 15, + 15 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "dependencies" : + [ + { + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb" + }, + { + "backtrace" : 0, + "id" : "fontManager_autogen::@5f5a17c01335469806cb" + } + ], + "id" : "fontManager::@5f5a17c01335469806cb", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/fontManager" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g", + "role" : "flags" + }, + { + "fragment" : "-mwindows", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 14, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Core.a", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-lmpr", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-luserenv", + "role" : "libraries" + }, + { + "backtrace" : 29, + "fragment" : "-lmingw32", + "role" : "libraries" + }, + { + "backtrace" : 29, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6EntryPoint.a", + "role" : "libraries" + }, + { + "backtrace" : 30, + "fragment" : "-lshell32", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ld3d11", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ldxgi", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ldxguid", + "role" : "libraries" + }, + { + "backtrace" : 35, + "fragment" : "-ld3d12", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "fontManager", + "nameOnDisk" : "fontManager.exe", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 6, + 7 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1, + 2 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 3, + 5 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 4 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 8 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "app/main.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "app/cmainwindow.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "app/cmainwindow.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 4, + "path" : "app/cmainwindow.ui", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 4, + "path" : "app/ifontprovider.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/include/ui_cmainwindow.h", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp.rule", + "sourceGroupIndex" : 4 + } + ], + "type" : "EXECUTABLE" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-fontManager_autogen-Debug-00da2a1ef4c753b128c8.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-fontManager_autogen-Debug-00da2a1ef4c753b128c8.json new file mode 100644 index 0000000..0adc73f --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-fontManager_autogen-Debug-00da2a1ef4c753b128c8.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "fontManager_autogen::@5f5a17c01335469806cb", + "isGeneratorProvided" : true, + "name" : "fontManager_autogen", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json new file mode 100644 index 0000000..79b87b0 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-fontManager_autogen_timestamp_deps-Debug-96429ab4c87ab51f34d0.json @@ -0,0 +1,31 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "app/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "fontManager_autogen_timestamp_deps::@5f5a17c01335469806cb", + "isGeneratorProvided" : true, + "name" : "fontManager_autogen_timestamp_deps", + "paths" : + { + "build" : "app", + "source" : "app" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-googlefonts-Debug-6fed711654f90e8d7c35.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-googlefonts-Debug-6fed711654f90e8d7c35.json new file mode 100644 index 0000000..6afe86c --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-googlefonts-Debug-6fed711654f90e8d7c35.json @@ -0,0 +1,557 @@ +{ + "artifacts" : + [ + { + "path" : "googlefonts.dll" + }, + { + "path" : "googlefonts.pdb" + } + ], + "backtrace" : 4, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "_qt_internal_add_library", + "qt6_add_plugin", + "qt_add_plugin", + "install", + "target_link_libraries", + "set_target_properties", + "include", + "find_package", + "target_compile_definitions", + "add_compile_definitions", + "target_include_directories", + "target_sources", + "qt6_extract_metatypes", + "qt6_finalize_target" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "plugins/googlefonts/CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake:2648:EVAL" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 3, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 2657, + "parent" : 1 + }, + { + "command" : 1, + "file" : 0, + "line" : 2557, + "parent" : 2 + }, + { + "command" : 0, + "file" : 0, + "line" : 2767, + "parent" : 3 + }, + { + "command" : 4, + "file" : 1, + "line" : 37, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 27, + "parent" : 0 + }, + { + "command" : 5, + "file" : 1, + "line" : 20, + "parent" : 0 + }, + { + "file" : 5 + }, + { + "command" : 8, + "file" : 5, + "line" : 7, + "parent" : 8 + }, + { + "file" : 4, + "parent" : 9 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 10 + }, + { + "file" : 3, + "parent" : 11 + }, + { + "command" : 7, + "file" : 3, + "line" : 57, + "parent" : 12 + }, + { + "file" : 2, + "parent" : 13 + }, + { + "command" : 6, + "file" : 2, + "line" : 61, + "parent" : 14 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 10 + }, + { + "file" : 7, + "parent" : 16 + }, + { + "command" : 7, + "file" : 7, + "line" : 55, + "parent" : 17 + }, + { + "file" : 6, + "parent" : 18 + }, + { + "command" : 6, + "file" : 6, + "line" : 61, + "parent" : 19 + }, + { + "command" : 8, + "file" : 1, + "line" : 9, + "parent" : 0 + }, + { + "file" : 4, + "parent" : 21 + }, + { + "command" : 8, + "file" : 4, + "line" : 181, + "parent" : 22 + }, + { + "file" : 9, + "parent" : 23 + }, + { + "command" : 7, + "file" : 9, + "line" : 55, + "parent" : 24 + }, + { + "file" : 8, + "parent" : 25 + }, + { + "command" : 6, + "file" : 8, + "line" : 61, + "parent" : 26 + }, + { + "command" : 9, + "file" : 0, + "line" : 2624, + "parent" : 2 + }, + { + "command" : 10, + "file" : 5, + "line" : 11, + "parent" : 8 + }, + { + "command" : 11, + "file" : 1, + "line" : 16, + "parent" : 0 + }, + { + "file" : 1, + "line" : -1, + "parent" : 0 + }, + { + "command" : 14, + "file" : 10, + "line" : 1, + "parent" : 31 + }, + { + "command" : 13, + "file" : 0, + "line" : 875, + "parent" : 32 + }, + { + "command" : 12, + "file" : 0, + "line" : 1512, + "parent" : 33 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-DQT_QML_DEBUG -g -fdiagnostics-color=always" + } + ], + "defines" : + [ + { + "backtrace" : 7, + "define" : "MINGW_HAS_SECURE_API=1" + }, + { + "backtrace" : 7, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 28, + "define" : "QT_DEPRECATED_WARNINGS" + }, + { + "backtrace" : 7, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 29, + "define" : "QT_NO_CAST_FROM_ASCII" + }, + { + "backtrace" : 28, + "define" : "QT_PLUGIN" + }, + { + "backtrace" : 6, + "define" : "QT_PRINTSUPPORT_LIB" + }, + { + "backtrace" : 7, + "define" : "QT_WIDGETS_LIB" + }, + { + "backtrace" : 7, + "define" : "UNICODE" + }, + { + "backtrace" : 7, + "define" : "WIN32" + }, + { + "backtrace" : 7, + "define" : "WIN64" + }, + { + "backtrace" : 7, + "define" : "_ENABLE_EXTENDED_ALIGNED_STORAGE" + }, + { + "backtrace" : 7, + "define" : "_UNICODE" + }, + { + "backtrace" : 7, + "define" : "_WIN64" + }, + { + "define" : "googlefonts_EXPORTS" + } + ], + "includes" : + [ + { + "backtrace" : 0, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/include" + }, + { + "backtrace" : 30, + "path" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/../../app" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtCore" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtGui" + }, + { + "backtrace" : 7, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets" + }, + { + "backtrace" : 6, + "isSystem" : true, + "path" : "C:/dev/Qt/6.8.0/mingw_64/include/QtPrintSupport" + } + ], + "language" : "CXX", + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "backtrace" : 0, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4" + }, + { + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4" + } + ], + "id" : "googlefonts::@eb1341fde24df9e9f4d4", + "install" : + { + "destinations" : + [ + { + "backtrace" : 5, + "path" : "bin" + } + ], + "prefix" : + { + "path" : "C:/Program Files (x86)/fontManager" + } + }, + "link" : + { + "commandFragments" : + [ + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 6, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6PrintSupport.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 7, + "fragment" : "C:\\dev\\Qt\\6.8.0\\mingw_64\\lib\\libQt6Core.a", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "-lmpr", + "role" : "libraries" + }, + { + "backtrace" : 15, + "fragment" : "-luserenv", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ld3d11", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ldxgi", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ldxguid", + "role" : "libraries" + }, + { + "backtrace" : 20, + "fragment" : "-ld3d12", + "role" : "libraries" + }, + { + "backtrace" : 27, + "fragment" : "-lcomdlg32", + "role" : "libraries" + }, + { + "backtrace" : 27, + "fragment" : "-lwinspool", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "googlefonts", + "nameOnDisk" : "googlefonts.dll", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sourceGroups" : + [ + { + "name" : "Source Files\\Generated", + "sourceIndexes" : + [ + 0, + 4 + ] + }, + { + "name" : "Source Files", + "sourceIndexes" : + [ + 1 + ] + }, + { + "name" : "Header Files", + "sourceIndexes" : + [ + 2 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 3 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 5, + 6, + 7 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 4, + "compileGroupIndex" : 0, + "path" : "plugins/googlefonts/googlefonts.cpp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 4, + "path" : "plugins/googlefonts/googlefonts.h", + "sourceGroupIndex" : 2 + }, + { + "backtrace" : 34, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen", + "sourceGroupIndex" : 3 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp.rule", + "sourceGroupIndex" : 4 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.rule", + "sourceGroupIndex" : 4 + } + ], + "type" : "MODULE_LIBRARY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-googlefonts_autogen-Debug-63d2a8be7e99871a7dc4.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-googlefonts_autogen-Debug-63d2a8be7e99871a7dc4.json new file mode 100644 index 0000000..8b54868 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-googlefonts_autogen-Debug-63d2a8be7e99871a7dc4.json @@ -0,0 +1,75 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "googlefonts_autogen::@eb1341fde24df9e9f4d4", + "isGeneratorProvided" : true, + "name" : "googlefonts_autogen", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json new file mode 100644 index 0000000..0136c24 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-googlefonts_autogen_timestamp_deps-Debug-cd463616b1e1299578f1.json @@ -0,0 +1,31 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "googlefonts_autogen_timestamp_deps::@eb1341fde24df9e9f4d4", + "isGeneratorProvided" : true, + "name" : "googlefonts_autogen_timestamp_deps", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json new file mode 100644 index 0000000..206eed3 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.cmake/api/v1/reply/target-qt_internal_plugins-Debug-dd9e135f30a1501511e1.json @@ -0,0 +1,68 @@ +{ + "backtrace" : 3, + "backtraceGraph" : + { + "commands" : + [ + "add_custom_target", + "qt6_add_plugin", + "qt_add_plugin", + "add_dependencies" + ], + "files" : + [ + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake", + "plugins/googlefonts/CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 1 + }, + { + "command" : 2, + "file" : 1, + "line" : 4, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 2657, + "parent" : 1 + }, + { + "command" : 0, + "file" : 0, + "line" : 2631, + "parent" : 2 + }, + { + "command" : 3, + "file" : 0, + "line" : 2634, + "parent" : 2 + } + ] + }, + "dependencies" : + [ + { + "backtrace" : 4, + "id" : "googlefonts::@eb1341fde24df9e9f4d4" + } + ], + "folder" : + { + "name" : "QtInternalTargets" + }, + "id" : "qt_internal_plugins::@eb1341fde24df9e9f4d4", + "name" : "qt_internal_plugins", + "paths" : + { + "build" : "plugins/googlefonts", + "source" : "plugins/googlefonts" + }, + "sources" : [], + "type" : "UTILITY" +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.ninja_deps b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.ninja_deps new file mode 100644 index 0000000..5802a2c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.ninja_deps differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.ninja_log b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.ninja_log new file mode 100644 index 0000000..9423238 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.ninja_log @@ -0,0 +1,65 @@ +# ninja log v6 +554 603 7515674063906706 plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json 3fe68a44c36b559d +29 493 7515674288259632 app/fontManager_autogen/timestamp ad045668cd869bf2 +29 493 7515674288259632 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp ad045668cd869bf2 +29 493 7515674288259632 app/fontManager_autogen/mocs_compilation.cpp ad045668cd869bf2 +29 493 7515674288259632 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/mocs_compilation.cpp ad045668cd869bf2 +494 1887 7515674288799845 app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj 221c6542654aedb +497 1928 7515674288829859 app/CMakeFiles/fontManager.dir/main.cpp.obj 4378d72698095444 +501 2280 7515674288869826 app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj 270b1c5a44494229 +2281 2427 7515674306664453 fontManager.exe b0a4f389c0b6314f +33 493 7515674062409388 plugins/googlefonts/googlefonts_autogen/timestamp ba6097d79db01a7f +33 493 7515674062409388 plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp ba6097d79db01a7f +494 553 7515674063401858 plugins/googlefonts/meta_types/googlefonts_json_file_list.txt 20deabdf21e2b6d4 +33 493 7515674062409388 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp ba6097d79db01a7f +603 1779 7515674063946655 plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj 2bf099e2e4401834 +33 493 7515674062409388 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp ba6097d79db01a7f +606 1744 7515674063976676 plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj f6451de2b96b247e +554 603 7515674063906706 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen 3fe68a44c36b559d +494 553 7515674063401858 plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp 20deabdf21e2b6d4 +494 553 7515674063401858 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt 20deabdf21e2b6d4 +554 603 7515674063906706 plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen 3fe68a44c36b559d +494 553 7515674063401858 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp 20deabdf21e2b6d4 +554 603 7515674063906706 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json 3fe68a44c36b559d +6 29 7515673159592177 CMakeFiles/clean.additional 656b40723e7b5308 +29 50 7515673159817401 clean 51d9c87d90e416c2 +33 153 7515675207414836 plugins/googlefonts/googlefonts_autogen/timestamp ba6097d79db01a7f +33 153 7515675207414836 plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp ba6097d79db01a7f +33 153 7515675207414836 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp ba6097d79db01a7f +33 153 7515675207414836 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp ba6097d79db01a7f +153 178 7515675208827933 plugins/googlefonts/meta_types/googlefonts_json_file_list.txt 20deabdf21e2b6d4 +153 178 7515675208827933 plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp 20deabdf21e2b6d4 +153 178 7515675208827933 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt 20deabdf21e2b6d4 +153 178 7515675208827933 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp 20deabdf21e2b6d4 +178 217 7515675208870642 plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen 3fe68a44c36b559d +178 217 7515675208870642 plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json 3fe68a44c36b559d +178 217 7515675208870642 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen 3fe68a44c36b559d +178 217 7515675208870642 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json 3fe68a44c36b559d +217 320 7515675209261721 googlefonts.dll 28e043e87c38b50a +40 179 7515676109319087 app/fontManager_autogen/timestamp ad045668cd869bf2 +40 179 7515676109319087 app/fontManager_autogen/mocs_compilation.cpp ad045668cd869bf2 +40 179 7515676109319087 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp ad045668cd869bf2 +40 179 7515676109319087 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/mocs_compilation.cpp ad045668cd869bf2 +35 491 7515676113219959 plugins/googlefonts/googlefonts_autogen/timestamp ba6097d79db01a7f +35 491 7515676113219959 plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp ba6097d79db01a7f +35 491 7515676113219959 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp ba6097d79db01a7f +35 491 7515676113219959 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp ba6097d79db01a7f +492 530 7515676114179767 plugins/googlefonts/meta_types/googlefonts_json_file_list.txt 20deabdf21e2b6d4 +492 530 7515676114179767 plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp 20deabdf21e2b6d4 +492 530 7515676114179767 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt 20deabdf21e2b6d4 +492 530 7515676114179767 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp 20deabdf21e2b6d4 +530 574 7515676114219772 plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen 3fe68a44c36b559d +530 574 7515676114219772 plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json 3fe68a44c36b559d +530 574 7515676114219772 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen 3fe68a44c36b559d +530 574 7515676114219772 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json 3fe68a44c36b559d +574 1990 7515676114661866 plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj 2bf099e2e4401834 +584 2109 7515676114761859 plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj f6451de2b96b247e +180 2204 7515676110721022 app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj 270b1c5a44494229 +2109 2228 7515676130006000 googlefonts.dll 28e043e87c38b50a +2204 2375 7515676130961314 fontManager.exe b0a4f389c0b6314f +10 148 7515676375261058 app/fontManager_autogen/timestamp ad045668cd869bf2 +10 148 7515676375261058 app/fontManager_autogen/mocs_compilation.cpp ad045668cd869bf2 +10 148 7515676375261058 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp ad045668cd869bf2 +10 148 7515676375261058 C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/mocs_compilation.cpp ad045668cd869bf2 +148 1812 7515676376646265 app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj 270b1c5a44494229 +1812 1946 7515676393286356 fontManager.exe b0a4f389c0b6314f diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qt/QtDeploySupport.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qt/QtDeploySupport.cmake new file mode 100644 index 0000000..90e7cd2 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qt/QtDeploySupport.cmake @@ -0,0 +1,69 @@ +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 "") +endif() + +# These are internal implementation details. They may be removed at any time. +set(__QT_DEPLOY_SYSTEM_NAME "Windows") +set(__QT_DEPLOY_IS_SHARED_LIBS_BUILD "ON") +set(__QT_DEPLOY_TOOL "C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe") +set(__QT_DEPLOY_IMPL_DIR "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.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 "C:/dev/Qt/6.8.0/mingw_64") +set(__QT_DEPLOY_QT_INSTALL_BINS "bin") +set(__QT_DEPLOY_QT_INSTALL_DATA ".") +set(__QT_DEPLOY_QT_INSTALL_LIBEXECS "bin") +set(__QT_DEPLOY_QT_INSTALL_PLUGINS "plugins") +set(__QT_DEPLOY_QT_INSTALL_TRANSLATIONS "translations") +set(__QT_DEPLOY_TARGET_QT_PATHS_PATH "C:/dev/Qt/6.8.0/mingw_64/bin/qtpaths6.exe") +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 + "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qt/QtDeployTargets.cmake" + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDeploySupport.cmake" +) +foreach(__qt_deploy_support_file IN LISTS __qt_deploy_support_files) + include("${__qt_deploy_support_file}") +endforeach() + +unset(__qt_deploy_support_file) +unset(__qt_deploy_support_files) diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qt/QtDeployTargets.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qt/QtDeployTargets.cmake new file mode 100644 index 0000000..6525b77 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qt/QtDeployTargets.cmake @@ -0,0 +1,6 @@ +set(__QT_DEPLOY_TARGET_googlefonts_FILE C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/googlefonts.dll) +set(__QT_DEPLOY_TARGET_googlefonts_TYPE MODULE_LIBRARY) +set(__QT_DEPLOY_TARGET_googlefonts_RUNTIME_DLLS C:/dev/Qt/6.8.0/mingw_64/bin/Qt6PrintSupport.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Widgets.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Gui.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Core.dll) +set(__QT_DEPLOY_TARGET_fontManager_FILE C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager.exe) +set(__QT_DEPLOY_TARGET_fontManager_TYPE EXECUTABLE) +set(__QT_DEPLOY_TARGET_fontManager_RUNTIME_DLLS C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Widgets.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Gui.dll;C:/dev/Qt/6.8.0/mingw_64/bin/Qt6Core.dll) diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/LICENSE.conan b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/LICENSE.conan new file mode 100644 index 0000000..541f5a3 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/LICENSE.conan @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2019 JFrog + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake new file mode 100644 index 0000000..c797138 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake @@ -0,0 +1,272 @@ +# +# Internal Qt Creator variable reference +# +foreach(qtcreator_var + QT_QMAKE_EXECUTABLE CMAKE_PREFIX_PATH CMAKE_C_COMPILER CMAKE_CXX_COMPILER + CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELWITHDEBINFO) + set(__just_reference_${qtcreator_var} ${${qtcreator_var}}) +endforeach() + +if (EXISTS "${CMAKE_SOURCE_DIR}/QtCreatorPackageManager.cmake") + include("${CMAKE_SOURCE_DIR}/QtCreatorPackageManager.cmake") +endif() + +if (QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP) + return() +endif() +option(QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP "Skip Qt Creator's package manager auto-setup" OFF) + +# Store the C/C++ object output extension +if (CMAKE_VERSION GREATER_EQUAL "3.19") + cmake_language(DEFER CALL set CMAKE_C_OUTPUT_EXTENSION "${CMAKE_C_OUTPUT_EXTENSION}" CACHE STRING "" FORCE) + cmake_language(DEFER CALL set CMAKE_CXX_OUTPUT_EXTENSION "${CMAKE_CXX_OUTPUT_EXTENSION}" CACHE STRING "" FORCE) +endif() + +macro(qtc_auto_setup_compiler_standard toolchainFile) + foreach(lang_var C CXX CUDA OBJC OBJCXX) + foreach(prop_var STANDARD STANDARD_REQUIRED EXTENSIONS) + if (CMAKE_${lang_var}_${prop_var}) + file(APPEND "${toolchainFile}" + "set(CMAKE_${lang_var}_${prop_var} ${CMAKE_${lang_var}_${prop_var}})\n") + endif() + endforeach() + endforeach() + + # Forward important CMake variables to the package manager in the toolchain file + foreach(fwd_var CMAKE_MSVC_RUNTIME_LIBRARY CMAKE_SYSROOT CMAKE_OSX_SYSROOT CMAKE_OSX_ARCHITECTURES) + if (${fwd_var}) + file(APPEND "${toolchainFile}" + "set(${fwd_var} ${${fwd_var}})\n") + endif() + endforeach() +endmacro() + +# +# conan +# +macro(qtc_auto_setup_conan) + foreach(file conanfile.txt conanfile.py) + if (EXISTS "${CMAKE_SOURCE_DIR}/${file}") + set(conanfile_txt "${CMAKE_SOURCE_DIR}/${file}") + break() + endif() + endforeach() + + if (conanfile_txt AND NOT QT_CREATOR_SKIP_CONAN_SETUP) + option(QT_CREATOR_SKIP_CONAN_SETUP "Skip Qt Creator's conan package manager auto-setup" OFF) + set(QT_CREATOR_CONAN_BUILD_POLICY "missing" CACHE STRING "Qt Creator's conan package manager auto-setup build policy. This is used for the BUILD property of cmake_conan_run") + + find_program(conan_program conan) + if (NOT conan_program) + message(WARNING "Qt Creator: conan executable not found. " + "Package manager auto-setup will be skipped. " + "To disable this warning set QT_CREATOR_SKIP_CONAN_SETUP to ON.") + return() + endif() + execute_process(COMMAND ${conan_program} --version + RESULT_VARIABLE result_code + OUTPUT_VARIABLE conan_version_output + ERROR_VARIABLE conan_version_output) + if (NOT result_code EQUAL 0) + message(FATAL_ERROR "conan --version failed='${result_code}: ${conan_version_output}") + endif() + + string(REGEX REPLACE ".*Conan version ([0-9].[0-9]).*" "\\1" conan_version "${conan_version_output}") + + set(conanfile_timestamp_file "${CMAKE_BINARY_DIR}/conan-dependencies/conanfile.timestamp") + file(TIMESTAMP "${conanfile_txt}" conanfile_timestamp) + + set(do_conan_installation ON) + if (EXISTS "${conanfile_timestamp_file}") + file(READ "${conanfile_timestamp_file}" old_conanfile_timestamp) + if ("${conanfile_timestamp}" STREQUAL "${old_conanfile_timestamp}") + set(do_conan_installation OFF) + endif() + endif() + + set(conanfile_build_policy_file "${CMAKE_BINARY_DIR}/conan-dependencies/conanfile.buildpolicy") + if (EXISTS "${conanfile_build_policy_file}") + file(READ "${conanfile_build_policy_file}" build_policy) + if (NOT "${build_policy}" STREQUAL "${QT_CREATOR_CONAN_BUILD_POLICY}") + set(do_conan_installation ON) + endif() + endif() + + if (do_conan_installation) + message(STATUS "Qt Creator: conan package manager auto-setup. " + "Skip this step by setting QT_CREATOR_SKIP_CONAN_SETUP to ON.") + + file(COPY "${conanfile_txt}" DESTINATION "${CMAKE_BINARY_DIR}/conan-dependencies/") + + file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" " + set(CMAKE_C_COMPILER \"${CMAKE_C_COMPILER}\") + set(CMAKE_CXX_COMPILER \"${CMAKE_CXX_COMPILER}\") + ") + qtc_auto_setup_compiler_standard("${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake") + + if (CMAKE_TOOLCHAIN_FILE) + file(APPEND "${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" + "include(\"${CMAKE_TOOLCHAIN_FILE}\")\n") + endif() + + file(WRITE "${CMAKE_BINARY_DIR}/conan-dependencies/CMakeLists.txt" " + cmake_minimum_required(VERSION 3.15) + + unset(CMAKE_PROJECT_INCLUDE_BEFORE CACHE) + project(conan-setup) + + if (${conan_version} VERSION_GREATER_EQUAL 2.0) + set(CONAN_COMMAND \"${conan_program}\") + include(\"${CMAKE_CURRENT_LIST_DIR}/conan_provider.cmake\") + conan_profile_detect_default() + detect_host_profile(\"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\") + + set(build_types \${CMAKE_BUILD_TYPE}) + if (CMAKE_CONFIGURATION_TYPES) + set(build_types \${CMAKE_CONFIGURATION_TYPES}) + endif() + + foreach(type \${build_types}) + conan_install( + -pr \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_host_profile\" + --build=${QT_CREATOR_CONAN_BUILD_POLICY} + -s build_type=\${type} + -g CMakeDeps) + endforeach() + + get_property(CONAN_INSTALL_SUCCESS GLOBAL PROPERTY CONAN_INSTALL_SUCCESS) + if (CONAN_INSTALL_SUCCESS) + get_property(CONAN_GENERATORS_FOLDER GLOBAL PROPERTY CONAN_GENERATORS_FOLDER) + file(TO_CMAKE_PATH \"\${CONAN_GENERATORS_FOLDER}\" CONAN_GENERATORS_FOLDER) + file(WRITE \"${CMAKE_BINARY_DIR}/conan-dependencies/conan_paths.cmake\" \" + list(PREPEND CMAKE_PREFIX_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(PREPEND CMAKE_MODULE_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(PREPEND CMAKE_FIND_ROOT_PATH \\\"\${CONAN_GENERATORS_FOLDER}\\\") + list(REMOVE_DUPLICATES CMAKE_PREFIX_PATH) + list(REMOVE_DUPLICATES CMAKE_MODULE_PATH) + list(REMOVE_DUPLICATES CMAKE_FIND_ROOT_PATH) + set(CMAKE_PREFIX_PATH \\\"\\\${CMAKE_PREFIX_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + set(CMAKE_MODULE_PATH \\\"\\\${CMAKE_MODULE_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + set(CMAKE_FIND_ROOT_PATH \\\"\\\${CMAKE_FIND_ROOT_PATH}\\\" CACHE STRING \\\"\\\" FORCE) + \") + endif() + else() + include(\"${CMAKE_CURRENT_LIST_DIR}/conan.cmake\") + conan_cmake_run( + CONANFILE \"${conanfile_txt}\" + INSTALL_FOLDER \"${CMAKE_BINARY_DIR}/conan-dependencies\" + GENERATORS cmake_paths cmake_find_package json + BUILD ${QT_CREATOR_CONAN_BUILD_POLICY} + ENV CONAN_CMAKE_TOOLCHAIN_FILE=\"${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake\" + ) + endif() + ") + + if (NOT DEFINED CMAKE_BUILD_TYPE AND NOT DEFINED CMAKE_CONFIGURATION_TYPES) + set(CMAKE_CONFIGURATION_TYPES "Debug;Release") + endif() + + execute_process(COMMAND ${CMAKE_COMMAND} + -S "${CMAKE_BINARY_DIR}/conan-dependencies/" + -B "${CMAKE_BINARY_DIR}/conan-dependencies/build" + -C "${CMAKE_BINARY_DIR}/qtcsettings.cmake" + -D "CMAKE_TOOLCHAIN_FILE=${CMAKE_BINARY_DIR}/conan-dependencies/toolchain.cmake" + -G ${CMAKE_GENERATOR} + -D CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} + -D "CMAKE_CONFIGURATION_TYPES=${CMAKE_CONFIGURATION_TYPES}" + RESULT_VARIABLE result + ) + if (result EQUAL 0) + file(WRITE "${conanfile_timestamp_file}" "${conanfile_timestamp}") + file(WRITE "${conanfile_build_policy_file}" ${QT_CREATOR_CONAN_BUILD_POLICY}) + else() + message(WARNING "Qt Creator's conan package manager auto-setup failed. Consider setting " + "QT_CREATOR_SKIP_CONAN_SETUP to ON and reconfigure to skip this step.") + return() + endif() + endif() + + include("${CMAKE_BINARY_DIR}/conan-dependencies/conan_paths.cmake") + endif() + unset(conanfile_txt) +endmacro() +qtc_auto_setup_conan() + +# +# vcpkg +# +macro(qtc_auto_setup_vcpkg) + if (EXISTS "${CMAKE_SOURCE_DIR}/vcpkg.json" AND NOT QT_CREATOR_SKIP_VCPKG_SETUP) + option(QT_CREATOR_SKIP_VCPKG_SETUP "Skip Qt Creator's vcpkg package manager auto-setup" OFF) + + find_program(vcpkg_program vcpkg + PATHS $ENV{VCPKG_ROOT} ${CMAKE_SOURCE_DIR}/vcpkg + NO_DEFAULT_PATH + ) + if (NOT vcpkg_program) + message(WARNING "Qt Creator: vcpkg executable not found. " + "Package manager auto-setup will be skipped. " + "To disable this warning set QT_CREATOR_SKIP_VCPKG_SETUP to ON.") + return() + endif() + execute_process(COMMAND ${vcpkg_program} version + RESULT_VARIABLE result_code + OUTPUT_VARIABLE vcpkg_version_output + ERROR_VARIABLE vcpkg_version_output) + if (NOT result_code EQUAL 0) + message(FATAL_ERROR "vcpkg version failed='${result_code}: ${vcpkg_version_output}") + endif() + + # Resolve any symlinks + get_filename_component(vpkg_program_real_path ${vcpkg_program} REALPATH) + get_filename_component(vpkg_root ${vpkg_program_real_path} DIRECTORY) + + if (NOT EXISTS "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + message(STATUS "Qt Creator: vcpkg package manager auto-setup. " + "Skip this step by setting QT_CREATOR_SKIP_VCPKG_SETUP to ON.") + + file(WRITE "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" " + set(CMAKE_C_COMPILER \"${CMAKE_C_COMPILER}\") + set(CMAKE_CXX_COMPILER \"${CMAKE_CXX_COMPILER}\") + ") + qtc_auto_setup_compiler_standard("${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + + if (CMAKE_TOOLCHAIN_FILE AND NOT + CMAKE_TOOLCHAIN_FILE STREQUAL "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake") + file(APPEND "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" + "include(\"${CMAKE_TOOLCHAIN_FILE}\")\n") + endif() + + if (VCPKG_TARGET_TRIPLET) + set(vcpkg_triplet ${VCPKG_TARGET_TRIPLET}) + else() + if (WIN32) + set(vcpkg_triplet x64-mingw-static) + if (CMAKE_CXX_COMPILER MATCHES ".*/(.*)/cl.exe") + set(vcpkg_triplet ${CMAKE_MATCH_1}-windows) + endif() + elseif(APPLE) + set(vcpkg_triplet x64-osx) + else() + set(vcpkg_triplet x64-linux) + endif() + endif() + + file(APPEND "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" " + set(VCPKG_TARGET_TRIPLET ${vcpkg_triplet}) + include(\"${vpkg_root}/scripts/buildsystems/vcpkg.cmake\") + ") + endif() + + set(CMAKE_TOOLCHAIN_FILE "${CMAKE_BINARY_DIR}/vcpkg-dependencies/toolchain.cmake" CACHE PATH "" FORCE) + + # Save CMAKE_PREFIX_PATH and CMAKE_MODULE_PATH as cache variables + if (CMAKE_VERSION GREATER_EQUAL "3.19") + cmake_language(DEFER CALL list REMOVE_DUPLICATES CMAKE_PREFIX_PATH) + cmake_language(DEFER CALL list REMOVE_DUPLICATES CMAKE_MODULE_PATH) + cmake_language(DEFER CALL set CMAKE_PREFIX_PATH "${CMAKE_PREFIX_PATH}" CACHE STRING "" FORCE) + cmake_language(DEFER CALL set CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" CACHE STRING "" FORCE) + endif() + endif() +endmacro() +qtc_auto_setup_vcpkg() diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/conan.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/conan.cmake new file mode 100644 index 0000000..4f5f67e --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/conan.cmake @@ -0,0 +1,1026 @@ +# The MIT License (MIT) + +# Copyright (c) 2018 JFrog + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + + + +# This file comes from: https://github.com/conan-io/cmake-conan. Please refer +# to this repository for issues and documentation. + +# Its purpose is to wrap and launch Conan C/C++ Package Manager when cmake is called. +# It will take CMake current settings (os, compiler, compiler version, architecture) +# and translate them to conan settings for installing and retrieving dependencies. + +# It is intended to facilitate developers building projects that have conan dependencies, +# but it is only necessary on the end-user side. It is not necessary to create conan +# packages, in fact it shouldn't be use for that. Check the project documentation. + +# version: 0.18.1 + +include(CMakeParseArguments) + +function(_get_msvc_ide_version result) + set(${result} "" PARENT_SCOPE) + if(NOT MSVC_VERSION VERSION_LESS 1400 AND MSVC_VERSION VERSION_LESS 1500) + set(${result} 8 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1500 AND MSVC_VERSION VERSION_LESS 1600) + set(${result} 9 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1600 AND MSVC_VERSION VERSION_LESS 1700) + set(${result} 10 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1700 AND MSVC_VERSION VERSION_LESS 1800) + set(${result} 11 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1800 AND MSVC_VERSION VERSION_LESS 1900) + set(${result} 12 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1900 AND MSVC_VERSION VERSION_LESS 1910) + set(${result} 14 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1910 AND MSVC_VERSION VERSION_LESS 1920) + set(${result} 15 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1920 AND MSVC_VERSION VERSION_LESS 1930) + set(${result} 16 PARENT_SCOPE) + elseif(NOT MSVC_VERSION VERSION_LESS 1930 AND MSVC_VERSION VERSION_LESS 1940) + set(${result} 17 PARENT_SCOPE) + else() + message(FATAL_ERROR "Conan: Unknown MSVC compiler version [${MSVC_VERSION}]") + endif() +endfunction() + +macro(_conan_detect_build_type) + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_BUILD_TYPE) + set(_CONAN_SETTING_BUILD_TYPE ${ARGUMENTS_BUILD_TYPE}) + elseif(CMAKE_BUILD_TYPE) + set(_CONAN_SETTING_BUILD_TYPE ${CMAKE_BUILD_TYPE}) + else() + message(FATAL_ERROR "Please specify in command line CMAKE_BUILD_TYPE (-DCMAKE_BUILD_TYPE=Release)") + endif() + + string(TOUPPER ${_CONAN_SETTING_BUILD_TYPE} _CONAN_SETTING_BUILD_TYPE_UPPER) + if (_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "DEBUG") + set(_CONAN_SETTING_BUILD_TYPE "Debug") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "RELEASE") + set(_CONAN_SETTING_BUILD_TYPE "Release") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "RELWITHDEBINFO") + set(_CONAN_SETTING_BUILD_TYPE "RelWithDebInfo") + elseif(_CONAN_SETTING_BUILD_TYPE_UPPER STREQUAL "MINSIZEREL") + set(_CONAN_SETTING_BUILD_TYPE "MinSizeRel") + endif() +endmacro() + +macro(_conan_check_system_name) + #handle -s os setting + if(CMAKE_SYSTEM_NAME AND NOT CMAKE_SYSTEM_NAME STREQUAL "Generic") + #use default conan os setting if CMAKE_SYSTEM_NAME is not defined + set(CONAN_SYSTEM_NAME ${CMAKE_SYSTEM_NAME}) + if(${CMAKE_SYSTEM_NAME} STREQUAL "Darwin") + set(CONAN_SYSTEM_NAME Macos) + endif() + if(${CMAKE_SYSTEM_NAME} STREQUAL "QNX") + set(CONAN_SYSTEM_NAME Neutrino) + endif() + set(CONAN_SUPPORTED_PLATFORMS Windows Linux Macos Android iOS FreeBSD WindowsStore WindowsCE watchOS tvOS FreeBSD SunOS AIX Arduino Emscripten Neutrino) + list (FIND CONAN_SUPPORTED_PLATFORMS "${CONAN_SYSTEM_NAME}" _index) + if (${_index} GREATER -1) + #check if the cmake system is a conan supported one + set(_CONAN_SETTING_OS ${CONAN_SYSTEM_NAME}) + else() + message(FATAL_ERROR "cmake system ${CONAN_SYSTEM_NAME} is not supported by conan. Use one of ${CONAN_SUPPORTED_PLATFORMS}") + endif() + endif() +endmacro() + +macro(_conan_check_language) + get_property(_languages GLOBAL PROPERTY ENABLED_LANGUAGES) + if (";${_languages};" MATCHES ";CXX;") + set(LANGUAGE CXX) + set(USING_CXX 1) + elseif (";${_languages};" MATCHES ";C;") + set(LANGUAGE C) + set(USING_CXX 0) + else () + message(FATAL_ERROR "Conan: Neither C or C++ was detected as a language for the project. Unabled to detect compiler version.") + endif() +endmacro() + +macro(_conan_detect_compiler) + + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_ARCH) + set(_CONAN_SETTING_ARCH ${ARGUMENTS_ARCH}) + endif() + + if(USING_CXX) + set(_CONAN_SETTING_COMPILER_CPPSTD ${CMAKE_CXX_STANDARD}) + endif() + + if (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL GNU) + # using GCC + # TODO: Handle other params + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(COMPILER_VERSION ${MAJOR}.${MINOR}) + if(${MAJOR} GREATER 4) + set(COMPILER_VERSION ${MAJOR}) + endif() + set(_CONAN_SETTING_COMPILER gcc) + set(_CONAN_SETTING_COMPILER_VERSION ${COMPILER_VERSION}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Intel) + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(COMPILER_VERSION ${MAJOR}.${MINOR}) + set(_CONAN_SETTING_COMPILER intel) + set(_CONAN_SETTING_COMPILER_VERSION ${COMPILER_VERSION}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL AppleClang) + # using AppleClang + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(_CONAN_SETTING_COMPILER apple-clang) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}.${MINOR}) + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Clang + AND NOT "${CMAKE_${LANGUAGE}_COMPILER_FRONTEND_VARIANT}" STREQUAL "MSVC" + AND NOT "${CMAKE_${LANGUAGE}_SIMULATE_ID}" STREQUAL "MSVC") + + string(REPLACE "." ";" VERSION_LIST ${CMAKE_${LANGUAGE}_COMPILER_VERSION}) + list(GET VERSION_LIST 0 MAJOR) + list(GET VERSION_LIST 1 MINOR) + set(_CONAN_SETTING_COMPILER clang) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}.${MINOR}) + if(APPLE) + cmake_policy(GET CMP0025 APPLE_CLANG_POLICY) + if(NOT APPLE_CLANG_POLICY STREQUAL NEW) + message(STATUS "Conan: APPLE and Clang detected. Assuming apple-clang compiler. Set CMP0025 to avoid it") + set(_CONAN_SETTING_COMPILER apple-clang) + endif() + endif() + if(${_CONAN_SETTING_COMPILER} STREQUAL clang AND ${MAJOR} GREATER 7) + set(_CONAN_SETTING_COMPILER_VERSION ${MAJOR}) + endif() + if (USING_CXX) + conan_cmake_detect_unix_libcxx(_LIBCXX) + set(_CONAN_SETTING_COMPILER_LIBCXX ${_LIBCXX}) + endif () + elseif(${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL MSVC + OR (${CMAKE_${LANGUAGE}_COMPILER_ID} STREQUAL Clang + AND "${CMAKE_${LANGUAGE}_COMPILER_FRONTEND_VARIANT}" STREQUAL "MSVC" + AND "${CMAKE_${LANGUAGE}_SIMULATE_ID}" STREQUAL "MSVC")) + + set(_VISUAL "Visual Studio") + _get_msvc_ide_version(_VISUAL_VERSION) + if("${_VISUAL_VERSION}" STREQUAL "") + message(FATAL_ERROR "Conan: Visual Studio not recognized") + else() + set(_CONAN_SETTING_COMPILER ${_VISUAL}) + set(_CONAN_SETTING_COMPILER_VERSION ${_VISUAL_VERSION}) + endif() + + if(NOT _CONAN_SETTING_ARCH) + if (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "64") + set(_CONAN_SETTING_ARCH x86_64) + elseif (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "^ARM") + message(STATUS "Conan: Using default ARM architecture from MSVC") + set(_CONAN_SETTING_ARCH armv6) + elseif (MSVC_${LANGUAGE}_ARCHITECTURE_ID MATCHES "86") + set(_CONAN_SETTING_ARCH x86) + else () + message(FATAL_ERROR "Conan: Unknown MSVC architecture [${MSVC_${LANGUAGE}_ARCHITECTURE_ID}]") + endif() + endif() + + conan_cmake_detect_vs_runtime(_vs_runtime ${ARGV}) + message(STATUS "Conan: Detected VS runtime: ${_vs_runtime}") + set(_CONAN_SETTING_COMPILER_RUNTIME ${_vs_runtime}) + + if (CMAKE_GENERATOR_TOOLSET) + set(_CONAN_SETTING_COMPILER_TOOLSET ${CMAKE_VS_PLATFORM_TOOLSET}) + elseif(CMAKE_VS_PLATFORM_TOOLSET AND (CMAKE_GENERATOR STREQUAL "Ninja")) + set(_CONAN_SETTING_COMPILER_TOOLSET ${CMAKE_VS_PLATFORM_TOOLSET}) + endif() + else() + message(FATAL_ERROR "Conan: compiler setup not recognized") + endif() + +endmacro() + +function(conan_cmake_settings result) + #message(STATUS "COMPILER " ${CMAKE_CXX_COMPILER}) + #message(STATUS "COMPILER " ${CMAKE_CXX_COMPILER_ID}) + #message(STATUS "VERSION " ${CMAKE_CXX_COMPILER_VERSION}) + #message(STATUS "FLAGS " ${CMAKE_LANG_FLAGS}) + #message(STATUS "LIB ARCH " ${CMAKE_CXX_LIBRARY_ARCHITECTURE}) + #message(STATUS "BUILD TYPE " ${CMAKE_BUILD_TYPE}) + #message(STATUS "GENERATOR " ${CMAKE_GENERATOR}) + #message(STATUS "GENERATOR WIN64 " ${CMAKE_CL_64}) + + message(STATUS "Conan: Automatic detection of conan settings from cmake") + + conan_parse_arguments(${ARGV}) + + _conan_detect_build_type(${ARGV}) + + _conan_check_system_name() + + _conan_check_language() + + _conan_detect_compiler(${ARGV}) + + # If profile is defined it is used + if(CMAKE_BUILD_TYPE STREQUAL "Debug" AND ARGUMENTS_DEBUG_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_DEBUG_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "Release" AND ARGUMENTS_RELEASE_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_RELEASE_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo" AND ARGUMENTS_RELWITHDEBINFO_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_RELWITHDEBINFO_PROFILE}) + elseif(CMAKE_BUILD_TYPE STREQUAL "MinSizeRel" AND ARGUMENTS_MINSIZEREL_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_MINSIZEREL_PROFILE}) + elseif(ARGUMENTS_PROFILE) + set(_APPLIED_PROFILES ${ARGUMENTS_PROFILE}) + endif() + + foreach(ARG ${_APPLIED_PROFILES}) + set(_SETTINGS ${_SETTINGS} -pr=${ARG}) + endforeach() + foreach(ARG ${ARGUMENTS_PROFILE_BUILD}) + conan_check(VERSION 1.24.0 REQUIRED DETECT_QUIET) + set(_SETTINGS ${_SETTINGS} -pr:b=${ARG}) + endforeach() + + if(NOT _SETTINGS OR ARGUMENTS_PROFILE_AUTO STREQUAL "ALL") + set(ARGUMENTS_PROFILE_AUTO arch build_type compiler compiler.version + compiler.runtime compiler.libcxx compiler.toolset) + endif() + + # remove any manually specified settings from the autodetected settings + foreach(ARG ${ARGUMENTS_SETTINGS}) + string(REGEX MATCH "[^=]*" MANUAL_SETTING "${ARG}") + message(STATUS "Conan: ${MANUAL_SETTING} was added as an argument. Not using the autodetected one.") + list(REMOVE_ITEM ARGUMENTS_PROFILE_AUTO "${MANUAL_SETTING}") + endforeach() + + # Automatic from CMake + foreach(ARG ${ARGUMENTS_PROFILE_AUTO}) + string(TOUPPER ${ARG} _arg_name) + string(REPLACE "." "_" _arg_name ${_arg_name}) + if(_CONAN_SETTING_${_arg_name}) + set(_SETTINGS ${_SETTINGS} -s ${ARG}=${_CONAN_SETTING_${_arg_name}}) + endif() + endforeach() + + foreach(ARG ${ARGUMENTS_SETTINGS}) + set(_SETTINGS ${_SETTINGS} -s ${ARG}) + endforeach() + + message(STATUS "Conan: Settings= ${_SETTINGS}") + + set(${result} ${_SETTINGS} PARENT_SCOPE) +endfunction() + + +function(conan_cmake_detect_unix_libcxx result) + # Take into account any -stdlib in compile options + get_directory_property(compile_options DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMPILE_OPTIONS) + string(GENEX_STRIP "${compile_options}" compile_options) + + # Take into account any _GLIBCXX_USE_CXX11_ABI in compile definitions + get_directory_property(defines DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} COMPILE_DEFINITIONS) + string(GENEX_STRIP "${defines}" defines) + + foreach(define ${defines}) + if(define MATCHES "_GLIBCXX_USE_CXX11_ABI") + if(define MATCHES "^-D") + set(compile_options ${compile_options} "${define}") + else() + set(compile_options ${compile_options} "-D${define}") + endif() + endif() + endforeach() + + # add additional compiler options ala cmRulePlaceholderExpander::ExpandRuleVariable + set(EXPAND_CXX_COMPILER ${CMAKE_CXX_COMPILER}) + if(CMAKE_CXX_COMPILER_ARG1) + # CMake splits CXX="foo bar baz" into CMAKE_CXX_COMPILER="foo", CMAKE_CXX_COMPILER_ARG1="bar baz" + # without this, ccache, winegcc, or other wrappers might lose all their arguments + separate_arguments(SPLIT_CXX_COMPILER_ARG1 NATIVE_COMMAND ${CMAKE_CXX_COMPILER_ARG1}) + list(APPEND EXPAND_CXX_COMPILER ${SPLIT_CXX_COMPILER_ARG1}) + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_TARGET AND CMAKE_CXX_COMPILER_TARGET) + # without --target= we may be calling the wrong underlying GCC + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_TARGET}${CMAKE_CXX_COMPILER_TARGET}") + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_EXTERNAL_TOOLCHAIN AND CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_EXTERNAL_TOOLCHAIN}${CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN}") + endif() + + if(CMAKE_CXX_COMPILE_OPTIONS_SYSROOT) + # without --sysroot= we may find the wrong #include + if(CMAKE_SYSROOT_COMPILE) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_SYSROOT}${CMAKE_SYSROOT_COMPILE}") + elseif(CMAKE_SYSROOT) + list(APPEND EXPAND_CXX_COMPILER "${CMAKE_CXX_COMPILE_OPTIONS_SYSROOT}${CMAKE_SYSROOT}") + endif() + endif() + + separate_arguments(SPLIT_CXX_FLAGS NATIVE_COMMAND ${CMAKE_CXX_FLAGS}) + + if(CMAKE_OSX_SYSROOT) + set(xcode_sysroot_option "--sysroot=${CMAKE_OSX_SYSROOT}") + endif() + + execute_process( + COMMAND ${CMAKE_COMMAND} -E echo "#include " + COMMAND ${EXPAND_CXX_COMPILER} ${SPLIT_CXX_FLAGS} -x c++ ${xcode_sysroot_option} ${compile_options} -E -dM - + OUTPUT_VARIABLE string_defines + ) + + if(string_defines MATCHES "#define __GLIBCXX__") + # Allow -D_GLIBCXX_USE_CXX11_ABI=ON/OFF as argument to cmake + if(DEFINED _GLIBCXX_USE_CXX11_ABI) + if(_GLIBCXX_USE_CXX11_ABI) + set(${result} libstdc++11 PARENT_SCOPE) + return() + else() + set(${result} libstdc++ PARENT_SCOPE) + return() + endif() + endif() + + if(string_defines MATCHES "#define _GLIBCXX_USE_CXX11_ABI 1\n") + set(${result} libstdc++11 PARENT_SCOPE) + else() + # Either the compiler is missing the define because it is old, and so + # it can't use the new abi, or the compiler was configured to use the + # old abi by the user or distro (e.g. devtoolset on RHEL/CentOS) + set(${result} libstdc++ PARENT_SCOPE) + endif() + else() + set(${result} libc++ PARENT_SCOPE) + endif() +endfunction() + +function(conan_cmake_detect_vs_runtime result) + + conan_parse_arguments(${ARGV}) + if(ARGUMENTS_BUILD_TYPE) + set(build_type "${ARGUMENTS_BUILD_TYPE}") + elseif(CMAKE_BUILD_TYPE) + set(build_type "${CMAKE_BUILD_TYPE}") + else() + message(FATAL_ERROR "Please specify in command line CMAKE_BUILD_TYPE (-DCMAKE_BUILD_TYPE=Release)") + endif() + + if(build_type) + string(TOUPPER "${build_type}" build_type) + endif() + set(variables CMAKE_CXX_FLAGS_${build_type} CMAKE_C_FLAGS_${build_type} CMAKE_CXX_FLAGS CMAKE_C_FLAGS) + foreach(variable ${variables}) + if(NOT "${${variable}}" STREQUAL "") + string(REPLACE " " ";" flags "${${variable}}") + foreach (flag ${flags}) + if("${flag}" STREQUAL "/MD" OR "${flag}" STREQUAL "/MDd" OR "${flag}" STREQUAL "/MT" OR "${flag}" STREQUAL "/MTd") + string(SUBSTRING "${flag}" 1 -1 runtime) + set(${result} "${runtime}" PARENT_SCOPE) + return() + endif() + endforeach() + endif() + endforeach() + if("${build_type}" STREQUAL "DEBUG") + set(${result} "MDd" PARENT_SCOPE) + else() + set(${result} "MD" PARENT_SCOPE) + endif() +endfunction() + +function(_collect_settings result) + set(ARGUMENTS_PROFILE_AUTO arch build_type compiler compiler.version + compiler.runtime compiler.libcxx compiler.toolset + compiler.cppstd) + foreach(ARG ${ARGUMENTS_PROFILE_AUTO}) + string(TOUPPER ${ARG} _arg_name) + string(REPLACE "." "_" _arg_name ${_arg_name}) + if(_CONAN_SETTING_${_arg_name}) + set(detected_setings ${detected_setings} ${ARG}=${_CONAN_SETTING_${_arg_name}}) + endif() + endforeach() + set(${result} ${detected_setings} PARENT_SCOPE) +endfunction() + +function(conan_cmake_autodetect detected_settings) + _conan_detect_build_type(${ARGV}) + _conan_check_system_name() + _conan_check_language() + _conan_detect_compiler(${ARGV}) + _collect_settings(collected_settings) + set(${detected_settings} ${collected_settings} PARENT_SCOPE) +endfunction() + +macro(conan_parse_arguments) + set(options BASIC_SETUP CMAKE_TARGETS UPDATE KEEP_RPATHS NO_LOAD NO_OUTPUT_DIRS OUTPUT_QUIET NO_IMPORTS SKIP_STD) + set(oneValueArgs CONANFILE ARCH BUILD_TYPE INSTALL_FOLDER OUTPUT_FOLDER CONAN_COMMAND) + set(multiValueArgs DEBUG_PROFILE RELEASE_PROFILE RELWITHDEBINFO_PROFILE MINSIZEREL_PROFILE + PROFILE REQUIRES OPTIONS IMPORTS SETTINGS BUILD ENV GENERATORS PROFILE_AUTO + INSTALL_ARGS CONFIGURATION_TYPES PROFILE_BUILD BUILD_REQUIRES) + cmake_parse_arguments(ARGUMENTS "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) +endmacro() + +function(old_conan_cmake_install) + # Calls "conan install" + # Argument BUILD is equivalant to --build={missing, PkgName,...} or + # --build when argument is 'BUILD all' (which builds all packages from source) + # Argument CONAN_COMMAND, to specify the conan path, e.g. in case of running from source + # cmake does not identify conan as command, even if it is +x and it is in the path + conan_parse_arguments(${ARGV}) + + if(CONAN_CMAKE_MULTI) + set(ARGUMENTS_GENERATORS ${ARGUMENTS_GENERATORS} cmake_multi) + else() + set(ARGUMENTS_GENERATORS ${ARGUMENTS_GENERATORS} cmake) + endif() + + set(CONAN_BUILD_POLICY "") + foreach(ARG ${ARGUMENTS_BUILD}) + if(${ARG} STREQUAL "all") + set(CONAN_BUILD_POLICY ${CONAN_BUILD_POLICY} --build) + break() + else() + set(CONAN_BUILD_POLICY ${CONAN_BUILD_POLICY} --build=${ARG}) + endif() + endforeach() + if(ARGUMENTS_CONAN_COMMAND) + set(CONAN_CMD ${ARGUMENTS_CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + set(CONAN_OPTIONS "") + if(ARGUMENTS_CONANFILE) + if(IS_ABSOLUTE ${ARGUMENTS_CONANFILE}) + set(CONANFILE ${ARGUMENTS_CONANFILE}) + else() + set(CONANFILE ${CMAKE_CURRENT_SOURCE_DIR}/${ARGUMENTS_CONANFILE}) + endif() + else() + set(CONANFILE ".") + endif() + foreach(ARG ${ARGUMENTS_OPTIONS}) + set(CONAN_OPTIONS ${CONAN_OPTIONS} -o=${ARG}) + endforeach() + if(ARGUMENTS_UPDATE) + set(CONAN_INSTALL_UPDATE --update) + endif() + if(ARGUMENTS_NO_IMPORTS) + set(CONAN_INSTALL_NO_IMPORTS --no-imports) + endif() + set(CONAN_INSTALL_FOLDER "") + if(ARGUMENTS_INSTALL_FOLDER) + set(CONAN_INSTALL_FOLDER -if=${ARGUMENTS_INSTALL_FOLDER}) + endif() + set(CONAN_OUTPUT_FOLDER "") + if(ARGUMENTS_OUTPUT_FOLDER) + set(CONAN_OUTPUT_FOLDER -of=${ARGUMENTS_OUTPUT_FOLDER}) + endif() + foreach(ARG ${ARGUMENTS_GENERATORS}) + set(CONAN_GENERATORS ${CONAN_GENERATORS} -g=${ARG}) + endforeach() + foreach(ARG ${ARGUMENTS_ENV}) + set(CONAN_ENV_VARS ${CONAN_ENV_VARS} -e=${ARG}) + endforeach() + set(conan_args install ${CONANFILE} ${settings} ${CONAN_ENV_VARS} ${CONAN_GENERATORS} ${CONAN_BUILD_POLICY} ${CONAN_INSTALL_UPDATE} ${CONAN_INSTALL_NO_IMPORTS} ${CONAN_OPTIONS} ${CONAN_INSTALL_FOLDER} ${ARGUMENTS_INSTALL_ARGS}) + + string (REPLACE ";" " " _conan_args "${conan_args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_conan_args}") + + if(ARGUMENTS_OUTPUT_QUIET) + execute_process(COMMAND ${CONAN_CMD} ${conan_args} + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_output + ERROR_VARIABLE conan_output + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + else() + execute_process(COMMAND ${CONAN_CMD} ${conan_args} + RESULT_VARIABLE return_code + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + endif() + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan install failed='${return_code}'") + endif() + +endfunction() + +function(conan_cmake_install) + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + set(installOptions UPDATE NO_IMPORTS OUTPUT_QUIET ERROR_QUIET) + set(installOneValueArgs PATH_OR_REFERENCE REFERENCE REMOTE LOCKFILE LOCKFILE_OUT LOCKFILE_NODE_ID INSTALL_FOLDER OUTPUT_FOLDER) + set(installMultiValueArgs GENERATOR BUILD ENV ENV_HOST ENV_BUILD OPTIONS_HOST OPTIONS OPTIONS_BUILD PROFILE + PROFILE_HOST PROFILE_BUILD SETTINGS SETTINGS_HOST SETTINGS_BUILD) + cmake_parse_arguments(ARGS "${installOptions}" "${installOneValueArgs}" "${installMultiValueArgs}" ${ARGN}) + foreach(arg ${installOptions}) + if(ARGS_${arg}) + set(${arg} ${${arg}} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${installOneValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "REMOTE") + set(flag "--remote") + elseif("${arg}" STREQUAL "LOCKFILE") + set(flag "--lockfile") + elseif("${arg}" STREQUAL "LOCKFILE_OUT") + set(flag "--lockfile-out") + elseif("${arg}" STREQUAL "LOCKFILE_NODE_ID") + set(flag "--lockfile-node-id") + elseif("${arg}" STREQUAL "INSTALL_FOLDER") + set(flag "--install-folder") + elseif("${arg}" STREQUAL "OUTPUT_FOLDER") + set(flag "--output-folder") + endif() + set(${arg} ${${arg}} ${flag} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${installMultiValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "GENERATOR") + set(flag "--generator") + elseif("${arg}" STREQUAL "BUILD") + set(flag "--build") + elseif("${arg}" STREQUAL "ENV") + set(flag "--env") + elseif("${arg}" STREQUAL "ENV_HOST") + set(flag "--env:host") + elseif("${arg}" STREQUAL "ENV_BUILD") + set(flag "--env:build") + elseif("${arg}" STREQUAL "OPTIONS") + set(flag "--options") + elseif("${arg}" STREQUAL "OPTIONS_HOST") + set(flag "--options:host") + elseif("${arg}" STREQUAL "OPTIONS_BUILD") + set(flag "--options:build") + elseif("${arg}" STREQUAL "PROFILE") + set(flag "--profile") + elseif("${arg}" STREQUAL "PROFILE_HOST") + set(flag "--profile:host") + elseif("${arg}" STREQUAL "PROFILE_BUILD") + set(flag "--profile:build") + elseif("${arg}" STREQUAL "SETTINGS") + set(flag "--settings") + elseif("${arg}" STREQUAL "SETTINGS_HOST") + set(flag "--settings:host") + elseif("${arg}" STREQUAL "SETTINGS_BUILD") + set(flag "--settings:build") + endif() + list(LENGTH ARGS_${arg} numargs) + foreach(item ${ARGS_${arg}}) + if(${item} STREQUAL "all" AND ${arg} STREQUAL "BUILD") + set(${arg} "--build") + break() + endif() + set(${arg} ${${arg}} ${flag} ${item}) + endforeach() + endif() + endforeach() + if(DEFINED UPDATE) + set(UPDATE --update) + endif() + if(DEFINED NO_IMPORTS) + set(NO_IMPORTS --no-imports) + endif() + set(install_args install ${PATH_OR_REFERENCE} ${REFERENCE} ${UPDATE} ${NO_IMPORTS} ${REMOTE} ${LOCKFILE} ${LOCKFILE_OUT} ${LOCKFILE_NODE_ID} ${INSTALL_FOLDER} ${OUTPUT_FOLDER} + ${GENERATOR} ${BUILD} ${ENV} ${ENV_HOST} ${ENV_BUILD} ${OPTIONS} ${OPTIONS_HOST} ${OPTIONS_BUILD} + ${PROFILE} ${PROFILE_HOST} ${PROFILE_BUILD} ${SETTINGS} ${SETTINGS_HOST} ${SETTINGS_BUILD}) + + string(REPLACE ";" " " _install_args "${install_args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_install_args}") + + if(ARGS_OUTPUT_QUIET) + set(OUTPUT_OPT OUTPUT_QUIET) + endif() + if(ARGS_ERROR_QUIET) + set(ERROR_OPT ERROR_QUIET) + endif() + + execute_process(COMMAND ${CONAN_CMD} ${install_args} + RESULT_VARIABLE return_code + ${OUTPUT_OPT} + ${ERROR_OPT} + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(NOT "${return_code}" STREQUAL "0") + if (ARGS_ERROR_QUIET) + message(WARNING "Conan install failed='${return_code}'") + else() + message(FATAL_ERROR "Conan install failed='${return_code}'") + endif() + endif() + +endfunction() + +function(conan_cmake_lock_create) + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + set(lockCreateOptions UPDATE BASE OUTPUT_QUIET ERROR_QUIET) + set(lockCreateOneValueArgs PATH REFERENCE REMOTE LOCKFILE LOCKFILE_OUT) + set(lockCreateMultiValueArgs BUILD ENV ENV_HOST ENV_BUILD OPTIONS_HOST OPTIONS OPTIONS_BUILD PROFILE + PROFILE_HOST PROFILE_BUILD SETTINGS SETTINGS_HOST SETTINGS_BUILD) + cmake_parse_arguments(ARGS "${lockCreateOptions}" "${lockCreateOneValueArgs}" "${lockCreateMultiValueArgs}" ${ARGN}) + foreach(arg ${lockCreateOptions}) + if(ARGS_${arg}) + set(${arg} ${${arg}} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${lockCreateOneValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "REMOTE") + set(flag "--remote") + elseif("${arg}" STREQUAL "LOCKFILE") + set(flag "--lockfile") + elseif("${arg}" STREQUAL "LOCKFILE_OUT") + set(flag "--lockfile-out") + endif() + set(${arg} ${${arg}} ${flag} ${ARGS_${arg}}) + endif() + endforeach() + foreach(arg ${lockCreateMultiValueArgs}) + if(DEFINED ARGS_${arg}) + if("${arg}" STREQUAL "BUILD") + set(flag "--build") + elseif("${arg}" STREQUAL "ENV") + set(flag "--env") + elseif("${arg}" STREQUAL "ENV_HOST") + set(flag "--env:host") + elseif("${arg}" STREQUAL "ENV_BUILD") + set(flag "--env:build") + elseif("${arg}" STREQUAL "OPTIONS") + set(flag "--options") + elseif("${arg}" STREQUAL "OPTIONS_HOST") + set(flag "--options:host") + elseif("${arg}" STREQUAL "OPTIONS_BUILD") + set(flag "--options:build") + elseif("${arg}" STREQUAL "PROFILE") + set(flag "--profile") + elseif("${arg}" STREQUAL "PROFILE_HOST") + set(flag "--profile:host") + elseif("${arg}" STREQUAL "PROFILE_BUILD") + set(flag "--profile:build") + elseif("${arg}" STREQUAL "SETTINGS") + set(flag "--settings") + elseif("${arg}" STREQUAL "SETTINGS_HOST") + set(flag "--settings:host") + elseif("${arg}" STREQUAL "SETTINGS_BUILD") + set(flag "--settings:build") + endif() + list(LENGTH ARGS_${arg} numargs) + foreach(item ${ARGS_${arg}}) + if(${item} STREQUAL "all" AND ${arg} STREQUAL "BUILD") + set(${arg} "--build") + break() + endif() + set(${arg} ${${arg}} ${flag} ${item}) + endforeach() + endif() + endforeach() + if(DEFINED UPDATE) + set(UPDATE --update) + endif() + if(DEFINED BASE) + set(BASE --base) + endif() + set(lock_create_Args lock create ${PATH} ${REFERENCE} ${UPDATE} ${BASE} ${REMOTE} ${LOCKFILE} ${LOCKFILE_OUT} ${LOCKFILE_NODE_ID} ${INSTALL_FOLDER} + ${GENERATOR} ${BUILD} ${ENV} ${ENV_HOST} ${ENV_BUILD} ${OPTIONS} ${OPTIONS_HOST} ${OPTIONS_BUILD} + ${PROFILE} ${PROFILE_HOST} ${PROFILE_BUILD} ${SETTINGS} ${SETTINGS_HOST} ${SETTINGS_BUILD}) + + string(REPLACE ";" " " _lock_create_Args "${lock_create_Args}") + message(STATUS "Conan executing: ${CONAN_CMD} ${_lock_create_Args}") + + if(ARGS_OUTPUT_QUIET) + set(OUTPUT_OPT OUTPUT_QUIET) + endif() + if(ARGS_ERROR_QUIET) + set(ERROR_OPT ERROR_QUIET) + endif() + + execute_process(COMMAND ${CONAN_CMD} ${lock_create_Args} + RESULT_VARIABLE return_code + ${OUTPUT_OPT} + ${ERROR_OPT} + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(NOT "${return_code}" STREQUAL "0") + if (ARGS_ERROR_QUIET) + message(WARNING "Conan lock create failed='${return_code}'") + else() + message(FATAL_ERROR "Conan lock create failed='${return_code}'") + endif() + endif() +endfunction() + +function(conan_cmake_setup_conanfile) + conan_parse_arguments(${ARGV}) + if(ARGUMENTS_CONANFILE) + get_filename_component(_CONANFILE_NAME ${ARGUMENTS_CONANFILE} NAME) + # configure_file will make sure cmake re-runs when conanfile is updated + configure_file(${ARGUMENTS_CONANFILE} ${CMAKE_CURRENT_BINARY_DIR}/${_CONANFILE_NAME}.junk COPYONLY) + file(REMOVE ${CMAKE_CURRENT_BINARY_DIR}/${_CONANFILE_NAME}.junk) + else() + conan_cmake_generate_conanfile(ON ${ARGV}) + endif() +endfunction() + +function(conan_cmake_configure) + conan_cmake_generate_conanfile(OFF ${ARGV}) +endfunction() + +# Generate, writing in disk a conanfile.txt with the requires, options, and imports +# specified as arguments +# This will be considered as temporary file, generated in CMAKE_CURRENT_BINARY_DIR) +function(conan_cmake_generate_conanfile DEFAULT_GENERATOR) + + conan_parse_arguments(${ARGV}) + + set(_FN "${CMAKE_CURRENT_BINARY_DIR}/conanfile.txt") + file(WRITE ${_FN} "") + + if(DEFINED ARGUMENTS_REQUIRES) + file(APPEND ${_FN} "[requires]\n") + foreach(REQUIRE ${ARGUMENTS_REQUIRES}) + file(APPEND ${_FN} ${REQUIRE} "\n") + endforeach() + endif() + + if (DEFAULT_GENERATOR OR DEFINED ARGUMENTS_GENERATORS) + file(APPEND ${_FN} "[generators]\n") + if (DEFAULT_GENERATOR) + file(APPEND ${_FN} "cmake\n") + endif() + if (DEFINED ARGUMENTS_GENERATORS) + foreach(GENERATOR ${ARGUMENTS_GENERATORS}) + file(APPEND ${_FN} ${GENERATOR} "\n") + endforeach() + endif() + endif() + + if(DEFINED ARGUMENTS_BUILD_REQUIRES) + file(APPEND ${_FN} "[build_requires]\n") + foreach(BUILD_REQUIRE ${ARGUMENTS_BUILD_REQUIRES}) + file(APPEND ${_FN} ${BUILD_REQUIRE} "\n") + endforeach() + endif() + + if(DEFINED ARGUMENTS_IMPORTS) + file(APPEND ${_FN} "[imports]\n") + foreach(IMPORTS ${ARGUMENTS_IMPORTS}) + file(APPEND ${_FN} ${IMPORTS} "\n") + endforeach() + endif() + + if(DEFINED ARGUMENTS_OPTIONS) + file(APPEND ${_FN} "[options]\n") + foreach(OPTION ${ARGUMENTS_OPTIONS}) + file(APPEND ${_FN} ${OPTION} "\n") + endforeach() + endif() + +endfunction() + + +macro(conan_load_buildinfo) + if(CONAN_CMAKE_MULTI) + set(_CONANBUILDINFO conanbuildinfo_multi.cmake) + else() + set(_CONANBUILDINFO conanbuildinfo.cmake) + endif() + if(ARGUMENTS_INSTALL_FOLDER) + set(_CONANBUILDINFOFOLDER ${ARGUMENTS_INSTALL_FOLDER}) + else() + set(_CONANBUILDINFOFOLDER ${CMAKE_CURRENT_BINARY_DIR}) + endif() + # Checks for the existence of conanbuildinfo.cmake, and loads it + # important that it is macro, so variables defined at parent scope + if(EXISTS "${_CONANBUILDINFOFOLDER}/${_CONANBUILDINFO}") + message(STATUS "Conan: Loading ${_CONANBUILDINFO}") + include(${_CONANBUILDINFOFOLDER}/${_CONANBUILDINFO}) + else() + message(FATAL_ERROR "${_CONANBUILDINFO} doesn't exist in ${CMAKE_CURRENT_BINARY_DIR}") + endif() +endmacro() + + +macro(conan_cmake_run) + conan_parse_arguments(${ARGV}) + + if(ARGUMENTS_CONFIGURATION_TYPES AND NOT CMAKE_CONFIGURATION_TYPES) + message(WARNING "CONFIGURATION_TYPES should only be specified for multi-configuration generators") + elseif(ARGUMENTS_CONFIGURATION_TYPES AND ARGUMENTS_BUILD_TYPE) + message(WARNING "CONFIGURATION_TYPES and BUILD_TYPE arguments should not be defined at the same time.") + endif() + + if(CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_BUILD_TYPE AND NOT CONAN_EXPORTED + AND NOT ARGUMENTS_BUILD_TYPE) + set(CONAN_CMAKE_MULTI ON) + if (NOT ARGUMENTS_CONFIGURATION_TYPES) + set(ARGUMENTS_CONFIGURATION_TYPES "Release;Debug") + endif() + message(STATUS "Conan: Using cmake-multi generator") + else() + set(CONAN_CMAKE_MULTI OFF) + endif() + + if(NOT CONAN_EXPORTED) + conan_cmake_setup_conanfile(${ARGV}) + if(CONAN_CMAKE_MULTI) + foreach(CMAKE_BUILD_TYPE ${ARGUMENTS_CONFIGURATION_TYPES}) + set(ENV{CONAN_IMPORT_PATH} ${CMAKE_BUILD_TYPE}) + conan_cmake_settings(settings ${ARGV}) + old_conan_cmake_install(SETTINGS ${settings} ${ARGV}) + endforeach() + set(CMAKE_BUILD_TYPE) + else() + conan_cmake_settings(settings ${ARGV}) + old_conan_cmake_install(SETTINGS ${settings} ${ARGV}) + endif() + endif() + + if (NOT ARGUMENTS_NO_LOAD) + conan_load_buildinfo() + endif() + + if(ARGUMENTS_BASIC_SETUP) + foreach(_option CMAKE_TARGETS KEEP_RPATHS NO_OUTPUT_DIRS SKIP_STD) + if(ARGUMENTS_${_option}) + if(${_option} STREQUAL "CMAKE_TARGETS") + list(APPEND _setup_options "TARGETS") + else() + list(APPEND _setup_options ${_option}) + endif() + endif() + endforeach() + conan_basic_setup(${_setup_options}) + endif() +endmacro() + +macro(conan_check) + # Checks conan availability in PATH + # Arguments REQUIRED, DETECT_QUIET and VERSION are optional + # Example usage: + # conan_check(VERSION 1.0.0 REQUIRED) + set(options REQUIRED DETECT_QUIET) + set(oneValueArgs VERSION) + cmake_parse_arguments(CONAN "${options}" "${oneValueArgs}" "" ${ARGN}) + if(NOT CONAN_DETECT_QUIET) + message(STATUS "Conan: checking conan executable") + endif() + + find_program(CONAN_CMD conan) + if(NOT CONAN_CMD AND CONAN_REQUIRED) + message(FATAL_ERROR "Conan executable not found! Please install conan.") + endif() + if(NOT CONAN_DETECT_QUIET) + message(STATUS "Conan: Found program ${CONAN_CMD}") + endif() + execute_process(COMMAND ${CONAN_CMD} --version + RESULT_VARIABLE return_code + OUTPUT_VARIABLE CONAN_VERSION_OUTPUT + ERROR_VARIABLE CONAN_VERSION_OUTPUT) + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan --version failed='${return_code}'") + endif() + + if(NOT CONAN_DETECT_QUIET) + string(STRIP "${CONAN_VERSION_OUTPUT}" _CONAN_VERSION_OUTPUT) + message(STATUS "Conan: Version found ${_CONAN_VERSION_OUTPUT}") + endif() + + if(DEFINED CONAN_VERSION) + string(REGEX MATCH ".*Conan version ([0-9]+\\.[0-9]+\\.[0-9]+)" FOO + "${CONAN_VERSION_OUTPUT}") + if(${CMAKE_MATCH_1} VERSION_LESS ${CONAN_VERSION}) + message(FATAL_ERROR "Conan outdated. Installed: ${CMAKE_MATCH_1}, \ + required: ${CONAN_VERSION}. Consider updating via 'pip \ + install conan==${CONAN_VERSION}'.") + endif() + endif() +endmacro() + +function(conan_add_remote) + # Adds a remote + # Arguments URL and NAME are required, INDEX, COMMAND and VERIFY_SSL are optional + # Example usage: + # conan_add_remote(NAME bincrafters INDEX 1 + # URL https://api.bintray.com/conan/bincrafters/public-conan + # VERIFY_SSL True) + set(oneValueArgs URL NAME INDEX COMMAND VERIFY_SSL) + cmake_parse_arguments(CONAN "" "${oneValueArgs}" "" ${ARGN}) + + if(DEFINED CONAN_INDEX) + set(CONAN_INDEX_ARG "-i ${CONAN_INDEX}") + endif() + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED DETECT_QUIET) + endif() + set(CONAN_VERIFY_SSL_ARG "True") + if(DEFINED CONAN_VERIFY_SSL) + set(CONAN_VERIFY_SSL_ARG ${CONAN_VERIFY_SSL}) + endif() + message(STATUS "Conan: Adding ${CONAN_NAME} remote repository (${CONAN_URL}) verify ssl (${CONAN_VERIFY_SSL_ARG})") + execute_process(COMMAND ${CONAN_CMD} remote add ${CONAN_NAME} ${CONAN_INDEX_ARG} -f ${CONAN_URL} ${CONAN_VERIFY_SSL_ARG} + RESULT_VARIABLE return_code) + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan remote failed='${return_code}'") + endif() +endfunction() + +macro(conan_config_install) + # install a full configuration from a local or remote zip file + # Argument ITEM is required, arguments TYPE, SOURCE, TARGET and VERIFY_SSL are optional + # Example usage: + # conan_config_install(ITEM https://github.com/conan-io/cmake-conan.git + # TYPE git SOURCE source-folder TARGET target-folder VERIFY_SSL false) + set(oneValueArgs ITEM TYPE SOURCE TARGET VERIFY_SSL) + set(multiValueArgs ARGS) + cmake_parse_arguments(CONAN "" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + + if(DEFINED CONAN_COMMAND) + set(CONAN_CMD ${CONAN_COMMAND}) + else() + conan_check(REQUIRED) + endif() + + if(DEFINED CONAN_VERIFY_SSL) + set(CONAN_VERIFY_SSL_ARG "--verify-ssl=${CONAN_VERIFY_SSL}") + endif() + + if(DEFINED CONAN_TYPE) + set(CONAN_TYPE_ARG "--type=${CONAN_TYPE}") + endif() + + if(DEFINED CONAN_ARGS) + set(CONAN_ARGS_ARGS "--args=\"${CONAN_ARGS}\"") + endif() + + if(DEFINED CONAN_SOURCE) + set(CONAN_SOURCE_ARGS "--source-folder=${CONAN_SOURCE}") + endif() + + if(DEFINED CONAN_TARGET) + set(CONAN_TARGET_ARGS "--target-folder=${CONAN_TARGET}") + endif() + + set (CONAN_CONFIG_INSTALL_ARGS ${CONAN_VERIFY_SSL_ARG} + ${CONAN_TYPE_ARG} + ${CONAN_ARGS_ARGS} + ${CONAN_SOURCE_ARGS} + ${CONAN_TARGET_ARGS}) + + message(STATUS "Conan: Installing config from ${CONAN_ITEM}") + execute_process(COMMAND ${CONAN_CMD} config install ${CONAN_ITEM} ${CONAN_CONFIG_INSTALL_ARGS} + RESULT_VARIABLE return_code) + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan config failed='${return_code}'") + endif() +endmacro() diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/conan_provider.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/conan_provider.cmake new file mode 100644 index 0000000..e5fa9ce --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/conan_provider.cmake @@ -0,0 +1,655 @@ +# https://github.com/conan-io/cmake-conan/blob/develop2/conan_provider.cmake +# commit: f6464d1e13ef7a47c569f5061f9607ea63339d39 +# +# The MIT License (MIT) +# +# Copyright (c) 2019 JFrog +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +set(CONAN_MINIMUM_VERSION 2.0.5) + + +function(detect_os OS OS_API_LEVEL OS_SDK OS_SUBSYSTEM OS_VERSION) + # it could be cross compilation + message(STATUS "CMake-Conan: cmake_system_name=${CMAKE_SYSTEM_NAME}") + if(CMAKE_SYSTEM_NAME AND NOT CMAKE_SYSTEM_NAME STREQUAL "Generic") + if(CMAKE_SYSTEM_NAME STREQUAL "Darwin") + set(${OS} Macos PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME STREQUAL "QNX") + set(${OS} Neutrino PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME STREQUAL "CYGWIN") + set(${OS} Windows PARENT_SCOPE) + set(${OS_SUBSYSTEM} cygwin PARENT_SCOPE) + elseif(CMAKE_SYSTEM_NAME MATCHES "^MSYS") + set(${OS} Windows PARENT_SCOPE) + set(${OS_SUBSYSTEM} msys2 PARENT_SCOPE) + else() + set(${OS} ${CMAKE_SYSTEM_NAME} PARENT_SCOPE) + endif() + if(CMAKE_SYSTEM_NAME STREQUAL "Android") + if(DEFINED ANDROID_PLATFORM) + string(REGEX MATCH "[0-9]+" _OS_API_LEVEL ${ANDROID_PLATFORM}) + elseif(DEFINED CMAKE_SYSTEM_VERSION) + set(_OS_API_LEVEL ${CMAKE_SYSTEM_VERSION}) + endif() + message(STATUS "CMake-Conan: android api level=${_OS_API_LEVEL}") + set(${OS_API_LEVEL} ${_OS_API_LEVEL} PARENT_SCOPE) + endif() + if(CMAKE_SYSTEM_NAME MATCHES "Darwin|iOS|tvOS|watchOS") + # CMAKE_OSX_SYSROOT contains the full path to the SDK for MakeFile/Ninja + # generators, but just has the original input string for Xcode. + if(NOT IS_DIRECTORY ${CMAKE_OSX_SYSROOT}) + set(_OS_SDK ${CMAKE_OSX_SYSROOT}) + else() + if(CMAKE_OSX_SYSROOT MATCHES Simulator) + set(apple_platform_suffix simulator) + else() + set(apple_platform_suffix os) + endif() + if(CMAKE_OSX_SYSROOT MATCHES AppleTV) + set(_OS_SDK "appletv${apple_platform_suffix}") + elseif(CMAKE_OSX_SYSROOT MATCHES iPhone) + set(_OS_SDK "iphone${apple_platform_suffix}") + elseif(CMAKE_OSX_SYSROOT MATCHES Watch) + set(_OS_SDK "watch${apple_platform_suffix}") + endif() + endif() + if(DEFINED _OS_SDK) + message(STATUS "CMake-Conan: cmake_osx_sysroot=${CMAKE_OSX_SYSROOT}") + set(${OS_SDK} ${_OS_SDK} PARENT_SCOPE) + endif() + if(DEFINED CMAKE_OSX_DEPLOYMENT_TARGET) + message(STATUS "CMake-Conan: cmake_osx_deployment_target=${CMAKE_OSX_DEPLOYMENT_TARGET}") + set(${OS_VERSION} ${CMAKE_OSX_DEPLOYMENT_TARGET} PARENT_SCOPE) + endif() + endif() + endif() +endfunction() + + +function(detect_arch ARCH) + # CMAKE_OSX_ARCHITECTURES can contain multiple architectures, but Conan only supports one. + # Therefore this code only finds one. If the recipes support multiple architectures, the + # build will work. Otherwise, there will be a linker error for the missing architecture(s). + if(DEFINED CMAKE_OSX_ARCHITECTURES) + string(REPLACE " " ";" apple_arch_list "${CMAKE_OSX_ARCHITECTURES}") + list(LENGTH apple_arch_list apple_arch_count) + if(apple_arch_count GREATER 1) + message(WARNING "CMake-Conan: Multiple architectures detected, this will only work if Conan recipe(s) produce fat binaries.") + endif() + endif() + if(CMAKE_SYSTEM_NAME MATCHES "Darwin|iOS|tvOS|watchOS" AND NOT CMAKE_OSX_ARCHITECTURES STREQUAL "") + set(host_arch ${CMAKE_OSX_ARCHITECTURES}) + elseif(MSVC) + set(host_arch ${CMAKE_CXX_COMPILER_ARCHITECTURE_ID}) + else() + set(host_arch ${CMAKE_SYSTEM_PROCESSOR}) + endif() + if(host_arch MATCHES "aarch64|arm64|ARM64") + set(_ARCH armv8) + elseif(host_arch MATCHES "armv7|armv7-a|armv7l|ARMV7") + set(_ARCH armv7) + elseif(host_arch MATCHES armv7s) + set(_ARCH armv7s) + elseif(host_arch MATCHES "i686|i386|X86") + set(_ARCH x86) + elseif(host_arch MATCHES "AMD64|amd64|x86_64|x64") + set(_ARCH x86_64) + endif() + message(STATUS "CMake-Conan: cmake_system_processor=${_ARCH}") + set(${ARCH} ${_ARCH} PARENT_SCOPE) +endfunction() + + +function(detect_cxx_standard CXX_STANDARD) + set(${CXX_STANDARD} ${CMAKE_CXX_STANDARD} PARENT_SCOPE) + if(CMAKE_CXX_EXTENSIONS) + set(${CXX_STANDARD} "gnu${CMAKE_CXX_STANDARD}" PARENT_SCOPE) + endif() +endfunction() + + +macro(detect_gnu_libstdcxx) + # _CONAN_IS_GNU_LIBSTDCXX true if GNU libstdc++ + check_cxx_source_compiles(" + #include + #if !defined(__GLIBCXX__) && !defined(__GLIBCPP__) + static_assert(false); + #endif + int main(){}" _CONAN_IS_GNU_LIBSTDCXX) + + # _CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI true if C++11 ABI + check_cxx_source_compiles(" + #include + static_assert(sizeof(std::string) != sizeof(void*), \"using libstdc++\"); + int main () {}" _CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) + + set(_CONAN_GNU_LIBSTDCXX_SUFFIX "") + if(_CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) + set(_CONAN_GNU_LIBSTDCXX_SUFFIX "11") + endif() + unset (_CONAN_GNU_LIBSTDCXX_IS_CXX11_ABI) +endmacro() + + +macro(detect_libcxx) + # _CONAN_IS_LIBCXX true if LLVM libc++ + check_cxx_source_compiles(" + #include + #if !defined(_LIBCPP_VERSION) + static_assert(false); + #endif + int main(){}" _CONAN_IS_LIBCXX) +endmacro() + + +function(detect_lib_cxx LIB_CXX) + if(CMAKE_SYSTEM_NAME STREQUAL "Android") + message(STATUS "CMake-Conan: android_stl=${CMAKE_ANDROID_STL_TYPE}") + set(${LIB_CXX} ${CMAKE_ANDROID_STL_TYPE} PARENT_SCOPE) + return() + endif() + + include(CheckCXXSourceCompiles) + + if(CMAKE_CXX_COMPILER_ID MATCHES "GNU") + detect_gnu_libstdcxx() + set(${LIB_CXX} "libstdc++${_CONAN_GNU_LIBSTDCXX_SUFFIX}" PARENT_SCOPE) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang") + set(${LIB_CXX} "libc++" PARENT_SCOPE) + elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang" AND NOT CMAKE_SYSTEM_NAME MATCHES "Windows") + # Check for libc++ + detect_libcxx() + if(_CONAN_IS_LIBCXX) + set(${LIB_CXX} "libc++" PARENT_SCOPE) + return() + endif() + + # Check for libstdc++ + detect_gnu_libstdcxx() + if(_CONAN_IS_GNU_LIBSTDCXX) + set(${LIB_CXX} "libstdc++${_CONAN_GNU_LIBSTDCXX_SUFFIX}" PARENT_SCOPE) + return() + endif() + + # TODO: it would be an error if we reach this point + elseif(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") + # Do nothing - compiler.runtime and compiler.runtime_type + # should be handled separately: https://github.com/conan-io/cmake-conan/pull/516 + return() + else() + # TODO: unable to determine, ask user to provide a full profile file instead + endif() +endfunction() + + +function(detect_compiler COMPILER COMPILER_VERSION COMPILER_RUNTIME COMPILER_RUNTIME_TYPE) + if(DEFINED CMAKE_CXX_COMPILER_ID) + set(_COMPILER ${CMAKE_CXX_COMPILER_ID}) + set(_COMPILER_VERSION ${CMAKE_CXX_COMPILER_VERSION}) + else() + if(NOT DEFINED CMAKE_C_COMPILER_ID) + message(FATAL_ERROR "C or C++ compiler not defined") + endif() + set(_COMPILER ${CMAKE_C_COMPILER_ID}) + set(_COMPILER_VERSION ${CMAKE_C_COMPILER_VERSION}) + endif() + + message(STATUS "CMake-Conan: CMake compiler=${_COMPILER}") + message(STATUS "CMake-Conan: CMake compiler version=${_COMPILER_VERSION}") + + if(_COMPILER MATCHES MSVC) + set(_COMPILER "msvc") + string(SUBSTRING ${MSVC_VERSION} 0 3 _COMPILER_VERSION) + # Configure compiler.runtime and compiler.runtime_type settings for MSVC + if(CMAKE_MSVC_RUNTIME_LIBRARY) + set(_msvc_runtime_library ${CMAKE_MSVC_RUNTIME_LIBRARY}) + else() + set(_msvc_runtime_library MultiThreaded$<$:Debug>DLL) # default value documented by CMake + endif() + + set(_KNOWN_MSVC_RUNTIME_VALUES "") + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded MultiThreadedDLL) + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreadedDebug MultiThreadedDebugDLL) + list(APPEND _KNOWN_MSVC_RUNTIME_VALUES MultiThreaded$<$:Debug> MultiThreaded$<$:Debug>DLL) + + # only accept the 6 possible values, otherwise we don't don't know to map this + if(NOT _msvc_runtime_library IN_LIST _KNOWN_MSVC_RUNTIME_VALUES) + message(FATAL_ERROR "CMake-Conan: unable to map MSVC runtime: ${_msvc_runtime_library} to Conan settings") + endif() + + # Runtime is "dynamic" in all cases if it ends in DLL + if(_msvc_runtime_library MATCHES ".*DLL$") + set(_COMPILER_RUNTIME "dynamic") + else() + set(_COMPILER_RUNTIME "static") + endif() + message(STATUS "CMake-Conan: CMake compiler.runtime=${_COMPILER_RUNTIME}") + + # Only define compiler.runtime_type when explicitly requested + # If a generator expression is used, let Conan handle it conditional on build_type + if(NOT _msvc_runtime_library MATCHES ":Debug>") + if(_msvc_runtime_library MATCHES "Debug") + set(_COMPILER_RUNTIME_TYPE "Debug") + else() + set(_COMPILER_RUNTIME_TYPE "Release") + endif() + message(STATUS "CMake-Conan: CMake compiler.runtime_type=${_COMPILER_RUNTIME_TYPE}") + endif() + + unset(_KNOWN_MSVC_RUNTIME_VALUES) + + elseif(_COMPILER MATCHES AppleClang) + set(_COMPILER "apple-clang") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + elseif(_COMPILER MATCHES Clang) + set(_COMPILER "clang") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + elseif(_COMPILER MATCHES GNU) + set(_COMPILER "gcc") + string(REPLACE "." ";" VERSION_LIST ${CMAKE_CXX_COMPILER_VERSION}) + list(GET VERSION_LIST 0 _COMPILER_VERSION) + endif() + + message(STATUS "CMake-Conan: [settings] compiler=${_COMPILER}") + message(STATUS "CMake-Conan: [settings] compiler.version=${_COMPILER_VERSION}") + if (_COMPILER_RUNTIME) + message(STATUS "CMake-Conan: [settings] compiler.runtime=${_COMPILER_RUNTIME}") + endif() + if (_COMPILER_RUNTIME_TYPE) + message(STATUS "CMake-Conan: [settings] compiler.runtime_type=${_COMPILER_RUNTIME_TYPE}") + endif() + + set(${COMPILER} ${_COMPILER} PARENT_SCOPE) + set(${COMPILER_VERSION} ${_COMPILER_VERSION} PARENT_SCOPE) + set(${COMPILER_RUNTIME} ${_COMPILER_RUNTIME} PARENT_SCOPE) + set(${COMPILER_RUNTIME_TYPE} ${_COMPILER_RUNTIME_TYPE} PARENT_SCOPE) +endfunction() + + +function(detect_build_type BUILD_TYPE) + get_property(_MULTICONFIG_GENERATOR GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(NOT _MULTICONFIG_GENERATOR) + # Only set when we know we are in a single-configuration generator + # Note: we may want to fail early if `CMAKE_BUILD_TYPE` is not defined + set(${BUILD_TYPE} ${CMAKE_BUILD_TYPE} PARENT_SCOPE) + endif() +endfunction() + +macro(set_conan_compiler_if_appleclang lang command output_variable) + if(CMAKE_${lang}_COMPILER_ID STREQUAL "AppleClang") + execute_process(COMMAND xcrun --find ${command} + OUTPUT_VARIABLE _xcrun_out OUTPUT_STRIP_TRAILING_WHITESPACE) + cmake_path(GET _xcrun_out PARENT_PATH _xcrun_toolchain_path) + cmake_path(GET CMAKE_${lang}_COMPILER PARENT_PATH _compiler_parent_path) + if ("${_xcrun_toolchain_path}" STREQUAL "${_compiler_parent_path}") + set(${output_variable} "") + endif() + unset(_xcrun_out) + unset(_xcrun_toolchain_path) + unset(_compiler_parent_path) + endif() +endmacro() + + +macro(append_compiler_executables_configuration) + set(_conan_c_compiler "") + set(_conan_cpp_compiler "") + if(CMAKE_C_COMPILER) + set(_conan_c_compiler "\"c\":\"${CMAKE_C_COMPILER}\",") + set_conan_compiler_if_appleclang(C cc _conan_c_compiler) + else() + message(WARNING "CMake-Conan: The C compiler is not defined. " + "Please define CMAKE_C_COMPILER or enable the C language.") + endif() + if(CMAKE_CXX_COMPILER) + set(_conan_cpp_compiler "\"cpp\":\"${CMAKE_CXX_COMPILER}\"") + set_conan_compiler_if_appleclang(CXX c++ _conan_cpp_compiler) + else() + message(WARNING "CMake-Conan: The C++ compiler is not defined. " + "Please define CMAKE_CXX_COMPILER or enable the C++ language.") + endif() + + if(NOT "x${_conan_c_compiler}${_conan_cpp_compiler}" STREQUAL "x") + string(APPEND PROFILE "tools.build:compiler_executables={${_conan_c_compiler}${_conan_cpp_compiler}}\n") + endif() + unset(_conan_c_compiler) + unset(_conan_cpp_compiler) +endmacro() + + +function(detect_host_profile output_file) + detect_os(MYOS MYOS_API_LEVEL MYOS_SDK MYOS_SUBSYSTEM MYOS_VERSION) + detect_arch(MYARCH) + detect_compiler(MYCOMPILER MYCOMPILER_VERSION MYCOMPILER_RUNTIME MYCOMPILER_RUNTIME_TYPE) + detect_cxx_standard(MYCXX_STANDARD) + detect_lib_cxx(MYLIB_CXX) + detect_build_type(MYBUILD_TYPE) + + set(PROFILE "") + string(APPEND PROFILE "[settings]\n") + if(MYARCH) + string(APPEND PROFILE arch=${MYARCH} "\n") + endif() + if(MYOS) + string(APPEND PROFILE os=${MYOS} "\n") + endif() + if(MYOS_API_LEVEL) + string(APPEND PROFILE os.api_level=${MYOS_API_LEVEL} "\n") + endif() + if(MYOS_VERSION) + string(APPEND PROFILE os.version=${MYOS_VERSION} "\n") + endif() + if(MYOS_SDK) + string(APPEND PROFILE os.sdk=${MYOS_SDK} "\n") + endif() + if(MYOS_SUBSYSTEM) + string(APPEND PROFILE os.subsystem=${MYOS_SUBSYSTEM} "\n") + endif() + if(MYCOMPILER) + string(APPEND PROFILE compiler=${MYCOMPILER} "\n") + endif() + if(MYCOMPILER_VERSION) + string(APPEND PROFILE compiler.version=${MYCOMPILER_VERSION} "\n") + endif() + if(MYCOMPILER_RUNTIME) + string(APPEND PROFILE compiler.runtime=${MYCOMPILER_RUNTIME} "\n") + endif() + if(MYCOMPILER_RUNTIME_TYPE) + string(APPEND PROFILE compiler.runtime_type=${MYCOMPILER_RUNTIME_TYPE} "\n") + endif() + if(MYCXX_STANDARD) + string(APPEND PROFILE compiler.cppstd=${MYCXX_STANDARD} "\n") + endif() + if(MYLIB_CXX) + string(APPEND PROFILE compiler.libcxx=${MYLIB_CXX} "\n") + endif() + if(MYBUILD_TYPE) + string(APPEND PROFILE "build_type=${MYBUILD_TYPE}\n") + endif() + + if(NOT DEFINED output_file) + set(_FN "${CMAKE_BINARY_DIR}/profile") + else() + set(_FN ${output_file}) + endif() + + string(APPEND PROFILE "[conf]\n") + string(APPEND PROFILE "tools.cmake.cmaketoolchain:generator=${CMAKE_GENERATOR}\n") + + # propagate compilers via profile + append_compiler_executables_configuration() + + if(MYOS STREQUAL "Android") + string(APPEND PROFILE "tools.android:ndk_path=${CMAKE_ANDROID_NDK}\n") + endif() + + message(STATUS "CMake-Conan: Creating profile ${_FN}") + file(WRITE ${_FN} ${PROFILE}) + message(STATUS "CMake-Conan: Profile: \n${PROFILE}") +endfunction() + + +function(conan_profile_detect_default) + message(STATUS "CMake-Conan: Checking if a default profile exists") + execute_process(COMMAND ${CONAN_COMMAND} profile path default + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + ECHO_OUTPUT_VARIABLE + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + if(NOT ${return_code} EQUAL "0") + message(STATUS "CMake-Conan: The default profile doesn't exist, detecting it.") + execute_process(COMMAND ${CONAN_COMMAND} profile detect + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + ECHO_OUTPUT_VARIABLE + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + endif() +endfunction() + + +function(conan_install) + cmake_parse_arguments(ARGS CONAN_ARGS ${ARGN}) + set(CONAN_OUTPUT_FOLDER ${CMAKE_BINARY_DIR}/conan) + # Invoke "conan install" with the provided arguments + set(CONAN_ARGS ${CONAN_ARGS} -of=${CONAN_OUTPUT_FOLDER}) + message(STATUS "CMake-Conan: conan install ${CMAKE_SOURCE_DIR} ${CONAN_ARGS} ${ARGN}") + + + # In case there was not a valid cmake executable in the PATH, we inject the + # same we used to invoke the provider to the PATH + if(DEFINED PATH_TO_CMAKE_BIN) + set(_OLD_PATH $ENV{PATH}) + set(ENV{PATH} "$ENV{PATH}:${PATH_TO_CMAKE_BIN}") + endif() + + execute_process(COMMAND ${CONAN_COMMAND} install ${CMAKE_SOURCE_DIR} ${CONAN_ARGS} ${ARGN} --format=json + RESULT_VARIABLE return_code + OUTPUT_VARIABLE conan_stdout + ERROR_VARIABLE conan_stderr + ECHO_ERROR_VARIABLE # show the text output regardless + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) + + if(DEFINED PATH_TO_CMAKE_BIN) + set(ENV{PATH} "${_OLD_PATH}") + endif() + + if(NOT "${return_code}" STREQUAL "0") + message(FATAL_ERROR "Conan install failed='${return_code}'") + else() + # the files are generated in a folder that depends on the layout used, if + # one is specified, but we don't know a priori where this is. + # TODO: this can be made more robust if Conan can provide this in the json output + string(JSON CONAN_GENERATORS_FOLDER GET ${conan_stdout} graph nodes 0 generators_folder) + cmake_path(CONVERT ${CONAN_GENERATORS_FOLDER} TO_CMAKE_PATH_LIST CONAN_GENERATORS_FOLDER) + # message("conan stdout: ${conan_stdout}") + message(STATUS "CMake-Conan: CONAN_GENERATORS_FOLDER=${CONAN_GENERATORS_FOLDER}") + set_property(GLOBAL PROPERTY CONAN_GENERATORS_FOLDER "${CONAN_GENERATORS_FOLDER}") + # reconfigure on conanfile changes + string(JSON CONANFILE GET ${conan_stdout} graph nodes 0 label) + message(STATUS "CMake-Conan: CONANFILE=${CMAKE_SOURCE_DIR}/${CONANFILE}") + set_property(DIRECTORY ${CMAKE_SOURCE_DIR} APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS "${CMAKE_SOURCE_DIR}/${CONANFILE}") + # success + set_property(GLOBAL PROPERTY CONAN_INSTALL_SUCCESS TRUE) + endif() +endfunction() + + +function(conan_get_version conan_command conan_current_version) + execute_process( + COMMAND ${conan_command} --version + OUTPUT_VARIABLE conan_output + RESULT_VARIABLE conan_result + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(conan_result) + message(FATAL_ERROR "CMake-Conan: Error when trying to run Conan") + endif() + + string(REGEX MATCH "[0-9]+\\.[0-9]+\\.[0-9]+" conan_version ${conan_output}) + set(${conan_current_version} ${conan_version} PARENT_SCOPE) +endfunction() + + +function(conan_version_check) + set(options ) + set(oneValueArgs MINIMUM CURRENT) + set(multiValueArgs ) + cmake_parse_arguments(CONAN_VERSION_CHECK + "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) + + if(NOT CONAN_VERSION_CHECK_MINIMUM) + message(FATAL_ERROR "CMake-Conan: Required parameter MINIMUM not set!") + endif() + if(NOT CONAN_VERSION_CHECK_CURRENT) + message(FATAL_ERROR "CMake-Conan: Required parameter CURRENT not set!") + endif() + + if(CONAN_VERSION_CHECK_CURRENT VERSION_LESS CONAN_VERSION_CHECK_MINIMUM) + message(FATAL_ERROR "CMake-Conan: Conan version must be ${CONAN_VERSION_CHECK_MINIMUM} or later") + endif() +endfunction() + + +macro(construct_profile_argument argument_variable profile_list) + set(${argument_variable} "") + if("${profile_list}" STREQUAL "CONAN_HOST_PROFILE") + set(_arg_flag "--profile:host=") + elseif("${profile_list}" STREQUAL "CONAN_BUILD_PROFILE") + set(_arg_flag "--profile:build=") + endif() + + set(_profile_list "${${profile_list}}") + list(TRANSFORM _profile_list REPLACE "auto-cmake" "${CMAKE_BINARY_DIR}/conan_host_profile") + list(TRANSFORM _profile_list PREPEND ${_arg_flag}) + set(${argument_variable} ${_profile_list}) + + unset(_arg_flag) + unset(_profile_list) +endmacro() + + +macro(conan_provide_dependency method package_name) + set_property(GLOBAL PROPERTY CONAN_PROVIDE_DEPENDENCY_INVOKED TRUE) + get_property(_conan_install_success GLOBAL PROPERTY CONAN_INSTALL_SUCCESS) + if(NOT _conan_install_success) + find_program(CONAN_COMMAND "conan" REQUIRED) + conan_get_version(${CONAN_COMMAND} CONAN_CURRENT_VERSION) + conan_version_check(MINIMUM ${CONAN_MINIMUM_VERSION} CURRENT ${CONAN_CURRENT_VERSION}) + message(STATUS "CMake-Conan: first find_package() found. Installing dependencies with Conan") + if("default" IN_LIST CONAN_HOST_PROFILE OR "default" IN_LIST CONAN_BUILD_PROFILE) + conan_profile_detect_default() + endif() + if("auto-cmake" IN_LIST CONAN_HOST_PROFILE) + detect_host_profile(${CMAKE_BINARY_DIR}/conan_host_profile) + endif() + construct_profile_argument(_host_profile_flags CONAN_HOST_PROFILE) + construct_profile_argument(_build_profile_flags CONAN_BUILD_PROFILE) + if(EXISTS "${CMAKE_SOURCE_DIR}/conanfile.py") + file(READ "${CMAKE_SOURCE_DIR}/conanfile.py" outfile) + if(NOT "${outfile}" MATCHES ".*CMakeDeps.*") + message(WARNING "Cmake-conan: CMakeDeps generator was not defined in the conanfile") + endif() + set(generator "") + elseif (EXISTS "${CMAKE_SOURCE_DIR}/conanfile.txt") + file(READ "${CMAKE_SOURCE_DIR}/conanfile.txt" outfile) + if(NOT "${outfile}" MATCHES ".*CMakeDeps.*") + message(WARNING "Cmake-conan: CMakeDeps generator was not defined in the conanfile. " + "Please define the generator as it will be mandatory in the future") + endif() + set(generator "-g;CMakeDeps") + endif() + get_property(_multiconfig_generator GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) + if(NOT _multiconfig_generator) + message(STATUS "CMake-Conan: Installing single configuration ${CMAKE_BUILD_TYPE}") + conan_install(${_host_profile_flags} ${_build_profile_flags} ${CONAN_INSTALL_ARGS} ${generator}) + else() + message(STATUS "CMake-Conan: Installing both Debug and Release") + conan_install(${_host_profile_flags} ${_build_profile_flags} -s build_type=Release ${CONAN_INSTALL_ARGS} ${generator}) + conan_install(${_host_profile_flags} ${_build_profile_flags} -s build_type=Debug ${CONAN_INSTALL_ARGS} ${generator}) + endif() + unset(_host_profile_flags) + unset(_build_profile_flags) + unset(_multiconfig_generator) + unset(_conan_install_success) + else() + message(STATUS "CMake-Conan: find_package(${ARGV1}) found, 'conan install' already ran") + unset(_conan_install_success) + endif() + + get_property(_conan_generators_folder GLOBAL PROPERTY CONAN_GENERATORS_FOLDER) + + # Ensure that we consider Conan-provided packages ahead of any other, + # irrespective of other settings that modify the search order or search paths + # This follows the guidelines from the find_package documentation + # (https://cmake.org/cmake/help/latest/command/find_package.html): + # find_package ( PATHS paths... NO_DEFAULT_PATH) + # find_package () + + # Filter out `REQUIRED` from the argument list, as the first call may fail + set(_find_args_${package_name} "${ARGN}") + list(REMOVE_ITEM _find_args_${package_name} "REQUIRED") + if(NOT "MODULE" IN_LIST _find_args_${package_name}) + find_package(${package_name} ${_find_args_${package_name}} BYPASS_PROVIDER PATHS "${_conan_generators_folder}" NO_DEFAULT_PATH NO_CMAKE_FIND_ROOT_PATH) + unset(_find_args_${package_name}) + endif() + + # Invoke find_package a second time - if the first call succeeded, + # this will simply reuse the result. If not, fall back to CMake default search + # behaviour, also allowing modules to be searched. + if(NOT ${package_name}_FOUND) + list(FIND CMAKE_MODULE_PATH "${_conan_generators_folder}" _index) + if(_index EQUAL -1) + list(PREPEND CMAKE_MODULE_PATH "${_conan_generators_folder}") + endif() + unset(_index) + find_package(${package_name} ${ARGN} BYPASS_PROVIDER) + list(REMOVE_ITEM CMAKE_MODULE_PATH "${_conan_generators_folder}") + endif() +endmacro() + +#[=[ not needed by Qt Creator, and if not commented it would break the auto-setup feature + +cmake_language( + SET_DEPENDENCY_PROVIDER conan_provide_dependency + SUPPORTED_METHODS FIND_PACKAGE +) + + +macro(conan_provide_dependency_check) + set(_CONAN_PROVIDE_DEPENDENCY_INVOKED FALSE) + get_property(_CONAN_PROVIDE_DEPENDENCY_INVOKED GLOBAL PROPERTY CONAN_PROVIDE_DEPENDENCY_INVOKED) + if(NOT _CONAN_PROVIDE_DEPENDENCY_INVOKED) + message(WARNING "Conan is correctly configured as dependency provider, " + "but Conan has not been invoked. Please add at least one " + "call to `find_package()`.") + if(DEFINED CONAN_COMMAND) + # supress warning in case `CONAN_COMMAND` was specified but unused. + set(_CONAN_COMMAND ${CONAN_COMMAND}) + unset(_CONAN_COMMAND) + endif() + endif() + unset(_CONAN_PROVIDE_DEPENDENCY_INVOKED) +endmacro() + + +# Add a deferred call at the end of processing the top-level directory +# to check if the dependency provider was invoked at all. +cmake_language(DEFER DIRECTORY "${CMAKE_SOURCE_DIR}" CALL conan_provide_dependency_check) + +]=] + +# Configurable variables for Conan profiles +set(CONAN_HOST_PROFILE "default;auto-cmake" CACHE STRING "Conan host profile") +set(CONAN_BUILD_PROFILE "default" CACHE STRING "Conan build profile") +set(CONAN_INSTALL_ARGS "--build=missing" CACHE STRING "Command line arguments for conan install") + +find_program(_cmake_program NAMES cmake NO_PACKAGE_ROOT_PATH NO_CMAKE_PATH NO_CMAKE_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH NO_CMAKE_FIND_ROOT_PATH) +if(NOT _cmake_program) + get_filename_component(PATH_TO_CMAKE_BIN "${CMAKE_COMMAND}" DIRECTORY) + set(PATH_TO_CMAKE_BIN "${PATH_TO_CMAKE_BIN}" CACHE INTERNAL "Path where the CMake executable is") +endif() + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QAbstractItemModel.B2E57462D8855041.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QAbstractItemModel.B2E57462D8855041.idx new file mode 100644 index 0000000..dc3e180 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QAbstractItemModel.B2E57462D8855041.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QApplication.188AC94D2D5F07DB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QApplication.188AC94D2D5F07DB.idx new file mode 100644 index 0000000..cc238bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QApplication.188AC94D2D5F07DB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QDir.949CFDFE2CE8085C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QDir.949CFDFE2CE8085C.idx new file mode 100644 index 0000000..b3fbf9a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QDir.949CFDFE2CE8085C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QJsonDocument.E252A87B029A8934.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QJsonDocument.E252A87B029A8934.idx new file mode 100644 index 0000000..e034c69 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QJsonDocument.E252A87B029A8934.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QJsonValue.7705217E1B75AD5B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QJsonValue.7705217E1B75AD5B.idx new file mode 100644 index 0000000..8767877 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QJsonValue.7705217E1B75AD5B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QMainWindow.CB736650B8400980.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QMainWindow.CB736650B8400980.idx new file mode 100644 index 0000000..f98812a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QMainWindow.CB736650B8400980.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QMenuBar.0B5BEE3B8D108773.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QMenuBar.0B5BEE3B8D108773.idx new file mode 100644 index 0000000..00a9077 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QMenuBar.0B5BEE3B8D108773.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QPluginLoader.4B14155B7CABCAF2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QPluginLoader.4B14155B7CABCAF2.idx new file mode 100644 index 0000000..cb0679a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QPluginLoader.4B14155B7CABCAF2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QStatusBar.07D306419B7B0A13.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QStatusBar.07D306419B7B0A13.idx new file mode 100644 index 0000000..e930b99 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QStatusBar.07D306419B7B0A13.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QString.5EB4D1905D9A4EB8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QString.5EB4D1905D9A4EB8.idx new file mode 100644 index 0000000..60b9129 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QString.5EB4D1905D9A4EB8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QVariant.58CE40BEB75EA7EF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QVariant.58CE40BEB75EA7EF.idx new file mode 100644 index 0000000..89302b5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QVariant.58CE40BEB75EA7EF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QWidget.96731DA0EF80CCA2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QWidget.96731DA0EF80CCA2.idx new file mode 100644 index 0000000..3fa8dfa Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QWidget.96731DA0EF80CCA2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QtPlugin.51BABBE0A7245B43.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QtPlugin.51BABBE0A7245B43.idx new file mode 100644 index 0000000..2d5f65e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/QtPlugin.51BABBE0A7245B43.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg___gnuc_va_list.h.E3B4DE1A775D738C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg___gnuc_va_list.h.E3B4DE1A775D738C.idx new file mode 100644 index 0000000..6920400 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg___gnuc_va_list.h.E3B4DE1A775D738C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg___va_copy.h.57FB91DB25BE2DF6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg___va_copy.h.57FB91DB25BE2DF6.idx new file mode 100644 index 0000000..ab03782 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg___va_copy.h.57FB91DB25BE2DF6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg_va_arg.h.EE34CD6927073710.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg_va_arg.h.EE34CD6927073710.idx new file mode 100644 index 0000000..898ce6f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg_va_arg.h.EE34CD6927073710.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg_va_copy.h.43CCCEA63074B63C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg_va_copy.h.43CCCEA63074B63C.idx new file mode 100644 index 0000000..e487d04 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg_va_copy.h.43CCCEA63074B63C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg_va_list.h.AE9FAD9DCB79CCE5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg_va_list.h.AE9FAD9DCB79CCE5.idx new file mode 100644 index 0000000..8d02004 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stdarg_va_list.h.AE9FAD9DCB79CCE5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.6EDE18E563042F87.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.6EDE18E563042F87.idx new file mode 100644 index 0000000..28d7b15 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_max_align_t.h.6EDE18E563042F87.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_null.h.C4BC2DA60FC605B2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_null.h.C4BC2DA60FC605B2.idx new file mode 100644 index 0000000..0101e88 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_null.h.C4BC2DA60FC605B2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_nullptr_t.h.8F21E9DFABF6CEF0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_nullptr_t.h.8F21E9DFABF6CEF0.idx new file mode 100644 index 0000000..2ee5700 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_nullptr_t.h.8F21E9DFABF6CEF0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_offsetof.h.C195D2857CD0D6CE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_offsetof.h.C195D2857CD0D6CE.idx new file mode 100644 index 0000000..7e597e0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_offsetof.h.C195D2857CD0D6CE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_ptrdiff_t.h.999D87F80CBFE81E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_ptrdiff_t.h.999D87F80CBFE81E.idx new file mode 100644 index 0000000..7a01070 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_ptrdiff_t.h.999D87F80CBFE81E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_size_t.h.44AC726005E5DB49.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_size_t.h.44AC726005E5DB49.idx new file mode 100644 index 0000000..5152825 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_size_t.h.44AC726005E5DB49.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_wchar_t.h.CC163415C6FEADEA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_wchar_t.h.CC163415C6FEADEA.idx new file mode 100644 index 0000000..4ba9485 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_wchar_t.h.CC163415C6FEADEA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_wint_t.h.F27B83269001BBA0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_wint_t.h.F27B83269001BBA0.idx new file mode 100644 index 0000000..06f4bf9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/__stddef_wint_t.h.F27B83269001BBA0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw.h.9717ED80F6994E93.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw.h.9717ED80F6994E93.idx new file mode 100644 index 0000000..bf22d09 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw.h.9717ED80F6994E93.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.FB41EB6A8311F5EB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.FB41EB6A8311F5EB.idx new file mode 100644 index 0000000..db8e272 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_ddk.h.FB41EB6A8311F5EB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.F9164C6D63B40434.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.F9164C6D63B40434.idx new file mode 100644 index 0000000..064f638 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_mac.h.F9164C6D63B40434.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.6453DD6E54B996DD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.6453DD6E54B996DD.idx new file mode 100644 index 0000000..a9c87b7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_off_t.h.6453DD6E54B996DD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.D86BAEE7AE97F5AD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.D86BAEE7AE97F5AD.idx new file mode 100644 index 0000000..f102f4a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_secapi.h.D86BAEE7AE97F5AD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.A74323887CE4B4A3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.A74323887CE4B4A3.idx new file mode 100644 index 0000000..4541027 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_mingw_stat64.h.A74323887CE4B4A3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_timeval.h.4835EC1E4BBE25AE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_timeval.h.4835EC1E4BBE25AE.idx new file mode 100644 index 0000000..38d9ef9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/_timeval.h.4835EC1E4BBE25AE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/algorithm.F283F81AA91E0450.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/algorithm.F283F81AA91E0450.idx new file mode 100644 index 0000000..3e8f0bd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/algorithm.F283F81AA91E0450.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.3B41BEB858D30C93.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.3B41BEB858D30C93.idx new file mode 100644 index 0000000..3d5bc79 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/algorithmfwd.h.3B41BEB858D30C93.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/align.h.88322FFA93A2A117.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/align.h.88322FFA93A2A117.idx new file mode 100644 index 0000000..735b779 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/align.h.88322FFA93A2A117.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.77920C5A486C7BCC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.77920C5A486C7BCC.idx new file mode 100644 index 0000000..79e90cf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/aligned_buffer.h.77920C5A486C7BCC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/alloc_traits.h.00D4816B7AB2E2C8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/alloc_traits.h.00D4816B7AB2E2C8.idx new file mode 100644 index 0000000..c987cbb Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/alloc_traits.h.00D4816B7AB2E2C8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/alloc_traits.h.7CFBD298781FA216.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/alloc_traits.h.7CFBD298781FA216.idx new file mode 100644 index 0000000..461c576 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/alloc_traits.h.7CFBD298781FA216.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.F3A45C5BC294933D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.F3A45C5BC294933D.idx new file mode 100644 index 0000000..f4b5c97 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/allocated_ptr.h.F3A45C5BC294933D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/allocator.h.E52986B961420A8D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/allocator.h.E52986B961420A8D.idx new file mode 100644 index 0000000..90256f8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/allocator.h.E52986B961420A8D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/array.39AB7B18FD5F970F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/array.39AB7B18FD5F970F.idx new file mode 100644 index 0000000..f5f05c5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/array.39AB7B18FD5F970F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/assert.h.5DE0CEE97AE7DB5A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/assert.h.5DE0CEE97AE7DB5A.idx new file mode 100644 index 0000000..527729b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/assert.h.5DE0CEE97AE7DB5A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/assertions.h.543F550C2CAFC461.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/assertions.h.543F550C2CAFC461.idx new file mode 100644 index 0000000..86bfed9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/assertions.h.543F550C2CAFC461.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic.C72577E4CD5490B8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic.C72577E4CD5490B8.idx new file mode 100644 index 0000000..7f88317 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic.C72577E4CD5490B8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic_base.h.F15511415AD86837.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic_base.h.F15511415AD86837.idx new file mode 100644 index 0000000..52e2126 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic_base.h.F15511415AD86837.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.353FE7B5BA050A77.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.353FE7B5BA050A77.idx new file mode 100644 index 0000000..38ecf26 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic_lockfree_defines.h.353FE7B5BA050A77.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic_word.h.EC751638F7B20706.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic_word.h.EC751638F7B20706.idx new file mode 100644 index 0000000..e2c0422 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomic_word.h.EC751638F7B20706.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomicity.h.24C17557BBFA66A7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomicity.h.24C17557BBFA66A7.idx new file mode 100644 index 0000000..328bc5d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/atomicity.h.24C17557BBFA66A7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/auto_ptr.h.EDF0018AB85AC6C6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/auto_ptr.h.EDF0018AB85AC6C6.idx new file mode 100644 index 0000000..2875e7e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/auto_ptr.h.EDF0018AB85AC6C6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_ios.h.FACF1A4590EC3664.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_ios.h.FACF1A4590EC3664.idx new file mode 100644 index 0000000..e36a8a7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_ios.h.FACF1A4590EC3664.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_ios.tcc.95651F1DEA11483E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_ios.tcc.95651F1DEA11483E.idx new file mode 100644 index 0000000..66bf4aa Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_ios.tcc.95651F1DEA11483E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_string.h.78B2761F5DB2A235.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_string.h.78B2761F5DB2A235.idx new file mode 100644 index 0000000..36cf4b1 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_string.h.78B2761F5DB2A235.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_string.tcc.B28AF853A646AB26.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_string.tcc.B28AF853A646AB26.idx new file mode 100644 index 0000000..aea6633 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/basic_string.tcc.B28AF853A646AB26.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.83149AE0BA5F53D4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.83149AE0BA5F53D4.idx new file mode 100644 index 0000000..be26a9d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/bessel_function.tcc.83149AE0BA5F53D4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/beta_function.tcc.009DFAFBB0772188.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/beta_function.tcc.009DFAFBB0772188.idx new file mode 100644 index 0000000..da9f825 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/beta_function.tcc.009DFAFBB0772188.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/binders.h.C23BDF1091D946E6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/binders.h.C23BDF1091D946E6.idx new file mode 100644 index 0000000..346ac2f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/binders.h.C23BDF1091D946E6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/bit.EE9223057BE6CD4E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/bit.EE9223057BE6CD4E.idx new file mode 100644 index 0000000..209d707 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/bit.EE9223057BE6CD4E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/c++allocator.h.4FB8508A1A6D56AE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/c++allocator.h.4FB8508A1A6D56AE.idx new file mode 100644 index 0000000..01af4e0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/c++allocator.h.4FB8508A1A6D56AE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/c++config.h.81F56C14ADC8C6DA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/c++config.h.81F56C14ADC8C6DA.idx new file mode 100644 index 0000000..1f6a9e6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/c++config.h.81F56C14ADC8C6DA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/c++locale.h.DD93838535F87368.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/c++locale.h.DD93838535F87368.idx new file mode 100644 index 0000000..456db57 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/c++locale.h.DD93838535F87368.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cassert.0166AA67D9029FDF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cassert.0166AA67D9029FDF.idx new file mode 100644 index 0000000..a7362e7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cassert.0166AA67D9029FDF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cctype.521B47CD3E187E74.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cctype.521B47CD3E187E74.idx new file mode 100644 index 0000000..5a0a41b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cctype.521B47CD3E187E74.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cerrno.A603249F68BAC16C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cerrno.A603249F68BAC16C.idx new file mode 100644 index 0000000..388697d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cerrno.A603249F68BAC16C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/char_traits.h.FC63F0F81577F875.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/char_traits.h.FC63F0F81577F875.idx new file mode 100644 index 0000000..fa0591f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/char_traits.h.FC63F0F81577F875.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/charconv.h.75C283B33C1A6891.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/charconv.h.75C283B33C1A6891.idx new file mode 100644 index 0000000..eebfa7a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/charconv.h.75C283B33C1A6891.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/chrono.79C9714F4955E996.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/chrono.79C9714F4955E996.idx new file mode 100644 index 0000000..15fd147 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/chrono.79C9714F4955E996.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/chrono.h.1DAF3F759B8D3EDE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/chrono.h.1DAF3F759B8D3EDE.idx new file mode 100644 index 0000000..f43b3b7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/chrono.h.1DAF3F759B8D3EDE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/climits.F423B838638A6B19.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/climits.F423B838638A6B19.idx new file mode 100644 index 0000000..4b7c57f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/climits.F423B838638A6B19.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/clocale.7F8482780280C769.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/clocale.7F8482780280C769.idx new file mode 100644 index 0000000..19fb2b2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/clocale.7F8482780280C769.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cmainwindow.cpp.F661E47C86C8D602.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cmainwindow.cpp.F661E47C86C8D602.idx new file mode 100644 index 0000000..4556256 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cmainwindow.cpp.F661E47C86C8D602.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cmainwindow.h.FFDABA2D3327A137.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cmainwindow.h.FFDABA2D3327A137.idx new file mode 100644 index 0000000..2b5d1f7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cmainwindow.h.FFDABA2D3327A137.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cmath.D167E3ED34BBF76A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cmath.D167E3ED34BBF76A.idx new file mode 100644 index 0000000..341d415 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cmath.D167E3ED34BBF76A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/codecvt.E4F293F96257E598.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/codecvt.E4F293F96257E598.idx new file mode 100644 index 0000000..baf7336 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/codecvt.E4F293F96257E598.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/codecvt.h.E6A472E65A6C7AEF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/codecvt.h.E6A472E65A6C7AEF.idx new file mode 100644 index 0000000..74f300f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/codecvt.h.E6A472E65A6C7AEF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/compare.3D1BAB4C71307DD6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/compare.3D1BAB4C71307DD6.idx new file mode 100644 index 0000000..1245e3b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/compare.3D1BAB4C71307DD6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/concept_check.h.C18AE13023F76484.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/concept_check.h.C18AE13023F76484.idx new file mode 100644 index 0000000..37de091 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/concept_check.h.C18AE13023F76484.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/concurrence.h.1A57A18C8FC7D1C5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/concurrence.h.1A57A18C8FC7D1C5.idx new file mode 100644 index 0000000..7229580 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/concurrence.h.1A57A18C8FC7D1C5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt.h.91FFED440C496553.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt.h.91FFED440C496553.idx new file mode 100644 index 0000000..8809089 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt.h.91FFED440C496553.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.0574045B9E8BA854.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.0574045B9E8BA854.idx new file mode 100644 index 0000000..4c8c686 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt_startup.h.0574045B9E8BA854.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.B50F2793FA6E16FF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.B50F2793FA6E16FF.idx new file mode 100644 index 0000000..669e8bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt_stdio_config.h.B50F2793FA6E16FF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.5E6D6DF67F778DB5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.5E6D6DF67F778DB5.idx new file mode 100644 index 0000000..c97b4b5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/corecrt_wstdlib.h.5E6D6DF67F778DB5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.F722D5AD11F1268F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.F722D5AD11F1268F.idx new file mode 100644 index 0000000..38bf790 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cpp_type_traits.h.F722D5AD11F1268F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cpu_defines.h.A2A4F72478FEAC9B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cpu_defines.h.A2A4F72478FEAC9B.idx new file mode 100644 index 0000000..aa68098 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cpu_defines.h.A2A4F72478FEAC9B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/crtdefs.h.264B73ED209417C9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/crtdefs.h.264B73ED209417C9.idx new file mode 100644 index 0000000..b86fd5b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/crtdefs.h.264B73ED209417C9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstddef.F4411CBF44822BC8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstddef.F4411CBF44822BC8.idx new file mode 100644 index 0000000..a1062f0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstddef.F4411CBF44822BC8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstdint.320E91D4A067C09F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstdint.320E91D4A067C09F.idx new file mode 100644 index 0000000..00877f6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstdint.320E91D4A067C09F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstdio.0AA2EF29E0BCAE6E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstdio.0AA2EF29E0BCAE6E.idx new file mode 100644 index 0000000..6f8d478 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstdio.0AA2EF29E0BCAE6E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstdlib.4C4100D031DD8133.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstdlib.4C4100D031DD8133.idx new file mode 100644 index 0000000..d3ce09c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstdlib.4C4100D031DD8133.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstring.C4AD4EF234B90A22.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstring.C4AD4EF234B90A22.idx new file mode 100644 index 0000000..6bbb28b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cstring.C4AD4EF234B90A22.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctime.D9F78403778E61AC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctime.D9F78403778E61AC.idx new file mode 100644 index 0000000..179ef3f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctime.D9F78403778E61AC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctype.h.31E88DD6D9FD92A7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctype.h.31E88DD6D9FD92A7.idx new file mode 100644 index 0000000..ca49ad2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctype.h.31E88DD6D9FD92A7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctype_base.h.86092007BEC79F39.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctype_base.h.86092007BEC79F39.idx new file mode 100644 index 0000000..d5d593a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctype_base.h.86092007BEC79F39.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctype_inline.h.E44484578FEC4B7F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctype_inline.h.E44484578FEC4B7F.idx new file mode 100644 index 0000000..22ac415 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ctype_inline.h.E44484578FEC4B7F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cwchar.B20962833FEEED5D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cwchar.B20962833FEEED5D.idx new file mode 100644 index 0000000..6f96dc7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cwchar.B20962833FEEED5D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cwctype.FC64F8C12C4AA83E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cwctype.FC64F8C12C4AA83E.idx new file mode 100644 index 0000000..5a23384 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cwctype.FC64F8C12C4AA83E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.682ABAFCEE4920BE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.682ABAFCEE4920BE.idx new file mode 100644 index 0000000..42f0393 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cxxabi_forced.h.682ABAFCEE4920BE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.D1F69354C8D30D0A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.D1F69354C8D30D0A.idx new file mode 100644 index 0000000..d908daf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/cxxabi_init_exception.h.D1F69354C8D30D0A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/debug.h.18F111068D3C9EC4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/debug.h.18F111068D3C9EC4.idx new file mode 100644 index 0000000..bb64f10 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/debug.h.18F111068D3C9EC4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.9C6B56BA6081C482.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.9C6B56BA6081C482.idx new file mode 100644 index 0000000..db3c1bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ell_integral.tcc.9C6B56BA6081C482.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/enable_special_members.h.3A1A952160F21732.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/enable_special_members.h.3A1A952160F21732.idx new file mode 100644 index 0000000..5f451f6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/enable_special_members.h.3A1A952160F21732.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/erase_if.h.91214BD874CB7E33.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/erase_if.h.91214BD874CB7E33.idx new file mode 100644 index 0000000..fbd926d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/erase_if.h.91214BD874CB7E33.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/errno.h.9280179BBF7933D6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/errno.h.9280179BBF7933D6.idx new file mode 100644 index 0000000..a538013 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/errno.h.9280179BBF7933D6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/error_constants.h.9842103A5A9C3A69.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/error_constants.h.9842103A5A9C3A69.idx new file mode 100644 index 0000000..b419d5e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/error_constants.h.9842103A5A9C3A69.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception.3F3AC25BBC225B9C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception.3F3AC25BBC225B9C.idx new file mode 100644 index 0000000..e09879e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception.3F3AC25BBC225B9C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception.h.3057D404702421BC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception.h.3057D404702421BC.idx new file mode 100644 index 0000000..bc9096b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception.h.3057D404702421BC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception_defines.h.8FC63004507631CB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception_defines.h.8FC63004507631CB.idx new file mode 100644 index 0000000..93a4305 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception_defines.h.8FC63004507631CB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception_ptr.h.702998FFBF6BABB0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception_ptr.h.702998FFBF6BABB0.idx new file mode 100644 index 0000000..47fb45b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exception_ptr.h.702998FFBF6BABB0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/execution_defs.h.6ED2EB3F267824E4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/execution_defs.h.6ED2EB3F267824E4.idx new file mode 100644 index 0000000..79e0169 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/execution_defs.h.6ED2EB3F267824E4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.39CBDA50FF5F14BF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.39CBDA50FF5F14BF.idx new file mode 100644 index 0000000..ec2c625 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/exp_integral.tcc.39CBDA50FF5F14BF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/filesystem.8D9F8F572ECC8562.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/filesystem.8D9F8F572ECC8562.idx new file mode 100644 index 0000000..a123ec4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/filesystem.8D9F8F572ECC8562.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_dir.h.BE3B7D4E94432A6F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_dir.h.BE3B7D4E94432A6F.idx new file mode 100644 index 0000000..a319a0c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_dir.h.BE3B7D4E94432A6F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_fwd.h.F476DB9D0429C0F2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_fwd.h.F476DB9D0429C0F2.idx new file mode 100644 index 0000000..24a77a5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_fwd.h.F476DB9D0429C0F2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_ops.h.AD070A594608BBD3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_ops.h.AD070A594608BBD3.idx new file mode 100644 index 0000000..3d1fe71 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_ops.h.AD070A594608BBD3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_path.h.0F74759D9247C2EF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_path.h.0F74759D9247C2EF.idx new file mode 100644 index 0000000..425aeb9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/fs_path.h.0F74759D9247C2EF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/functexcept.h.2F54B8A5E45CD4C9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/functexcept.h.2F54B8A5E45CD4C9.idx new file mode 100644 index 0000000..0b0a809 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/functexcept.h.2F54B8A5E45CD4C9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/functional.40A20C33195418F0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/functional.40A20C33195418F0.idx new file mode 100644 index 0000000..39713a5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/functional.40A20C33195418F0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/functional_hash.h.F121DED80726E0BE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/functional_hash.h.F121DED80726E0BE.idx new file mode 100644 index 0000000..f157ae0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/functional_hash.h.F121DED80726E0BE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/gamma.tcc.FAEF068DE6E02F62.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/gamma.tcc.FAEF068DE6E02F62.idx new file mode 100644 index 0000000..d0ed64c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/gamma.tcc.FAEF068DE6E02F62.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.DFBC18507681A683.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.DFBC18507681A683.idx new file mode 100644 index 0000000..dbb52d5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/glue_algorithm_defs.h.DFBC18507681A683.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.FF6778122421F159.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.FF6778122421F159.idx new file mode 100644 index 0000000..be01cb6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/glue_memory_defs.h.FF6778122421F159.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.CD8D00185D343FD9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.CD8D00185D343FD9.idx new file mode 100644 index 0000000..790e11d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/glue_numeric_defs.h.CD8D00185D343FD9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/googlefonts.cpp.B369C1802C96E7DC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/googlefonts.cpp.B369C1802C96E7DC.idx new file mode 100644 index 0000000..cf063dd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/googlefonts.cpp.B369C1802C96E7DC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/googlefonts.h.E2625AA26ABFB0B6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/googlefonts.h.E2625AA26ABFB0B6.idx new file mode 100644 index 0000000..028ed47 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/googlefonts.h.E2625AA26ABFB0B6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/gthr-default.h.8B441E53410D88BA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/gthr-default.h.8B441E53410D88BA.idx new file mode 100644 index 0000000..d16d8a5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/gthr-default.h.8B441E53410D88BA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/gthr.h.534B9BDA11A4DA0F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/gthr.h.534B9BDA11A4DA0F.idx new file mode 100644 index 0000000..2573621 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/gthr.h.534B9BDA11A4DA0F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hash_bytes.h.77D5C3F86373CD76.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hash_bytes.h.77D5C3F86373CD76.idx new file mode 100644 index 0000000..d46883b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hash_bytes.h.77D5C3F86373CD76.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hashtable.h.33361502E5E748CC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hashtable.h.33361502E5E748CC.idx new file mode 100644 index 0000000..b0e2706 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hashtable.h.33361502E5E748CC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.F61098E9A90B451C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.F61098E9A90B451C.idx new file mode 100644 index 0000000..3931bed Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hashtable_policy.h.F61098E9A90B451C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.045AE4809E7175D0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.045AE4809E7175D0.idx new file mode 100644 index 0000000..d69641e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/hypergeometric.tcc.045AE4809E7175D0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ifontprovider.h.50FE5FB4C35740DC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ifontprovider.h.50FE5FB4C35740DC.idx new file mode 100644 index 0000000..fca8a69 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ifontprovider.h.50FE5FB4C35740DC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/initializer_list.7524BBB4E75991DF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/initializer_list.7524BBB4E75991DF.idx new file mode 100644 index 0000000..d71afc7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/initializer_list.7524BBB4E75991DF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/invoke.h.39A33F95E57C1B0E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/invoke.h.39A33F95E57C1B0E.idx new file mode 100644 index 0000000..d082b59 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/invoke.h.39A33F95E57C1B0E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/iomanip.39D25BB2E0944A06.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/iomanip.39D25BB2E0944A06.idx new file mode 100644 index 0000000..5a668dc Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/iomanip.39D25BB2E0944A06.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ios.28D209C7F5C51399.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ios.28D209C7F5C51399.idx new file mode 100644 index 0000000..1e8589c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ios.28D209C7F5C51399.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ios_base.h.EE77BA181F8F922E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ios_base.h.EE77BA181F8F922E.idx new file mode 100644 index 0000000..60ce6b8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ios_base.h.EE77BA181F8F922E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/iosfwd.007B189B77488216.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/iosfwd.007B189B77488216.idx new file mode 100644 index 0000000..ffd759a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/iosfwd.007B189B77488216.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/istream.B09AFA1D87F27C29.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/istream.B09AFA1D87F27C29.idx new file mode 100644 index 0000000..be671a8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/istream.B09AFA1D87F27C29.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/istream.tcc.63D6C659D8600659.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/istream.tcc.63D6C659D8600659.idx new file mode 100644 index 0000000..b68426a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/istream.tcc.63D6C659D8600659.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/iterator.6A4DD839D54A9319.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/iterator.6A4DD839D54A9319.idx new file mode 100644 index 0000000..a6b2734 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/iterator.6A4DD839D54A9319.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.8B933620627A6CFD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.8B933620627A6CFD.idx new file mode 100644 index 0000000..a0672dc Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/legendre_function.tcc.8B933620627A6CFD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/limits.341B53349264D8C2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/limits.341B53349264D8C2.idx new file mode 100644 index 0000000..5eb0ebc Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/limits.341B53349264D8C2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/limits.h.B7088A29B5B32F97.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/limits.h.B7088A29B5B32F97.idx new file mode 100644 index 0000000..2027426 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/limits.h.B7088A29B5B32F97.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/limits.h.CED4D1D71838D549.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/limits.h.CED4D1D71838D549.idx new file mode 100644 index 0000000..88f5c31 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/limits.h.CED4D1D71838D549.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/list.39AF5AD05F6E643D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/list.39AF5AD05F6E643D.idx new file mode 100644 index 0000000..1d5d011 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/list.39AF5AD05F6E643D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/list.tcc.4339571EC7B689AF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/list.tcc.4339571EC7B689AF.idx new file mode 100644 index 0000000..a7de1e6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/list.tcc.4339571EC7B689AF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale.59C31D7FF52C1A3E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale.59C31D7FF52C1A3E.idx new file mode 100644 index 0000000..f1a46f1 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale.59C31D7FF52C1A3E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale.h.1F6BB5129F2908DA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale.h.1F6BB5129F2908DA.idx new file mode 100644 index 0000000..0139965 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale.h.1F6BB5129F2908DA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_classes.h.EFFEA9DA08D9D271.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_classes.h.EFFEA9DA08D9D271.idx new file mode 100644 index 0000000..357fc63 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_classes.h.EFFEA9DA08D9D271.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.BC6C7713E589DCFB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.BC6C7713E589DCFB.idx new file mode 100644 index 0000000..1b8e652 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_classes.tcc.BC6C7713E589DCFB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_conv.h.C297B0351B3D2578.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_conv.h.C297B0351B3D2578.idx new file mode 100644 index 0000000..bdb4ede Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_conv.h.C297B0351B3D2578.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets.h.79B5B80D225059A7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets.h.79B5B80D225059A7.idx new file mode 100644 index 0000000..1afc32a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets.h.79B5B80D225059A7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets.tcc.4EC1DF46EBC395BE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets.tcc.4EC1DF46EBC395BE.idx new file mode 100644 index 0000000..be7f744 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets.tcc.4EC1DF46EBC395BE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.h.48D74AFE5D8FE23E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.h.48D74AFE5D8FE23E.idx new file mode 100644 index 0000000..1f292be Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.h.48D74AFE5D8FE23E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.tcc.B1A6ACCD18EE3157.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.tcc.B1A6ACCD18EE3157.idx new file mode 100644 index 0000000..a195142 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/locale_facets_nonio.tcc.B1A6ACCD18EE3157.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/localefwd.h.3DADEF5A180B8221.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/localefwd.h.3DADEF5A180B8221.idx new file mode 100644 index 0000000..9ec5b3a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/localefwd.h.3DADEF5A180B8221.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/main.cpp.ADF0C9C5AC94232F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/main.cpp.ADF0C9C5AC94232F.idx new file mode 100644 index 0000000..b518518 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/main.cpp.ADF0C9C5AC94232F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/malloc.h.8652F336CCBCE739.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/malloc.h.8652F336CCBCE739.idx new file mode 100644 index 0000000..c2ca973 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/malloc.h.8652F336CCBCE739.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/map.ADDA10F030C1B0EA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/map.ADDA10F030C1B0EA.idx new file mode 100644 index 0000000..a994393 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/map.ADDA10F030C1B0EA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/math.h.F997C0941CFC7859.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/math.h.F997C0941CFC7859.idx new file mode 100644 index 0000000..1f03ac9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/math.h.F997C0941CFC7859.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/memory.6A35E0723196E38F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/memory.6A35E0723196E38F.idx new file mode 100644 index 0000000..224d34c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/memory.6A35E0723196E38F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/memory_resource.h.949F75803E618383.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/memory_resource.h.949F75803E618383.idx new file mode 100644 index 0000000..535d2ca Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/memory_resource.h.949F75803E618383.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/memoryfwd.h.88C3DCE5983EBBEF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/memoryfwd.h.88C3DCE5983EBBEF.idx new file mode 100644 index 0000000..e586f17 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/memoryfwd.h.88C3DCE5983EBBEF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/messages_members.h.1103507E7A52C5CE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/messages_members.h.1103507E7A52C5CE.idx new file mode 100644 index 0000000..4572b4f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/messages_members.h.1103507E7A52C5CE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/mm_malloc.h.0C172CB22B11E5AA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/mm_malloc.h.0C172CB22B11E5AA.idx new file mode 100644 index 0000000..7f934ca Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/mm_malloc.h.0C172CB22B11E5AA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.214164428DB64FAD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.214164428DB64FAD.idx new file mode 100644 index 0000000..adced4d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/modified_bessel_func.tcc.214164428DB64FAD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/move.h.5D1F9D6408256E4B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/move.h.5D1F9D6408256E4B.idx new file mode 100644 index 0000000..a1c8757 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/move.h.5D1F9D6408256E4B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/nested_exception.h.7BD4F36917CF248D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/nested_exception.h.7BD4F36917CF248D.idx new file mode 100644 index 0000000..96029ad Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/nested_exception.h.7BD4F36917CF248D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/new.33C83A9D077341A5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/new.33C83A9D077341A5.idx new file mode 100644 index 0000000..e5fecf2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/new.33C83A9D077341A5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/new_allocator.h.AF994E96FEA5FBF7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/new_allocator.h.AF994E96FEA5FBF7.idx new file mode 100644 index 0000000..f2f8250 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/new_allocator.h.AF994E96FEA5FBF7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/node_handle.h.E26ADE863B937BD0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/node_handle.h.E26ADE863B937BD0.idx new file mode 100644 index 0000000..7d9ad63 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/node_handle.h.E26ADE863B937BD0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/numeric.BC1C3C66052C2BF1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/numeric.BC1C3C66052C2BF1.idx new file mode 100644 index 0000000..0395809 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/numeric.BC1C3C66052C2BF1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/numeric_traits.h.34B5BAA4F0B42816.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/numeric_traits.h.34B5BAA4F0B42816.idx new file mode 100644 index 0000000..6fad0bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/numeric_traits.h.34B5BAA4F0B42816.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/optional.9D6F368BCB0044D2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/optional.9D6F368BCB0044D2.idx new file mode 100644 index 0000000..c25d409 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/optional.9D6F368BCB0044D2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/os_defines.h.246DDA2DA29840CF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/os_defines.h.246DDA2DA29840CF.idx new file mode 100644 index 0000000..edc6b0e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/os_defines.h.246DDA2DA29840CF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ostream.B20FFD3D38003ADE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ostream.B20FFD3D38003ADE.idx new file mode 100644 index 0000000..a335f5f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ostream.B20FFD3D38003ADE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ostream.tcc.9AD0F45BD6AB1855.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ostream.tcc.9AD0F45BD6AB1855.idx new file mode 100644 index 0000000..aa3384a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ostream.tcc.9AD0F45BD6AB1855.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ostream_insert.h.53675B8219EAF7D8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ostream_insert.h.53675B8219EAF7D8.idx new file mode 100644 index 0000000..2a95be6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ostream_insert.h.53675B8219EAF7D8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/parse_numbers.h.9F35C43BEF2FCF68.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/parse_numbers.h.9F35C43BEF2FCF68.idx new file mode 100644 index 0000000..8b2fcdd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/parse_numbers.h.9F35C43BEF2FCF68.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.487DA3CF6D8EBEEC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.487DA3CF6D8EBEEC.idx new file mode 100644 index 0000000..1af81a2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/poly_hermite.tcc.487DA3CF6D8EBEEC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.8F9A56A13412DA07.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.8F9A56A13412DA07.idx new file mode 100644 index 0000000..4f7685a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/poly_laguerre.tcc.8F9A56A13412DA07.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/postypes.h.A9B5AE5CDD10DE0A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/postypes.h.A9B5AE5CDD10DE0A.idx new file mode 100644 index 0000000..47948fe Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/postypes.h.A9B5AE5CDD10DE0A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/predefined_ops.h.F0FD890EC402829A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/predefined_ops.h.F0FD890EC402829A.idx new file mode 100644 index 0000000..bcaf229 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/predefined_ops.h.F0FD890EC402829A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/process.h.1A5D633586FF2F31.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/process.h.1A5D633586FF2F31.idx new file mode 100644 index 0000000..77c6540 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/process.h.1A5D633586FF2F31.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pstl_config.h.8AC5780B0EE8B43D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pstl_config.h.8AC5780B0EE8B43D.idx new file mode 100644 index 0000000..4023660 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pstl_config.h.8AC5780B0EE8B43D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread.h.E9C453A042E2E6AB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread.h.E9C453A042E2E6AB.idx new file mode 100644 index 0000000..a5d9662 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread.h.E9C453A042E2E6AB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_compat.h.249A8020DEDE984A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_compat.h.249A8020DEDE984A.idx new file mode 100644 index 0000000..cee31ec Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_compat.h.249A8020DEDE984A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BE58531F88ADD0DE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BE58531F88ADD0DE.idx new file mode 100644 index 0000000..83f353b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_signal.h.BE58531F88ADD0DE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_time.h.5B7735246C07E51A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_time.h.5B7735246C07E51A.idx new file mode 100644 index 0000000..7a13cbe Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_time.h.5B7735246C07E51A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.687BC92285D30836.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.687BC92285D30836.idx new file mode 100644 index 0000000..88892c7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/pthread_unistd.h.687BC92285D30836.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ptr_traits.h.120B91EBBA5B5090.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ptr_traits.h.120B91EBBA5B5090.idx new file mode 100644 index 0000000..a85f133 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ptr_traits.h.120B91EBBA5B5090.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20algorithm.h.1CF033F3FAF2EC88.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20algorithm.h.1CF033F3FAF2EC88.idx new file mode 100644 index 0000000..52b1902 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20algorithm.h.1CF033F3FAF2EC88.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20functional.h.D103E615DAEC3235.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20functional.h.D103E615DAEC3235.idx new file mode 100644 index 0000000..9520116 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20functional.h.D103E615DAEC3235.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20iterator.h.1E64C5D8C8B04C5C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20iterator.h.1E64C5D8C8B04C5C.idx new file mode 100644 index 0000000..6e727c7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20iterator.h.1E64C5D8C8B04C5C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20memory.h.5FF189F19597B5AA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20memory.h.5FF189F19597B5AA.idx new file mode 100644 index 0000000..65388af Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20memory.h.5FF189F19597B5AA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20type_traits.h.F331A0A07284141E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20type_traits.h.F331A0A07284141E.idx new file mode 100644 index 0000000..42c7e49 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q20type_traits.h.F331A0A07284141E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q23utility.h.12DFE12F7AE93C02.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q23utility.h.12DFE12F7AE93C02.idx new file mode 100644 index 0000000..2adc5c3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/q23utility.h.12DFE12F7AE93C02.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.E2E1A131EA79C043.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.E2E1A131EA79C043.idx new file mode 100644 index 0000000..d54ffa9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qabstractitemmodel.h.E2E1A131EA79C043.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qaction.h.0315B420395B45CB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qaction.h.0315B420395B45CB.idx new file mode 100644 index 0000000..df39199 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qaction.h.0315B420395B45CB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qalgorithms.h.B38C6ECC3EE22E1F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qalgorithms.h.B38C6ECC3EE22E1F.idx new file mode 100644 index 0000000..57a571b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qalgorithms.h.B38C6ECC3EE22E1F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qanystringview.h.25697AD8652FF851.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qanystringview.h.25697AD8652FF851.idx new file mode 100644 index 0000000..9f80e13 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qanystringview.h.25697AD8652FF851.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qapplication.h.7539EC5C7DA892F3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qapplication.h.7539EC5C7DA892F3.idx new file mode 100644 index 0000000..532f542 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qapplication.h.7539EC5C7DA892F3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qarraydata.h.610E70AD47818057.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qarraydata.h.610E70AD47818057.idx new file mode 100644 index 0000000..f30c0c9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qarraydata.h.610E70AD47818057.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qarraydataops.h.CB26903B27676FCF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qarraydataops.h.CB26903B27676FCF.idx new file mode 100644 index 0000000..82b842a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qarraydataops.h.CB26903B27676FCF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.6515CDFF8DB71B80.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.6515CDFF8DB71B80.idx new file mode 100644 index 0000000..b7c678a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qarraydatapointer.h.6515CDFF8DB71B80.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qassert.h.9C5CEB21BBCFA003.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qassert.h.9C5CEB21BBCFA003.idx new file mode 100644 index 0000000..a5a552d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qassert.h.9C5CEB21BBCFA003.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qatomic.h.FCE6C7A4B6186767.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qatomic.h.FCE6C7A4B6186767.idx new file mode 100644 index 0000000..a7fb284 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qatomic.h.FCE6C7A4B6186767.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.A756A5C7B1DAC1D2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.A756A5C7B1DAC1D2.idx new file mode 100644 index 0000000..73bd286 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qatomic_cxx11.h.A756A5C7B1DAC1D2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.ECF76C8B039A79CA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.ECF76C8B039A79CA.idx new file mode 100644 index 0000000..dd29f91 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbasicatomic.h.ECF76C8B039A79CA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.A5C2ADA897173EB4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.A5C2ADA897173EB4.idx new file mode 100644 index 0000000..4834cda Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbindingstorage.h.A5C2ADA897173EB4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbitmap.h.B6ED5FF6DD016E2A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbitmap.h.B6ED5FF6DD016E2A.idx new file mode 100644 index 0000000..b21ef4f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbitmap.h.B6ED5FF6DD016E2A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbrush.h.810E8BBAD2F1EE66.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbrush.h.810E8BBAD2F1EE66.idx new file mode 100644 index 0000000..d6865f2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbrush.h.810E8BBAD2F1EE66.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearray.h.ECAD744CEE0CF72A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearray.h.ECAD744CEE0CF72A.idx new file mode 100644 index 0000000..9ff5e20 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearray.h.ECAD744CEE0CF72A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.0584F8035A2C16A8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.0584F8035A2C16A8.idx new file mode 100644 index 0000000..378ace3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearrayalgorithms.h.0584F8035A2C16A8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.860700041C375C96.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.860700041C375C96.idx new file mode 100644 index 0000000..6d11906 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearraylist.h.860700041C375C96.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F4CE9325C6D3663.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F4CE9325C6D3663.idx new file mode 100644 index 0000000..f8bf606 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qbytearrayview.h.5F4CE9325C6D3663.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcalendar.h.D935582FF29946C7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcalendar.h.D935582FF29946C7.idx new file mode 100644 index 0000000..ff38def Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcalendar.h.D935582FF29946C7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcborcommon.h.4F4E3E96116225B9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcborcommon.h.4F4E3E96116225B9.idx new file mode 100644 index 0000000..9bde07b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcborcommon.h.4F4E3E96116225B9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcborvalue.h.B82CA35B28F94612.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcborvalue.h.B82CA35B28F94612.idx new file mode 100644 index 0000000..4e6d2b0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcborvalue.h.B82CA35B28F94612.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qchar.h.BAD3A4C5B4F677F5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qchar.h.BAD3A4C5B4F677F5.idx new file mode 100644 index 0000000..d2a528e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qchar.h.BAD3A4C5B4F677F5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcolor.h.9C337F539071621E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcolor.h.9C337F539071621E.idx new file mode 100644 index 0000000..0cdf645 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcolor.h.9C337F539071621E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcompare.h.91CA278745818518.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcompare.h.91CA278745818518.idx new file mode 100644 index 0000000..453d890 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcompare.h.91CA278745818518.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.71347AD4611B45B0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.71347AD4611B45B0.idx new file mode 100644 index 0000000..ccf64e0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcompare_impl.h.71347AD4611B45B0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.2F22D650CFA7B3AD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.2F22D650CFA7B3AD.idx new file mode 100644 index 0000000..0545e93 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcomparehelpers.h.2F22D650CFA7B3AD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.0BDDA3B3FD20D13C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.0BDDA3B3FD20D13C.idx new file mode 100644 index 0000000..44feb9d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcompilerdetection.h.0BDDA3B3FD20D13C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qconfig.h.8F38301826F1D25A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qconfig.h.8F38301826F1D25A.idx new file mode 100644 index 0000000..f9d6c07 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qconfig.h.8F38301826F1D25A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2C9583E2D48F2277.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2C9583E2D48F2277.idx new file mode 100644 index 0000000..ad6a7da Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qconstructormacros.h.2C9583E2D48F2277.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.1F56BC73EF0B4F42.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.1F56BC73EF0B4F42.idx new file mode 100644 index 0000000..f549a6f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontainerfwd.h.1F56BC73EF0B4F42.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.449179BAB180A83F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.449179BAB180A83F.idx new file mode 100644 index 0000000..5ce81ad Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontainerinfo.h.449179BAB180A83F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.E526B85CD8391D4C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.E526B85CD8391D4C.idx new file mode 100644 index 0000000..b0ddd77 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontainertools_impl.h.E526B85CD8391D4C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.96E999CC9DE1B181.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.96E999CC9DE1B181.idx new file mode 100644 index 0000000..2cece31 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcontiguouscache.h.96E999CC9DE1B181.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.4CE8A5235491B501.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.4CE8A5235491B501.idx new file mode 100644 index 0000000..226787c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcoreapplication.h.4CE8A5235491B501.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.8869157F07043678.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.8869157F07043678.idx new file mode 100644 index 0000000..94e6e11 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcoreapplication_platform.h.8869157F07043678.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E897829E64A0E663.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E897829E64A0E663.idx new file mode 100644 index 0000000..92cc074 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcoreevent.h.E897829E64A0E663.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcursor.h.20B2B643D4F343E9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcursor.h.20B2B643D4F343E9.idx new file mode 100644 index 0000000..7dde8c4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qcursor.h.20B2B643D4F343E9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.E71CB00ADFFDB2BF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.E71CB00ADFFDB2BF.idx new file mode 100644 index 0000000..250e9d6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdarwinhelpers.h.E71CB00ADFFDB2BF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdatastream.h.F02B2C4DD16D1F1A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdatastream.h.F02B2C4DD16D1F1A.idx new file mode 100644 index 0000000..a69108b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdatastream.h.F02B2C4DD16D1F1A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdatetime.h.1CEFEDE236C5F6E7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdatetime.h.1CEFEDE236C5F6E7.idx new file mode 100644 index 0000000..79a4ff2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdatetime.h.1CEFEDE236C5F6E7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.132FF805B82AC412.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.132FF805B82AC412.idx new file mode 100644 index 0000000..8e20b00 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdeadlinetimer.h.132FF805B82AC412.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdebug.h.864316BE1149FDF4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdebug.h.864316BE1149FDF4.idx new file mode 100644 index 0000000..f134c23 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdebug.h.864316BE1149FDF4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdir.h.8B0B11254379D542.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdir.h.8B0B11254379D542.idx new file mode 100644 index 0000000..2b6cdbd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdir.h.8B0B11254379D542.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdirlisting.h.4133BDF609DC09F6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdirlisting.h.4133BDF609DC09F6.idx new file mode 100644 index 0000000..793023d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qdirlisting.h.4133BDF609DC09F6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.4C08E370C2D685F9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.4C08E370C2D685F9.idx new file mode 100644 index 0000000..db965c7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qelapsedtimer.h.4C08E370C2D685F9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qendian.h.6C7F69968AE01434.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qendian.h.6C7F69968AE01434.idx new file mode 100644 index 0000000..8ebac00 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qendian.h.6C7F69968AE01434.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qeventloop.h.F543FF8294A084E0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qeventloop.h.F543FF8294A084E0.idx new file mode 100644 index 0000000..cab2ab5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qeventloop.h.F543FF8294A084E0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.7705B1967E36C3D5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.7705B1967E36C3D5.idx new file mode 100644 index 0000000..82f25a0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qexceptionhandling.h.7705B1967E36C3D5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfile.h.6840208E865587E7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfile.h.6840208E865587E7.idx new file mode 100644 index 0000000..cd5da65 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfile.h.6840208E865587E7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfiledevice.h.2C9E393788EDD8A1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfiledevice.h.2C9E393788EDD8A1.idx new file mode 100644 index 0000000..936b0c7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfiledevice.h.2C9E393788EDD8A1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfileinfo.h.E36BE742FBB3788C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfileinfo.h.E36BE742FBB3788C.idx new file mode 100644 index 0000000..f5bf17c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfileinfo.h.E36BE742FBB3788C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qflags.h.7527C82DBBDF3CD7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qflags.h.7527C82DBBDF3CD7.idx new file mode 100644 index 0000000..7f2334c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qflags.h.7527C82DBBDF3CD7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfloat16.h.BDB36B1FE7DB45B2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfloat16.h.BDB36B1FE7DB45B2.idx new file mode 100644 index 0000000..6340d28 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfloat16.h.BDB36B1FE7DB45B2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfont.h.A1C05849216C7586.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfont.h.A1C05849216C7586.idx new file mode 100644 index 0000000..d708b1d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfont.h.A1C05849216C7586.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfontinfo.h.5063CB93D7C62005.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfontinfo.h.5063CB93D7C62005.idx new file mode 100644 index 0000000..2b81862 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfontinfo.h.5063CB93D7C62005.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.6896BAEA6445F1AE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.6896BAEA6445F1AE.idx new file mode 100644 index 0000000..341c0da Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfontmetrics.h.6896BAEA6445F1AE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qforeach.h.9072E9576D89BEDE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qforeach.h.9072E9576D89BEDE.idx new file mode 100644 index 0000000..d7be86b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qforeach.h.9072E9576D89BEDE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.17FCFD203456BBE1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.17FCFD203456BBE1.idx new file mode 100644 index 0000000..7ebe96d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfunctionaltools_impl.h.17FCFD203456BBE1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.D8843FC9924C702A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.D8843FC9924C702A.idx new file mode 100644 index 0000000..048eba7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qfunctionpointer.h.D8843FC9924C702A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.F4FF6FFFA615E8F8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.F4FF6FFFA615E8F8.idx new file mode 100644 index 0000000..52df49c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qgenericatomic.h.F4FF6FFFA615E8F8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qglobal.h.A0D67BF2FF6BD5E1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qglobal.h.A0D67BF2FF6BD5E1.idx new file mode 100644 index 0000000..35bd41f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qglobal.h.A0D67BF2FF6BD5E1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.21382A614497DF2D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.21382A614497DF2D.idx new file mode 100644 index 0000000..b7156d3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qglobalstatic.h.21382A614497DF2D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qguiapplication.h.EAE94C0CBFB79A4B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qguiapplication.h.EAE94C0CBFB79A4B.idx new file mode 100644 index 0000000..927bbe5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qguiapplication.h.EAE94C0CBFB79A4B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.09B1B494C86015C4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.09B1B494C86015C4.idx new file mode 100644 index 0000000..0295cb6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qguiapplication_platform.h.09B1B494C86015C4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qhash.h.1B80C9DE6CF7C6B2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qhash.h.1B80C9DE6CF7C6B2.idx new file mode 100644 index 0000000..23794e2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qhash.h.1B80C9DE6CF7C6B2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.43B9E80C2BC3275F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.43B9E80C2BC3275F.idx new file mode 100644 index 0000000..7ba289e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qhashfunctions.h.43B9E80C2BC3275F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qicon.h.611F8E6A8FF251D3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qicon.h.611F8E6A8FF251D3.idx new file mode 100644 index 0000000..ae73f37 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qicon.h.611F8E6A8FF251D3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qimage.h.01FB5F33914BA335.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qimage.h.01FB5F33914BA335.idx new file mode 100644 index 0000000..980bb89 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qimage.h.01FB5F33914BA335.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qinputmethod.h.F0E6427A0D3CDD2B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qinputmethod.h.F0E6427A0D3CDD2B.idx new file mode 100644 index 0000000..3c2f9bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qinputmethod.h.F0E6427A0D3CDD2B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiodevice.h.756287EF110D7421.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiodevice.h.756287EF110D7421.idx new file mode 100644 index 0000000..08d7773 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiodevice.h.756287EF110D7421.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.B2828E5CCFA10E36.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.B2828E5CCFA10E36.idx new file mode 100644 index 0000000..8a3443b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiodevicebase.h.B2828E5CCFA10E36.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiterable.h.DEA4F2A307492F3C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiterable.h.DEA4F2A307492F3C.idx new file mode 100644 index 0000000..d0b06bf Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiterable.h.DEA4F2A307492F3C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiterator.h.80843145DADC61E9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiterator.h.80843145DADC61E9.idx new file mode 100644 index 0000000..f49afe7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qiterator.h.80843145DADC61E9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qjsondocument.h.5C58F9D34D3DFAC3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qjsondocument.h.5C58F9D34D3DFAC3.idx new file mode 100644 index 0000000..f694451 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qjsondocument.h.5C58F9D34D3DFAC3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qjsonobject.h.2ED7E9916AA81F55.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qjsonobject.h.2ED7E9916AA81F55.idx new file mode 100644 index 0000000..64e93a6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qjsonobject.h.2ED7E9916AA81F55.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.C85C84BDE2EF6289.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.C85C84BDE2EF6289.idx new file mode 100644 index 0000000..7d29a3e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qjsonvalue.h.C85C84BDE2EF6289.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qkeysequence.h.A464F03335EF6D03.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qkeysequence.h.A464F03335EF6D03.idx new file mode 100644 index 0000000..ac74a29 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qkeysequence.h.A464F03335EF6D03.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.1CA0BF709C13A0F9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.1CA0BF709C13A0F9.idx new file mode 100644 index 0000000..f1d1367 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlatin1stringview.h.1CA0BF709C13A0F9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlibrary.h.BD9E8EB3B980DAED.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlibrary.h.BD9E8EB3B980DAED.idx new file mode 100644 index 0000000..c182d6a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlibrary.h.BD9E8EB3B980DAED.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qline.h.D8F034107BD28D20.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qline.h.D8F034107BD28D20.idx new file mode 100644 index 0000000..430aa90 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qline.h.D8F034107BD28D20.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlist.h.E8B55DD06AEE0B0A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlist.h.E8B55DD06AEE0B0A.idx new file mode 100644 index 0000000..80cbcb5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlist.h.E8B55DD06AEE0B0A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlocale.h.E627982AF1F7F50D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlocale.h.E627982AF1F7F50D.idx new file mode 100644 index 0000000..95971ee Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlocale.h.E627982AF1F7F50D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlogging.h.33380003B933298B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlogging.h.33380003B933298B.idx new file mode 100644 index 0000000..373d4a5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qlogging.h.33380003B933298B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmainwindow.h.E1465F7B71C20A64.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmainwindow.h.E1465F7B71C20A64.idx new file mode 100644 index 0000000..2c3539d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmainwindow.h.E1465F7B71C20A64.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmalloc.h.DF1971518A60E221.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmalloc.h.DF1971518A60E221.idx new file mode 100644 index 0000000..341ae31 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmalloc.h.DF1971518A60E221.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmap.h.48FB2DAF12EDE0A5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmap.h.48FB2DAF12EDE0A5.idx new file mode 100644 index 0000000..a880b46 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmap.h.48FB2DAF12EDE0A5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmargins.h.35FE1D654ADEA6EA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmargins.h.35FE1D654ADEA6EA.idx new file mode 100644 index 0000000..8b83ad5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmargins.h.35FE1D654ADEA6EA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmath.h.0311B1EE0ECDDD67.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmath.h.0311B1EE0ECDDD67.idx new file mode 100644 index 0000000..11c6468 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmath.h.0311B1EE0ECDDD67.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmenu.h.AC4659EC166663A5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmenu.h.AC4659EC166663A5.idx new file mode 100644 index 0000000..b1c88f3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmenu.h.AC4659EC166663A5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmenubar.h.9FB983DABAD8B2A0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmenubar.h.9FB983DABAD8B2A0.idx new file mode 100644 index 0000000..8dce6ce Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmenubar.h.9FB983DABAD8B2A0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F0AAA350227B36C0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F0AAA350227B36C0.idx new file mode 100644 index 0000000..89b067c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmetacontainer.h.F0AAA350227B36C0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmetatype.h.3916E415BD846CEA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmetatype.h.3916E415BD846CEA.idx new file mode 100644 index 0000000..5a5fb3b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qmetatype.h.3916E415BD846CEA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qminmax.h.208D103B6BF0A96E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qminmax.h.208D103B6BF0A96E.idx new file mode 100644 index 0000000..b9b1156 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qminmax.h.208D103B6BF0A96E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qnamespace.h.A1FA19F877429892.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qnamespace.h.A1FA19F877429892.idx new file mode 100644 index 0000000..04e828b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qnamespace.h.A1FA19F877429892.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.7484A57DD623CFE1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.7484A57DD623CFE1.idx new file mode 100644 index 0000000..b3ffb60 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qnativeinterface.h.7484A57DD623CFE1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qnumeric.h.9E3BCE6245F9BD3C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qnumeric.h.9E3BCE6245F9BD3C.idx new file mode 100644 index 0000000..d64ad66 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qnumeric.h.9E3BCE6245F9BD3C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobject.h.E266AD4198FF3DF6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobject.h.E266AD4198FF3DF6.idx new file mode 100644 index 0000000..175caec Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobject.h.E266AD4198FF3DF6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobject_impl.h.EF3EAC364342A7DD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobject_impl.h.EF3EAC364342A7DD.idx new file mode 100644 index 0000000..f5810b8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobject_impl.h.EF3EAC364342A7DD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.23ECACA039E551A1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.23ECACA039E551A1.idx new file mode 100644 index 0000000..dc0b579 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.23ECACA039E551A1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.DDF20EF11F22ADE2.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.DDF20EF11F22ADE2.idx new file mode 100644 index 0000000..2ab40e0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobjectdefs.h.DDF20EF11F22ADE2.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.79B4A1A16F0A6CC4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.79B4A1A16F0A6CC4.idx new file mode 100644 index 0000000..6b4c523 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qobjectdefs_impl.h.79B4A1A16F0A6CC4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qoverload.h.2298705672B19591.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qoverload.h.2298705672B19591.idx new file mode 100644 index 0000000..ec79c5b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qoverload.h.2298705672B19591.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.6C99C47E3B31D32F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.6C99C47E3B31D32F.idx new file mode 100644 index 0000000..506ff0d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpaintdevice.h.6C99C47E3B31D32F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpair.h.1704EF55276F317D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpair.h.1704EF55276F317D.idx new file mode 100644 index 0000000..707d8c9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpair.h.1704EF55276F317D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpalette.h.6BBAFCC12F7655F5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpalette.h.6BBAFCC12F7655F5.idx new file mode 100644 index 0000000..b4d5dd0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpalette.h.6BBAFCC12F7655F5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpixelformat.h.090CEF06F46F3E81.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpixelformat.h.090CEF06F46F3E81.idx new file mode 100644 index 0000000..348c696 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpixelformat.h.090CEF06F46F3E81.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpixmap.h.348F1EB6AC585AC8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpixmap.h.348F1EB6AC585AC8.idx new file mode 100644 index 0000000..93ff782 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpixmap.h.348F1EB6AC585AC8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qplugin.h.5EB2FCB9AB7AE0B0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qplugin.h.5EB2FCB9AB7AE0B0.idx new file mode 100644 index 0000000..820d77b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qplugin.h.5EB2FCB9AB7AE0B0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpluginloader.h.8B069CC733FBB8F0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpluginloader.h.8B069CC733FBB8F0.idx new file mode 100644 index 0000000..0082857 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpluginloader.h.8B069CC733FBB8F0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpoint.h.2C6D602E06FDF080.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpoint.h.2C6D602E06FDF080.idx new file mode 100644 index 0000000..2b5dfe3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpoint.h.2C6D602E06FDF080.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpointer.h.AC735C8A8209D104.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpointer.h.AC735C8A8209D104.idx new file mode 100644 index 0000000..433feda Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpointer.h.AC735C8A8209D104.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpolygon.h.A23BBC75ACC897AE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpolygon.h.A23BBC75ACC897AE.idx new file mode 100644 index 0000000..9d81dba Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qpolygon.h.A23BBC75ACC897AE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.3EC375EE60BDCB35.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.3EC375EE60BDCB35.idx new file mode 100644 index 0000000..9a750d5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qprocessordetection.h.3EC375EE60BDCB35.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrect.h.72055C4F8B6BD14D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrect.h.72055C4F8B6BD14D.idx new file mode 100644 index 0000000..4b8f8d7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrect.h.72055C4F8B6BD14D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrefcount.h.02742B52D52CE4BF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrefcount.h.02742B52D52CE4BF.idx new file mode 100644 index 0000000..6969124 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrefcount.h.02742B52D52CE4BF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qregion.h.A97BE739D9AEB688.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qregion.h.A97BE739D9AEB688.idx new file mode 100644 index 0000000..14f2b30 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qregion.h.A97BE739D9AEB688.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qregularexpression.h.A41D06C4C35721A5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qregularexpression.h.A41D06C4C35721A5.idx new file mode 100644 index 0000000..ff4a0c8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qregularexpression.h.A41D06C4C35721A5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrgb.h.C98D4E3FFC18AE8F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrgb.h.C98D4E3FFC18AE8F.idx new file mode 100644 index 0000000..4445560 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrgb.h.C98D4E3FFC18AE8F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrgba64.h.3B7722603556A6FE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrgba64.h.3B7722603556A6FE.idx new file mode 100644 index 0000000..9338bd8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qrgba64.h.3B7722603556A6FE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BFEC73A14D6B1EDB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BFEC73A14D6B1EDB.idx new file mode 100644 index 0000000..c2f1673 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qscopedpointer.h.BFEC73A14D6B1EDB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qscopeguard.h.0712C65B84F5F4CF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qscopeguard.h.0712C65B84F5F4CF.idx new file mode 100644 index 0000000..4c5d8af Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qscopeguard.h.0712C65B84F5F4CF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qset.h.CA4C722908859606.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qset.h.CA4C722908859606.idx new file mode 100644 index 0000000..b87f96d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qset.h.CA4C722908859606.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qshareddata.h.5FE9A0A390D5F8D0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qshareddata.h.5FE9A0A390D5F8D0.idx new file mode 100644 index 0000000..77d5e3c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qshareddata.h.5FE9A0A390D5F8D0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.D3636059744C7457.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.D3636059744C7457.idx new file mode 100644 index 0000000..0b6f1d9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qshareddata_impl.h.D3636059744C7457.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.81798856425FF491.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.81798856425FF491.idx new file mode 100644 index 0000000..f7ea8fb Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsharedpointer.h.81798856425FF491.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.054AFB79501FA3DF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.054AFB79501FA3DF.idx new file mode 100644 index 0000000..c461e5b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsharedpointer_impl.h.054AFB79501FA3DF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsize.h.A8A921579E6D9D5B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsize.h.A8A921579E6D9D5B.idx new file mode 100644 index 0000000..1b5cda8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsize.h.A8A921579E6D9D5B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.D1602DBBC46E4AF6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.D1602DBBC46E4AF6.idx new file mode 100644 index 0000000..70d1549 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsizepolicy.h.D1602DBBC46E4AF6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qspan.h.6D336F82A5825A90.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qspan.h.6D336F82A5825A90.idx new file mode 100644 index 0000000..6aee409 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qspan.h.6D336F82A5825A90.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstatusbar.h.236841E83D9B1C37.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstatusbar.h.236841E83D9B1C37.idx new file mode 100644 index 0000000..06a3c6f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstatusbar.h.236841E83D9B1C37.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstring.h.D9AC4094DEC06B10.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstring.h.D9AC4094DEC06B10.idx new file mode 100644 index 0000000..dfbc45b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstring.h.D9AC4094DEC06B10.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.80EDAC45F0F5FF5E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.80EDAC45F0F5FF5E.idx new file mode 100644 index 0000000..54d8458 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringalgorithms.h.80EDAC45F0F5FF5E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.06895C38D9F79CAA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.06895C38D9F79CAA.idx new file mode 100644 index 0000000..49e05ad Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringbuilder.h.06895C38D9F79CAA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringconverter.h.5A2509BE36B296CB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringconverter.h.5A2509BE36B296CB.idx new file mode 100644 index 0000000..ded0ca9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringconverter.h.5A2509BE36B296CB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.31A674CA4A1EBF3D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.31A674CA4A1EBF3D.idx new file mode 100644 index 0000000..11cd595 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringconverter_base.h.31A674CA4A1EBF3D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringfwd.h.5ABAB6D4F7252872.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringfwd.h.5ABAB6D4F7252872.idx new file mode 100644 index 0000000..6b8212d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringfwd.h.5ABAB6D4F7252872.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringlist.h.B5BA0F9EAC8D787A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringlist.h.B5BA0F9EAC8D787A.idx new file mode 100644 index 0000000..358ce5e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringlist.h.B5BA0F9EAC8D787A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringliteral.h.236184EE5B37EC75.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringliteral.h.236184EE5B37EC75.idx new file mode 100644 index 0000000..d2f407d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringliteral.h.236184EE5B37EC75.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.139856B7260D3650.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.139856B7260D3650.idx new file mode 100644 index 0000000..9df82c2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringmatcher.h.139856B7260D3650.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.82B05D85F50B57DE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.82B05D85F50B57DE.idx new file mode 100644 index 0000000..bafa848 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringtokenizer.h.82B05D85F50B57DE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringview.h.88F7A2F7E7A150C0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringview.h.88F7A2F7E7A150C0.idx new file mode 100644 index 0000000..8800464 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qstringview.h.88F7A2F7E7A150C0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qswap.h.C6CC30634BF2DE23.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qswap.h.C6CC30634BF2DE23.idx new file mode 100644 index 0000000..c895520 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qswap.h.C6CC30634BF2DE23.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsysinfo.h.1DB754040D5DFB28.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsysinfo.h.1DB754040D5DFB28.idx new file mode 100644 index 0000000..873141c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsysinfo.h.1DB754040D5DFB28.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.28E27933A361C7B9.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.28E27933A361C7B9.idx new file mode 100644 index 0000000..d92d602 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qsystemdetection.h.28E27933A361C7B9.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtabwidget.h.26A5703403E19360.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtabwidget.h.26A5703403E19360.idx new file mode 100644 index 0000000..0d08599 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtabwidget.h.26A5703403E19360.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EAAE3A8253B1E072.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EAAE3A8253B1E072.idx new file mode 100644 index 0000000..63b76ad Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtaggedpointer.h.EAAE3A8253B1E072.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.A34790BBDFB0B7FF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.A34790BBDFB0B7FF.idx new file mode 100644 index 0000000..2f1f69b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtclasshelpermacros.h.A34790BBDFB0B7FF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.FD08BDA2795A7AD8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.FD08BDA2795A7AD8.idx new file mode 100644 index 0000000..79c34de Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtconfiginclude.h.FD08BDA2795A7AD8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.3F8C754E3945E3B0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.3F8C754E3945E3B0.idx new file mode 100644 index 0000000..c3e794a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtconfigmacros.h.3F8C754E3945E3B0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtcore-config.h.C85358304EF44AEB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtcore-config.h.C85358304EF44AEB.idx new file mode 100644 index 0000000..a93b659 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtcore-config.h.C85358304EF44AEB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.72711CB930E9991C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.72711CB930E9991C.idx new file mode 100644 index 0000000..f38c2dd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtcoreexports.h.72711CB930E9991C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtdeprecationdefinitions.h.AE6587DC590CCC16.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtdeprecationdefinitions.h.AE6587DC590CCC16.idx new file mode 100644 index 0000000..4644769 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtdeprecationdefinitions.h.AE6587DC590CCC16.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.6C8AB4CD55E0B702.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.6C8AB4CD55E0B702.idx new file mode 100644 index 0000000..19658f4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtdeprecationmarkers.h.6C8AB4CD55E0B702.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.3267D44CB3C41E22.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.3267D44CB3C41E22.idx new file mode 100644 index 0000000..598b574 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtenvironmentvariables.h.3267D44CB3C41E22.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtextstream.h.53EA265FADCFAA83.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtextstream.h.53EA265FADCFAA83.idx new file mode 100644 index 0000000..02e225e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtextstream.h.53EA265FADCFAA83.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtgui-config.h.9E3DABC28685F66D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtgui-config.h.9E3DABC28685F66D.idx new file mode 100644 index 0000000..2772e8a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtgui-config.h.9E3DABC28685F66D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B625D4E5AB74B129.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B625D4E5AB74B129.idx new file mode 100644 index 0000000..350c199 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtguiexports.h.B625D4E5AB74B129.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.7667007C1E90B615.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.7667007C1E90B615.idx new file mode 100644 index 0000000..a11b032 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtguiglobal.h.7667007C1E90B615.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtimezone.h.593596E791C7F655.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtimezone.h.593596E791C7F655.idx new file mode 100644 index 0000000..255d5b3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtimezone.h.593596E791C7F655.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0C1057B7F3280C34.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0C1057B7F3280C34.idx new file mode 100644 index 0000000..a940379 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtmetamacros.h.0C1057B7F3280C34.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtnoop.h.1B77AD87460A158D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtnoop.h.1B77AD87460A158D.idx new file mode 100644 index 0000000..7618b69 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtnoop.h.1B77AD87460A158D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.1A7B12B6A28DDE9E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.1A7B12B6A28DDE9E.idx new file mode 100644 index 0000000..a0170a0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtpreprocessorsupport.h.1A7B12B6A28DDE9E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtransform.h.0DCE957EBACC17A8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtransform.h.0DCE957EBACC17A8.idx new file mode 100644 index 0000000..176025a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtransform.h.0DCE957EBACC17A8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtresource.h.90E962CC56F524CF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtresource.h.90E962CC56F524CF.idx new file mode 100644 index 0000000..2a20482 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtresource.h.90E962CC56F524CF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qttranslation.h.C37D97D86D7AF984.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qttranslation.h.C37D97D86D7AF984.idx new file mode 100644 index 0000000..6c22783 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qttranslation.h.C37D97D86D7AF984.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qttypetraits.h.B157A2B93E8E83C3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qttypetraits.h.B157A2B93E8E83C3.idx new file mode 100644 index 0000000..f423a09 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qttypetraits.h.B157A2B93E8E83C3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtversion.h.F6EDA72951BA8721.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtversion.h.F6EDA72951BA8721.idx new file mode 100644 index 0000000..cc333b3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtversion.h.F6EDA72951BA8721.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.4A0A6E1B3A018AFF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.4A0A6E1B3A018AFF.idx new file mode 100644 index 0000000..df7ff63 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtversionchecks.h.4A0A6E1B3A018AFF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.949587EC675F60CA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.949587EC675F60CA.idx new file mode 100644 index 0000000..6a9358b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtwidgets-config.h.949587EC675F60CA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.448D8D3A4A8D1E36.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.448D8D3A4A8D1E36.idx new file mode 100644 index 0000000..42a9283 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtwidgetsexports.h.448D8D3A4A8D1E36.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.FD6B3163C4011C1F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.FD6B3163C4011C1F.idx new file mode 100644 index 0000000..ab705e1 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtwidgetsglobal.h.FD6B3163C4011C1F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.1BE2B6F23F9BA6EA.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.1BE2B6F23F9BA6EA.idx new file mode 100644 index 0000000..0d08a97 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtypeinfo.h.1BE2B6F23F9BA6EA.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtypes.h.104CBC91D012C3FB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtypes.h.104CBC91D012C3FB.idx new file mode 100644 index 0000000..354c326 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qtypes.h.104CBC91D012C3FB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/quoted_string.h.7DE93AF3FF8D673C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/quoted_string.h.7DE93AF3FF8D673C.idx new file mode 100644 index 0000000..c0dc072 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/quoted_string.h.7DE93AF3FF8D673C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qurl.h.7A3B0AF242E39946.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qurl.h.7A3B0AF242E39946.idx new file mode 100644 index 0000000..1646f2a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qurl.h.7A3B0AF242E39946.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.0C7F2F0FB46967AC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.0C7F2F0FB46967AC.idx new file mode 100644 index 0000000..d2b7d0c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qutf8stringview.h.0C7F2F0FB46967AC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/quuid.h.32A9A76D906BB64A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/quuid.h.32A9A76D906BB64A.idx new file mode 100644 index 0000000..fe2848b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/quuid.h.32A9A76D906BB64A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qvariant.h.BFB9C3DF6FEA0D86.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qvariant.h.BFB9C3DF6FEA0D86.idx new file mode 100644 index 0000000..3fe02a3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qvariant.h.BFB9C3DF6FEA0D86.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.F596D280F0BB6817.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.F596D280F0BB6817.idx new file mode 100644 index 0000000..c9af56f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qvarlengtharray.h.F596D280F0BB6817.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qversiontagging.h.A6212A2629A6B0CE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qversiontagging.h.A6212A2629A6B0CE.idx new file mode 100644 index 0000000..72a4d28 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qversiontagging.h.A6212A2629A6B0CE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qwidget.h.C2A50D6204DADE8E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qwidget.h.C2A50D6204DADE8E.idx new file mode 100644 index 0000000..c7a260f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qwidget.h.C2A50D6204DADE8E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.365A38A9D1677A10.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.365A38A9D1677A10.idx new file mode 100644 index 0000000..8f49486 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qwindowdefs.h.365A38A9D1677A10.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.D6E5CE2D40924022.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.D6E5CE2D40924022.idx new file mode 100644 index 0000000..ada8d5e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qwindowdefs_win.h.D6E5CE2D40924022.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.D4F501E35A9A33F6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.D4F501E35A9A33F6.idx new file mode 100644 index 0000000..edb4f2d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qxptype_traits.h.D4F501E35A9A33F6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.4733286DC454B283.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.4733286DC454B283.idx new file mode 100644 index 0000000..3bee4c0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/qyieldcpu.h.4733286DC454B283.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/range_access.h.92AE8F1A01995227.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/range_access.h.92AE8F1A01995227.idx new file mode 100644 index 0000000..17e9c30 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/range_access.h.92AE8F1A01995227.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ratio.5787628C48CC76FF.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ratio.5787628C48CC76FF.idx new file mode 100644 index 0000000..d1b881a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ratio.5787628C48CC76FF.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/refwrap.h.E59F53E7397F84C0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/refwrap.h.E59F53E7397F84C0.idx new file mode 100644 index 0000000..317a02f Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/refwrap.h.E59F53E7397F84C0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/requires_hosted.h.B3A773D766F336EE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/requires_hosted.h.B3A773D766F336EE.idx new file mode 100644 index 0000000..3c70edd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/requires_hosted.h.B3A773D766F336EE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.1D2218925356AF59.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.1D2218925356AF59.idx new file mode 100644 index 0000000..21c6bfa Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/riemann_zeta.tcc.1D2218925356AF59.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/shared_ptr.h.5F747AD519B4B50B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/shared_ptr.h.5F747AD519B4B50B.idx new file mode 100644 index 0000000..171fdc8 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/shared_ptr.h.5F747AD519B4B50B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.BC369C5ED073BC62.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.BC369C5ED073BC62.idx new file mode 100644 index 0000000..a58a004 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/shared_ptr_atomic.h.BC369C5ED073BC62.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.686BEF03E133F064.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.686BEF03E133F064.idx new file mode 100644 index 0000000..f8ff958 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/shared_ptr_base.h.686BEF03E133F064.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/signal.h.318DCCEC1230A527.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/signal.h.318DCCEC1230A527.idx new file mode 100644 index 0000000..447c6f3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/signal.h.318DCCEC1230A527.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/specfun.h.E10AAD67EC430C58.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/specfun.h.E10AAD67EC430C58.idx new file mode 100644 index 0000000..34f80ce Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/specfun.h.E10AAD67EC430C58.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/special_function_util.h.39F7F74D54E48BBB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/special_function_util.h.39F7F74D54E48BBB.idx new file mode 100644 index 0000000..ad50abe Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/special_function_util.h.39F7F74D54E48BBB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/sstream.317E493A756416A4.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/sstream.317E493A756416A4.idx new file mode 100644 index 0000000..919a994 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/sstream.317E493A756416A4.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/sstream.tcc.BA232CD269450A45.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/sstream.tcc.BA232CD269450A45.idx new file mode 100644 index 0000000..69c5773 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/sstream.tcc.BA232CD269450A45.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/std_abs.h.B59E4D7EC95983AC.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/std_abs.h.B59E4D7EC95983AC.idx new file mode 100644 index 0000000..514a23c Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/std_abs.h.B59E4D7EC95983AC.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/std_function.h.C9F958FB53C9DDEB.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/std_function.h.C9F958FB53C9DDEB.idx new file mode 100644 index 0000000..c043e0e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/std_function.h.C9F958FB53C9DDEB.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdarg.h.9A02EFE2BFC9F7C0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdarg.h.9A02EFE2BFC9F7C0.idx new file mode 100644 index 0000000..b20b251 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdarg.h.9A02EFE2BFC9F7C0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdbool.h.58C723B7490FDC9B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdbool.h.58C723B7490FDC9B.idx new file mode 100644 index 0000000..76005d6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdbool.h.58C723B7490FDC9B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stddef.h.488A7E228F35CE08.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stddef.h.488A7E228F35CE08.idx new file mode 100644 index 0000000..05e95b6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stddef.h.488A7E228F35CE08.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdexcept.9B994323DBC6FB43.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdexcept.9B994323DBC6FB43.idx new file mode 100644 index 0000000..201c3fe Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdexcept.9B994323DBC6FB43.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdint.h.B178FA6FFE54A376.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdint.h.B178FA6FFE54A376.idx new file mode 100644 index 0000000..d304103 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdint.h.B178FA6FFE54A376.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdint.h.FC6439B7BF2F5648.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdint.h.FC6439B7BF2F5648.idx new file mode 100644 index 0000000..9a19af4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdint.h.FC6439B7BF2F5648.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdio.h.00C3287D615C7C3C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdio.h.00C3287D615C7C3C.idx new file mode 100644 index 0000000..baba6b3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdio.h.00C3287D615C7C3C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdio_s.h.E0917B076884990B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdio_s.h.E0917B076884990B.idx new file mode 100644 index 0000000..da55551 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdio_s.h.E0917B076884990B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdlib.h.0B596607CAC70D73.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdlib.h.0B596607CAC70D73.idx new file mode 100644 index 0000000..7a85f58 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdlib.h.0B596607CAC70D73.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdlib.h.6AFBC033B64CCF07.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdlib.h.6AFBC033B64CCF07.idx new file mode 100644 index 0000000..92bc2cc Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdlib.h.6AFBC033B64CCF07.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdlib_s.h.6ADA891E94E89635.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdlib_s.h.6ADA891E94E89635.idx new file mode 100644 index 0000000..63a75fb Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stdlib_s.h.6ADA891E94E89635.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_algo.h.83BDFFCDECE59B41.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_algo.h.83BDFFCDECE59B41.idx new file mode 100644 index 0000000..95ff448 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_algo.h.83BDFFCDECE59B41.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AFD3600C2063B483.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AFD3600C2063B483.idx new file mode 100644 index 0000000..d7da2e9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_algobase.h.AFD3600C2063B483.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_bvector.h.885F25CA530E3A77.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_bvector.h.885F25CA530E3A77.idx new file mode 100644 index 0000000..f55c497 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_bvector.h.885F25CA530E3A77.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_construct.h.51285E445E84487F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_construct.h.51285E445E84487F.idx new file mode 100644 index 0000000..894e835 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_construct.h.51285E445E84487F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_function.h.B41C9B39159E520D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_function.h.B41C9B39159E520D.idx new file mode 100644 index 0000000..9803061 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_function.h.B41C9B39159E520D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_heap.h.54068F013EA45335.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_heap.h.54068F013EA45335.idx new file mode 100644 index 0000000..0b15f36 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_heap.h.54068F013EA45335.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_iterator.h.D24DD7EFA2C64E4E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_iterator.h.D24DD7EFA2C64E4E.idx new file mode 100644 index 0000000..9067183 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_iterator.h.D24DD7EFA2C64E4E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.C0E9F33CE7539A7B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.C0E9F33CE7539A7B.idx new file mode 100644 index 0000000..70f7b2e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_iterator_base_funcs.h.C0E9F33CE7539A7B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.8CAA236A886A07FE.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.8CAA236A886A07FE.idx new file mode 100644 index 0000000..1516e38 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_iterator_base_types.h.8CAA236A886A07FE.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_list.h.1A518E94EEA8726D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_list.h.1A518E94EEA8726D.idx new file mode 100644 index 0000000..92cda6b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_list.h.1A518E94EEA8726D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_map.h.D7FC128CA5C4E962.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_map.h.D7FC128CA5C4E962.idx new file mode 100644 index 0000000..b1c54cd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_map.h.D7FC128CA5C4E962.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_multimap.h.C15779483C7B562B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_multimap.h.C15779483C7B562B.idx new file mode 100644 index 0000000..86376c4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_multimap.h.C15779483C7B562B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_numeric.h.7D583E923EF43124.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_numeric.h.7D583E923EF43124.idx new file mode 100644 index 0000000..9f6e4ce Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_numeric.h.7D583E923EF43124.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_pair.h.D044FA60BD63A09A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_pair.h.D044FA60BD63A09A.idx new file mode 100644 index 0000000..6b2744e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_pair.h.D044FA60BD63A09A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.A9B3D367431D3623.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.A9B3D367431D3623.idx new file mode 100644 index 0000000..1c83f29 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_raw_storage_iter.h.A9B3D367431D3623.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_relops.h.C6AFE899E8B6C12C.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_relops.h.C6AFE899E8B6C12C.idx new file mode 100644 index 0000000..505af29 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_relops.h.C6AFE899E8B6C12C.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.C5F17FE1B1407367.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.C5F17FE1B1407367.idx new file mode 100644 index 0000000..2ddd95d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_tempbuf.h.C5F17FE1B1407367.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_tree.h.C97349FB64063F3A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_tree.h.C97349FB64063F3A.idx new file mode 100644 index 0000000..5ea7e24 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_tree.h.C97349FB64063F3A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.A0E7A276BCAED677.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.A0E7A276BCAED677.idx new file mode 100644 index 0000000..5858679 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_uninitialized.h.A0E7A276BCAED677.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_vector.h.20B4E1B133BD5142.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_vector.h.20B4E1B133BD5142.idx new file mode 100644 index 0000000..0f74462 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stl_vector.h.20B4E1B133BD5142.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stream_iterator.h.A44D2DB4828F5114.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stream_iterator.h.A44D2DB4828F5114.idx new file mode 100644 index 0000000..9fec65b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stream_iterator.h.A44D2DB4828F5114.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/streambuf.92ECDEE05F309D98.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/streambuf.92ECDEE05F309D98.idx new file mode 100644 index 0000000..97f1057 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/streambuf.92ECDEE05F309D98.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/streambuf.tcc.4FEFFC07A4E66121.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/streambuf.tcc.4FEFFC07A4E66121.idx new file mode 100644 index 0000000..f8a7208 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/streambuf.tcc.4FEFFC07A4E66121.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.D5902559B3B3032D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.D5902559B3B3032D.idx new file mode 100644 index 0000000..5a8766e Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/streambuf_iterator.h.D5902559B3B3032D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string.54007C9D03AF9D28.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string.54007C9D03AF9D28.idx new file mode 100644 index 0000000..0ad0dc3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string.54007C9D03AF9D28.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string.h.E5368193EB4C3796.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string.h.E5368193EB4C3796.idx new file mode 100644 index 0000000..d3691d3 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string.h.E5368193EB4C3796.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_conversions.h.62BDBE242C7E962F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_conversions.h.62BDBE242C7E962F.idx new file mode 100644 index 0000000..85b7bc1 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_conversions.h.62BDBE242C7E962F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_s.h.D70A01580E3EF201.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_s.h.D70A01580E3EF201.idx new file mode 100644 index 0000000..0544547 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_s.h.D70A01580E3EF201.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_view.C028ECF105F19EA7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_view.C028ECF105F19EA7.idx new file mode 100644 index 0000000..b091752 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_view.C028ECF105F19EA7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_view.tcc.02A8D4C24377CF53.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_view.tcc.02A8D4C24377CF53.idx new file mode 100644 index 0000000..e332a2a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/string_view.tcc.02A8D4C24377CF53.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stringfwd.h.1D460EA342DBE04D.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stringfwd.h.1D460EA342DBE04D.idx new file mode 100644 index 0000000..89918e9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/stringfwd.h.1D460EA342DBE04D.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/swprintf.inl.7F40120112BCA7AD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/swprintf.inl.7F40120112BCA7AD.idx new file mode 100644 index 0000000..301fb52 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/swprintf.inl.7F40120112BCA7AD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/system_error.875D642C0148A94F.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/system_error.875D642C0148A94F.idx new file mode 100644 index 0000000..f0cd7fd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/system_error.875D642C0148A94F.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/time.h.724DF011BB330EF7.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/time.h.724DF011BB330EF7.idx new file mode 100644 index 0000000..61911f1 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/time.h.724DF011BB330EF7.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/time_members.h.B9E5550B5FC3A55E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/time_members.h.B9E5550B5FC3A55E.idx new file mode 100644 index 0000000..0bac8ab Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/time_members.h.B9E5550B5FC3A55E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/timeb.h.DF67834746399554.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/timeb.h.DF67834746399554.idx new file mode 100644 index 0000000..fa1a3ed Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/timeb.h.DF67834746399554.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/timeb_s.h.2920031896084516.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/timeb_s.h.2920031896084516.idx new file mode 100644 index 0000000..bc31fe7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/timeb_s.h.2920031896084516.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/tuple.9AEF752A3C62AE6B.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/tuple.9AEF752A3C62AE6B.idx new file mode 100644 index 0000000..0b5b031 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/tuple.9AEF752A3C62AE6B.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/type_traits.50D0C9D5F0D2CB68.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/type_traits.50D0C9D5F0D2CB68.idx new file mode 100644 index 0000000..40014dd Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/type_traits.50D0C9D5F0D2CB68.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/type_traits.h.A04FE3FE02787689.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/type_traits.h.A04FE3FE02787689.idx new file mode 100644 index 0000000..d06f7a0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/type_traits.h.A04FE3FE02787689.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/typeinfo.811C3604E4D04429.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/typeinfo.811C3604E4D04429.idx new file mode 100644 index 0000000..afa2ed7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/typeinfo.811C3604E4D04429.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/types.h.7CEC2F421DD32CD5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/types.h.7CEC2F421DD32CD5.idx new file mode 100644 index 0000000..06449a6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/types.h.7CEC2F421DD32CD5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ui_cmainwindow.h.FB4989F87F7A80E6.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ui_cmainwindow.h.FB4989F87F7A80E6.idx new file mode 100644 index 0000000..02f348b Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/ui_cmainwindow.h.FB4989F87F7A80E6.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.123388CFB189BFD1.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.123388CFB189BFD1.idx new file mode 100644 index 0000000..b71b651 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/uniform_int_dist.h.123388CFB189BFD1.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/unique_ptr.h.E4C8F50B24DE044E.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/unique_ptr.h.E4C8F50B24DE044E.idx new file mode 100644 index 0000000..dacbe00 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/unique_ptr.h.E4C8F50B24DE044E.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/unordered_map.204832C65F3C994A.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/unordered_map.204832C65F3C994A.idx new file mode 100644 index 0000000..8d7f0e5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/unordered_map.204832C65F3C994A.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/unordered_map.h.1B1E72626F8610FD.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/unordered_map.h.1B1E72626F8610FD.idx new file mode 100644 index 0000000..604bba9 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/unordered_map.h.1B1E72626F8610FD.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/uses_allocator.h.E10432212A77F203.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/uses_allocator.h.E10432212A77F203.idx new file mode 100644 index 0000000..ec2ec94 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/uses_allocator.h.E10432212A77F203.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.C934EFC91FF706A8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.C934EFC91FF706A8.idx new file mode 100644 index 0000000..0e7a715 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/uses_allocator_args.h.C934EFC91FF706A8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/utility.08192F6BD1017D43.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/utility.08192F6BD1017D43.idx new file mode 100644 index 0000000..dbf9701 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/utility.08192F6BD1017D43.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/utility.h.D7BF09B530AD0BC5.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/utility.h.D7BF09B530AD0BC5.idx new file mode 100644 index 0000000..52820b0 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/utility.h.D7BF09B530AD0BC5.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vadefs.h.1689146E01EF1909.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vadefs.h.1689146E01EF1909.idx new file mode 100644 index 0000000..c4d7f61 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vadefs.h.1689146E01EF1909.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vadefs.h.C6151C7F15298086.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vadefs.h.C6151C7F15298086.idx new file mode 100644 index 0000000..8e1e3b6 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vadefs.h.C6151C7F15298086.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/variant.C138F4EA17E13377.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/variant.C138F4EA17E13377.idx new file mode 100644 index 0000000..85df9d5 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/variant.C138F4EA17E13377.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vector.7042D592D3999043.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vector.7042D592D3999043.idx new file mode 100644 index 0000000..bc84408 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vector.7042D592D3999043.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vector.tcc.2801D3DC0C7F6E99.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vector.tcc.2801D3DC0C7F6E99.idx new file mode 100644 index 0000000..39ee2e7 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/vector.tcc.2801D3DC0C7F6E99.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/version.796217028ADCB0F8.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/version.796217028ADCB0F8.idx new file mode 100644 index 0000000..4487112 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/version.796217028ADCB0F8.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/wchar.h.50F5BE55A4A30485.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/wchar.h.50F5BE55A4A30485.idx new file mode 100644 index 0000000..5343b39 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/wchar.h.50F5BE55A4A30485.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/wchar_s.h.CEB12EF941C1E7F0.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/wchar_s.h.CEB12EF941C1E7F0.idx new file mode 100644 index 0000000..3f2b493 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/wchar_s.h.CEB12EF941C1E7F0.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/wctype.h.CE2B70DF5B02B0A3.idx b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/wctype.h.CE2B70DF5B02B0A3.idx new file mode 100644 index 0000000..7f8ae4d Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc_clangd/.cache/clangd/index/wctype.h.CE2B70DF5B02B0A3.idx differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeCache.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeCache.txt new file mode 100644 index 0000000..44b10eb --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeCache.txt @@ -0,0 +1,1328 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app +# It was generated by CMake: C:/dev/Qt/Tools/CMake_64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Debug + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=1 + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//No help, variable specified on the command line. +CMAKE_CXX_FLAGS_INIT:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +CMAKE_CXX_OUTPUT_EXTENSION:STRING=.obj + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//No help, variable specified on the command line. +CMAKE_C_COMPILER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc.exe + +CMAKE_C_OUTPUT_EXTENSION:STRING= + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/dlltool.exe + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/pkgRedirects + +//No help, variable specified on the command line. +CMAKE_GENERATOR:STRING=Ninja + +//Convert GNU import libraries to MS format (requires Visual Studio) +CMAKE_GNUtoMS:BOOL=OFF + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/fontManager + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/dev/Qt/Tools/Ninja/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe + +//No help, variable specified on the command line. +CMAKE_PREFIX_PATH:PATH=C:/dev/Qt/6.8.0/mingw_64 + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//No help, variable specified on the command line. +CMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=fontManager + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe + +//Flags for Windows Resource Compiler during all build types. +CMAKE_RC_FLAGS:STRING= + +//Flags for Windows Resource Compiler during DEBUG builds. +CMAKE_RC_FLAGS_DEBUG:STRING= + +//Flags for Windows Resource Compiler during MINSIZEREL builds. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during RELEASE builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Additional directories where find(Qt6 ...) host Qt components +// are searched +QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH:STRING= + +//Additional directories where find(Qt6 ...) components are searched +QT_ADDITIONAL_PACKAGES_PREFIX_PATH:STRING= + +//Skip Qt Creator's package manager auto-setup +QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP:BOOL=OFF + +//The directory containing a CMake configuration file for QT. +QT_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6 + +//No help, variable specified on the command line. +QT_QMAKE_EXECUTABLE:FILEPATH=C:/dev/Qt/6.8.0/mingw_64/bin/qmake.exe + +//The directory containing a CMake configuration file for Qt6CoreTools. +Qt6CoreTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools + +//The directory containing a CMake configuration file for Qt6Core. +Qt6Core_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core + +//The directory containing a CMake configuration file for Qt6EntryPointPrivate. +Qt6EntryPointPrivate_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate + +//The directory containing a CMake configuration file for Qt6GuiTools. +Qt6GuiTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools + +//The directory containing a CMake configuration file for Qt6Gui. +Qt6Gui_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui + +//The directory containing a CMake configuration file for Qt6PrintSupport. +Qt6PrintSupport_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport + +//The directory containing a CMake configuration file for Qt6WidgetsTools. +Qt6WidgetsTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools + +//The directory containing a CMake configuration file for Qt6Widgets. +Qt6Widgets_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets + +//The directory containing a CMake configuration file for Qt6ZlibPrivate. +Qt6ZlibPrivate_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate + +//The directory containing a CMake configuration file for Qt6. +Qt6_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6 + +//Path to a program. +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE:FILEPATH=Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND + +//Path to a program. +Vulkan_GLSLC_EXECUTABLE:FILEPATH=Vulkan_GLSLC_EXECUTABLE-NOTFOUND + +//Path to a file. +Vulkan_INCLUDE_DIR:PATH=Vulkan_INCLUDE_DIR-NOTFOUND + +//Path to a library. +Vulkan_LIBRARY:FILEPATH=Vulkan_LIBRARY-NOTFOUND + +//Path to a program. +WINDEPLOYQT_EXECUTABLE:FILEPATH=C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe + +//Value Computed by CMake +fontManager_BINARY_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app + +//Value Computed by CMake +fontManager_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +fontManager_SOURCE_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/app + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=29 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/herwi/Documents/GitHub/qt/fontManager +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/dev/Qt/Tools/CMake_64/share/cmake-3.29 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//Details about finding WrapAtomic +FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic:INTERNAL=[1][v()] +//Test HAVE_STDATOMIC +HAVE_STDATOMIC:INTERNAL=1 +//Qt feature: abstractbutton (from target Qt6::Widgets) +QT_FEATURE_abstractbutton:INTERNAL=ON +//Qt feature: abstractslider (from target Qt6::Widgets) +QT_FEATURE_abstractslider:INTERNAL=ON +//Qt feature: accessibility (from target Qt6::Gui) +QT_FEATURE_accessibility:INTERNAL=ON +//Qt feature: accessibility_atspi_bridge (from target Qt6::Gui) +QT_FEATURE_accessibility_atspi_bridge:INTERNAL=OFF +//Qt feature: action (from target Qt6::Gui) +QT_FEATURE_action:INTERNAL=ON +//Qt feature: aesni (from target Qt6::Core) +QT_FEATURE_aesni:INTERNAL=ON +//Qt feature: alloca (from target Qt6::Core) +QT_FEATURE_alloca:INTERNAL=ON +//Qt feature: alloca_h (from target Qt6::Core) +QT_FEATURE_alloca_h:INTERNAL=OFF +//Qt feature: alloca_malloc_h (from target Qt6::Core) +QT_FEATURE_alloca_malloc_h:INTERNAL=ON +//Qt feature: android_style_assets (from target Qt6::Core) +QT_FEATURE_android_style_assets:INTERNAL=OFF +//Qt feature: animation (from target Qt6::Core) +QT_FEATURE_animation:INTERNAL=ON +//Qt feature: appstore_compliant (from target Qt6::Core) +QT_FEATURE_appstore_compliant:INTERNAL=OFF +//Qt feature: arm_crc32 (from target Qt6::Core) +QT_FEATURE_arm_crc32:INTERNAL=OFF +//Qt feature: arm_crypto (from target Qt6::Core) +QT_FEATURE_arm_crypto:INTERNAL=OFF +//Qt feature: avx (from target Qt6::Core) +QT_FEATURE_avx:INTERNAL=ON +//Qt feature: avx2 (from target Qt6::Core) +QT_FEATURE_avx2:INTERNAL=ON +//Qt feature: avx512bw (from target Qt6::Core) +QT_FEATURE_avx512bw:INTERNAL=ON +//Qt feature: avx512cd (from target Qt6::Core) +QT_FEATURE_avx512cd:INTERNAL=ON +//Qt feature: avx512dq (from target Qt6::Core) +QT_FEATURE_avx512dq:INTERNAL=ON +//Qt feature: avx512er (from target Qt6::Core) +QT_FEATURE_avx512er:INTERNAL=ON +//Qt feature: avx512f (from target Qt6::Core) +QT_FEATURE_avx512f:INTERNAL=ON +//Qt feature: avx512ifma (from target Qt6::Core) +QT_FEATURE_avx512ifma:INTERNAL=ON +//Qt feature: avx512pf (from target Qt6::Core) +QT_FEATURE_avx512pf:INTERNAL=ON +//Qt feature: avx512vbmi (from target Qt6::Core) +QT_FEATURE_avx512vbmi:INTERNAL=ON +//Qt feature: avx512vbmi2 (from target Qt6::Core) +QT_FEATURE_avx512vbmi2:INTERNAL=ON +//Qt feature: avx512vl (from target Qt6::Core) +QT_FEATURE_avx512vl:INTERNAL=ON +//Qt feature: backtrace (from target Qt6::Core) +QT_FEATURE_backtrace:INTERNAL=OFF +//Qt feature: buttongroup (from target Qt6::Widgets) +QT_FEATURE_buttongroup:INTERNAL=ON +//Qt feature: calendarwidget (from target Qt6::Widgets) +QT_FEATURE_calendarwidget:INTERNAL=ON +//Qt feature: cborstreamreader (from target Qt6::Core) +QT_FEATURE_cborstreamreader:INTERNAL=ON +//Qt feature: cborstreamwriter (from target Qt6::Core) +QT_FEATURE_cborstreamwriter:INTERNAL=ON +//Qt feature: checkbox (from target Qt6::Widgets) +QT_FEATURE_checkbox:INTERNAL=ON +//Qt feature: clipboard (from target Qt6::Gui) +QT_FEATURE_clipboard:INTERNAL=ON +//Qt feature: clock_gettime (from target Qt6::Core) +QT_FEATURE_clock_gettime:INTERNAL=OFF +//Qt feature: clock_monotonic (from target Qt6::Core) +QT_FEATURE_clock_monotonic:INTERNAL=OFF +//Qt feature: close_range (from target Qt6::Core) +QT_FEATURE_close_range:INTERNAL=OFF +//Qt feature: colordialog (from target Qt6::Widgets) +QT_FEATURE_colordialog:INTERNAL=ON +//Qt feature: colornames (from target Qt6::Gui) +QT_FEATURE_colornames:INTERNAL=ON +//Qt feature: columnview (from target Qt6::Widgets) +QT_FEATURE_columnview:INTERNAL=ON +//Qt feature: combobox (from target Qt6::Widgets) +QT_FEATURE_combobox:INTERNAL=ON +//Qt feature: commandlineparser (from target Qt6::Core) +QT_FEATURE_commandlineparser:INTERNAL=ON +//Qt feature: commandlinkbutton (from target Qt6::Widgets) +QT_FEATURE_commandlinkbutton:INTERNAL=ON +//Qt feature: completer (from target Qt6::Widgets) +QT_FEATURE_completer:INTERNAL=ON +//Qt feature: concatenatetablesproxymodel (from target Qt6::Core) +QT_FEATURE_concatenatetablesproxymodel:INTERNAL=ON +//Qt feature: concurrent (from target Qt6::Core) +QT_FEATURE_concurrent:INTERNAL=ON +//Qt feature: contextmenu (from target Qt6::Widgets) +QT_FEATURE_contextmenu:INTERNAL=ON +//Qt feature: cpp_winrt (from target Qt6::Core) +QT_FEATURE_cpp_winrt:INTERNAL=OFF +//Qt feature: cross_compile (from target Qt6::Core) +QT_FEATURE_cross_compile:INTERNAL=OFF +//Qt feature: cssparser (from target Qt6::Gui) +QT_FEATURE_cssparser:INTERNAL=ON +//Qt feature: ctf (from target Qt6::Core) +QT_FEATURE_ctf:INTERNAL=OFF +//Qt feature: cups (from target Qt6::PrintSupport) +QT_FEATURE_cups:INTERNAL=OFF +//Qt feature: cupsjobwidget (from target Qt6::PrintSupport) +QT_FEATURE_cupsjobwidget:INTERNAL=OFF +//Qt feature: cupspassworddialog (from target Qt6::PrintSupport) +QT_FEATURE_cupspassworddialog:INTERNAL=ON +//Qt feature: cursor (from target Qt6::Gui) +QT_FEATURE_cursor:INTERNAL=ON +//Qt feature: cxx11_future (from target Qt6::Core) +QT_FEATURE_cxx11_future:INTERNAL=ON +//Qt feature: cxx17_filesystem (from target Qt6::Core) +QT_FEATURE_cxx17_filesystem:INTERNAL=ON +//Qt feature: cxx20 (from target Qt6::Core) +QT_FEATURE_cxx20:INTERNAL=OFF +//Qt feature: cxx23_stacktrace (from target Qt6::Core) +QT_FEATURE_cxx23_stacktrace:INTERNAL=OFF +//Qt feature: cxx2a (from target Qt6::Core) +QT_FEATURE_cxx2a:INTERNAL=OFF +//Qt feature: cxx2b (from target Qt6::Core) +QT_FEATURE_cxx2b:INTERNAL=OFF +//Qt feature: datawidgetmapper (from target Qt6::Widgets) +QT_FEATURE_datawidgetmapper:INTERNAL=ON +//Qt feature: datestring (from target Qt6::Core) +QT_FEATURE_datestring:INTERNAL=ON +//Qt feature: datetimeedit (from target Qt6::Widgets) +QT_FEATURE_datetimeedit:INTERNAL=ON +//Qt feature: datetimeparser (from target Qt6::Core) +QT_FEATURE_datetimeparser:INTERNAL=ON +//Qt feature: dbus (from target Qt6::Core) +QT_FEATURE_dbus:INTERNAL=ON +//Qt feature: dbus_linked (from target Qt6::Core) +QT_FEATURE_dbus_linked:INTERNAL=OFF +//Qt feature: debug (from target Qt6::Core) +QT_FEATURE_debug:INTERNAL=OFF +//Qt feature: debug_and_release (from target Qt6::Core) +QT_FEATURE_debug_and_release:INTERNAL=OFF +//Qt feature: desktopservices (from target Qt6::Gui) +QT_FEATURE_desktopservices:INTERNAL=ON +//Qt feature: developer_build (from target Qt6::Core) +QT_FEATURE_developer_build:INTERNAL=OFF +//Qt feature: dial (from target Qt6::Widgets) +QT_FEATURE_dial:INTERNAL=ON +//Qt feature: dialog (from target Qt6::Widgets) +QT_FEATURE_dialog:INTERNAL=ON +//Qt feature: dialogbuttonbox (from target Qt6::Widgets) +QT_FEATURE_dialogbuttonbox:INTERNAL=ON +//Qt feature: direct2d (from target Qt6::Gui) +QT_FEATURE_direct2d:INTERNAL=ON +//Qt feature: direct2d1_1 (from target Qt6::Gui) +QT_FEATURE_direct2d1_1:INTERNAL=ON +//Qt feature: directfb (from target Qt6::Gui) +QT_FEATURE_directfb:INTERNAL=OFF +//Qt feature: directwrite (from target Qt6::Gui) +QT_FEATURE_directwrite:INTERNAL=ON +//Qt feature: directwrite3 (from target Qt6::Gui) +QT_FEATURE_directwrite3:INTERNAL=ON +//Qt feature: dladdr (from target Qt6::Core) +QT_FEATURE_dladdr:INTERNAL=OFF +//Qt feature: dlopen (from target Qt6::Core) +QT_FEATURE_dlopen:INTERNAL=OFF +//Qt feature: dockwidget (from target Qt6::Widgets) +QT_FEATURE_dockwidget:INTERNAL=ON +//Qt feature: doubleconversion (from target Qt6::Core) +QT_FEATURE_doubleconversion:INTERNAL=ON +//Qt feature: draganddrop (from target Qt6::Gui) +QT_FEATURE_draganddrop:INTERNAL=ON +//Qt feature: drm_atomic (from target Qt6::Gui) +QT_FEATURE_drm_atomic:INTERNAL=OFF +//Qt feature: dynamicgl (from target Qt6::Gui) +QT_FEATURE_dynamicgl:INTERNAL=ON +//Qt feature: easingcurve (from target Qt6::Core) +QT_FEATURE_easingcurve:INTERNAL=ON +//Qt feature: effects (from target Qt6::Widgets) +QT_FEATURE_effects:INTERNAL=ON +//Qt feature: egl (from target Qt6::Gui) +QT_FEATURE_egl:INTERNAL=OFF +//Qt feature: egl_x11 (from target Qt6::Gui) +QT_FEATURE_egl_x11:INTERNAL=OFF +//Qt feature: eglfs (from target Qt6::Gui) +QT_FEATURE_eglfs:INTERNAL=OFF +//Qt feature: eglfs_brcm (from target Qt6::Gui) +QT_FEATURE_eglfs_brcm:INTERNAL=OFF +//Qt feature: eglfs_egldevice (from target Qt6::Gui) +QT_FEATURE_eglfs_egldevice:INTERNAL=OFF +//Qt feature: eglfs_gbm (from target Qt6::Gui) +QT_FEATURE_eglfs_gbm:INTERNAL=OFF +//Qt feature: eglfs_mali (from target Qt6::Gui) +QT_FEATURE_eglfs_mali:INTERNAL=OFF +//Qt feature: eglfs_openwfd (from target Qt6::Gui) +QT_FEATURE_eglfs_openwfd:INTERNAL=OFF +//Qt feature: eglfs_rcar (from target Qt6::Gui) +QT_FEATURE_eglfs_rcar:INTERNAL=OFF +//Qt feature: eglfs_viv (from target Qt6::Gui) +QT_FEATURE_eglfs_viv:INTERNAL=OFF +//Qt feature: eglfs_viv_wl (from target Qt6::Gui) +QT_FEATURE_eglfs_viv_wl:INTERNAL=OFF +//Qt feature: eglfs_vsp2 (from target Qt6::Gui) +QT_FEATURE_eglfs_vsp2:INTERNAL=OFF +//Qt feature: eglfs_x11 (from target Qt6::Gui) +QT_FEATURE_eglfs_x11:INTERNAL=OFF +//Qt feature: elf_private_full_version (from target Qt6::Core) +QT_FEATURE_elf_private_full_version:INTERNAL=OFF +//Qt feature: errormessage (from target Qt6::Widgets) +QT_FEATURE_errormessage:INTERNAL=ON +//Qt feature: etw (from target Qt6::Core) +QT_FEATURE_etw:INTERNAL=OFF +//Qt feature: evdev (from target Qt6::Gui) +QT_FEATURE_evdev:INTERNAL=OFF +//Qt feature: f16c (from target Qt6::Core) +QT_FEATURE_f16c:INTERNAL=ON +//Qt feature: filedialog (from target Qt6::Widgets) +QT_FEATURE_filedialog:INTERNAL=ON +//Qt feature: filesystemiterator (from target Qt6::Core) +QT_FEATURE_filesystemiterator:INTERNAL=ON +//Qt feature: filesystemmodel (from target Qt6::Gui) +QT_FEATURE_filesystemmodel:INTERNAL=ON +//Qt feature: filesystemwatcher (from target Qt6::Core) +QT_FEATURE_filesystemwatcher:INTERNAL=ON +//Qt feature: fontcombobox (from target Qt6::Widgets) +QT_FEATURE_fontcombobox:INTERNAL=ON +//Qt feature: fontconfig (from target Qt6::Gui) +QT_FEATURE_fontconfig:INTERNAL=OFF +//Qt feature: fontdialog (from target Qt6::Widgets) +QT_FEATURE_fontdialog:INTERNAL=ON +//Qt feature: force_asserts (from target Qt6::Core) +QT_FEATURE_force_asserts:INTERNAL=OFF +//Qt feature: force_debug_info (from target Qt6::Core) +QT_FEATURE_force_debug_info:INTERNAL=ON +//Qt feature: forkfd_pidfd (from target Qt6::Core) +QT_FEATURE_forkfd_pidfd:INTERNAL=OFF +//Qt feature: formlayout (from target Qt6::Widgets) +QT_FEATURE_formlayout:INTERNAL=ON +//Qt feature: framework (from target Qt6::Core) +QT_FEATURE_framework:INTERNAL=OFF +//Qt feature: freetype (from target Qt6::Gui) +QT_FEATURE_freetype:INTERNAL=ON +//Qt feature: fscompleter (from target Qt6::Widgets) +QT_FEATURE_fscompleter:INTERNAL=ON +//Qt feature: futimens (from target Qt6::Core) +QT_FEATURE_futimens:INTERNAL=OFF +//Qt feature: future (from target Qt6::Core) +QT_FEATURE_future:INTERNAL=ON +//Qt feature: gc_binaries (from target Qt6::Core) +QT_FEATURE_gc_binaries:INTERNAL=OFF +//Qt feature: gestures (from target Qt6::Core) +QT_FEATURE_gestures:INTERNAL=ON +//Qt feature: getauxval (from target Qt6::Core) +QT_FEATURE_getauxval:INTERNAL=OFF +//Qt feature: getentropy (from target Qt6::Core) +QT_FEATURE_getentropy:INTERNAL=OFF +//Qt feature: gif (from target Qt6::Gui) +QT_FEATURE_gif:INTERNAL=ON +//Qt feature: glib (from target Qt6::Core) +QT_FEATURE_glib:INTERNAL=OFF +//Qt feature: glibc_fortify_source (from target Qt6::Core) +QT_FEATURE_glibc_fortify_source:INTERNAL=OFF +//Qt feature: graphicseffect (from target Qt6::Widgets) +QT_FEATURE_graphicseffect:INTERNAL=ON +//Qt feature: graphicsframecapture (from target Qt6::Gui) +QT_FEATURE_graphicsframecapture:INTERNAL=OFF +//Qt feature: graphicsview (from target Qt6::Widgets) +QT_FEATURE_graphicsview:INTERNAL=ON +//Qt feature: groupbox (from target Qt6::Widgets) +QT_FEATURE_groupbox:INTERNAL=ON +//Qt feature: gtk3 (from target Qt6::Widgets) +QT_FEATURE_gtk3:INTERNAL=OFF +//Qt feature: gui (from target Qt6::Core) +QT_FEATURE_gui:INTERNAL=ON +//Qt feature: harfbuzz (from target Qt6::Gui) +QT_FEATURE_harfbuzz:INTERNAL=ON +//Qt feature: highdpiscaling (from target Qt6::Gui) +QT_FEATURE_highdpiscaling:INTERNAL=ON +//Qt feature: hijricalendar (from target Qt6::Core) +QT_FEATURE_hijricalendar:INTERNAL=ON +//Qt feature: ico (from target Qt6::Gui) +QT_FEATURE_ico:INTERNAL=ON +//Qt feature: icu (from target Qt6::Core) +QT_FEATURE_icu:INTERNAL=OFF +//Qt feature: identityproxymodel (from target Qt6::Core) +QT_FEATURE_identityproxymodel:INTERNAL=ON +//Qt feature: im (from target Qt6::Gui) +QT_FEATURE_im:INTERNAL=ON +//Qt feature: image_heuristic_mask (from target Qt6::Gui) +QT_FEATURE_image_heuristic_mask:INTERNAL=ON +//Qt feature: image_text (from target Qt6::Gui) +QT_FEATURE_image_text:INTERNAL=ON +//Qt feature: imageformat_bmp (from target Qt6::Gui) +QT_FEATURE_imageformat_bmp:INTERNAL=ON +//Qt feature: imageformat_jpeg (from target Qt6::Gui) +QT_FEATURE_imageformat_jpeg:INTERNAL=ON +//Qt feature: imageformat_png (from target Qt6::Gui) +QT_FEATURE_imageformat_png:INTERNAL=ON +//Qt feature: imageformat_ppm (from target Qt6::Gui) +QT_FEATURE_imageformat_ppm:INTERNAL=ON +//Qt feature: imageformat_xbm (from target Qt6::Gui) +QT_FEATURE_imageformat_xbm:INTERNAL=ON +//Qt feature: imageformat_xpm (from target Qt6::Gui) +QT_FEATURE_imageformat_xpm:INTERNAL=ON +//Qt feature: imageformatplugin (from target Qt6::Gui) +QT_FEATURE_imageformatplugin:INTERNAL=ON +//Qt feature: imageio_text_loading (from target Qt6::Gui) +QT_FEATURE_imageio_text_loading:INTERNAL=ON +//Qt feature: inotify (from target Qt6::Core) +QT_FEATURE_inotify:INTERNAL=OFF +//Qt feature: inputdialog (from target Qt6::Widgets) +QT_FEATURE_inputdialog:INTERNAL=ON +//Qt feature: integrityfb (from target Qt6::Gui) +QT_FEATURE_integrityfb:INTERNAL=OFF +//Qt feature: integrityhid (from target Qt6::Gui) +QT_FEATURE_integrityhid:INTERNAL=OFF +//Qt feature: intelcet (from target Qt6::Core) +QT_FEATURE_intelcet:INTERNAL=ON +//Qt feature: islamiccivilcalendar (from target Qt6::Core) +QT_FEATURE_islamiccivilcalendar:INTERNAL=ON +//Qt feature: itemmodel (from target Qt6::Core) +QT_FEATURE_itemmodel:INTERNAL=ON +//Qt feature: itemviews (from target Qt6::Widgets) +QT_FEATURE_itemviews:INTERNAL=ON +//Qt feature: jalalicalendar (from target Qt6::Core) +QT_FEATURE_jalalicalendar:INTERNAL=ON +//Qt feature: journald (from target Qt6::Core) +QT_FEATURE_journald:INTERNAL=OFF +//Qt feature: jpeg (from target Qt6::Gui) +QT_FEATURE_jpeg:INTERNAL=ON +//Qt feature: keysequenceedit (from target Qt6::Widgets) +QT_FEATURE_keysequenceedit:INTERNAL=ON +//Qt feature: kms (from target Qt6::Gui) +QT_FEATURE_kms:INTERNAL=OFF +//Qt feature: label (from target Qt6::Widgets) +QT_FEATURE_label:INTERNAL=ON +//Qt feature: largefile (from target Qt6::Core) +QT_FEATURE_largefile:INTERNAL=ON +//Qt feature: lcdnumber (from target Qt6::Widgets) +QT_FEATURE_lcdnumber:INTERNAL=ON +//Qt feature: libcpp_hardening (from target Qt6::Core) +QT_FEATURE_libcpp_hardening:INTERNAL=OFF +//Qt feature: libinput (from target Qt6::Gui) +QT_FEATURE_libinput:INTERNAL=OFF +//Qt feature: libinput_axis_api (from target Qt6::Gui) +QT_FEATURE_libinput_axis_api:INTERNAL=OFF +//Qt feature: libinput_hires_wheel_support (from target Qt6::Gui) +QT_FEATURE_libinput_hires_wheel_support:INTERNAL=OFF +//Qt feature: library (from target Qt6::Core) +QT_FEATURE_library:INTERNAL=ON +//Qt feature: libstdcpp_assertions (from target Qt6::Core) +QT_FEATURE_libstdcpp_assertions:INTERNAL=ON +//Qt feature: libudev (from target Qt6::Core) +QT_FEATURE_libudev:INTERNAL=OFF +//Qt feature: lineedit (from target Qt6::Widgets) +QT_FEATURE_lineedit:INTERNAL=ON +//Qt feature: linkat (from target Qt6::Core) +QT_FEATURE_linkat:INTERNAL=OFF +//Qt feature: linuxfb (from target Qt6::Gui) +QT_FEATURE_linuxfb:INTERNAL=OFF +//Qt feature: listview (from target Qt6::Widgets) +QT_FEATURE_listview:INTERNAL=ON +//Qt feature: listwidget (from target Qt6::Widgets) +QT_FEATURE_listwidget:INTERNAL=ON +//Qt feature: localtime_r (from target Qt6::Core) +QT_FEATURE_localtime_r:INTERNAL=OFF +//Qt feature: localtime_s (from target Qt6::Core) +QT_FEATURE_localtime_s:INTERNAL=ON +//Qt feature: lttng (from target Qt6::Core) +QT_FEATURE_lttng:INTERNAL=OFF +//Qt feature: mainwindow (from target Qt6::Widgets) +QT_FEATURE_mainwindow:INTERNAL=ON +//Qt feature: mdiarea (from target Qt6::Widgets) +QT_FEATURE_mdiarea:INTERNAL=ON +//Qt feature: memmem (from target Qt6::Core) +QT_FEATURE_memmem:INTERNAL=OFF +//Qt feature: memrchr (from target Qt6::Core) +QT_FEATURE_memrchr:INTERNAL=OFF +//Qt feature: menu (from target Qt6::Widgets) +QT_FEATURE_menu:INTERNAL=ON +//Qt feature: menubar (from target Qt6::Widgets) +QT_FEATURE_menubar:INTERNAL=ON +//Qt feature: messagebox (from target Qt6::Widgets) +QT_FEATURE_messagebox:INTERNAL=ON +//Qt feature: metal (from target Qt6::Gui) +QT_FEATURE_metal:INTERNAL=OFF +//Qt feature: mimetype (from target Qt6::Core) +QT_FEATURE_mimetype:INTERNAL=ON +//Qt feature: mimetype_database (from target Qt6::Core) +QT_FEATURE_mimetype_database:INTERNAL=ON +//Qt feature: mips_dsp (from target Qt6::Core) +QT_FEATURE_mips_dsp:INTERNAL=OFF +//Qt feature: mips_dspr2 (from target Qt6::Core) +QT_FEATURE_mips_dspr2:INTERNAL=OFF +//Qt feature: movie (from target Qt6::Gui) +QT_FEATURE_movie:INTERNAL=ON +//Qt feature: mtdev (from target Qt6::Gui) +QT_FEATURE_mtdev:INTERNAL=OFF +//Qt feature: multiprocess (from target Qt6::Gui) +QT_FEATURE_multiprocess:INTERNAL=ON +//Qt feature: neon (from target Qt6::Core) +QT_FEATURE_neon:INTERNAL=OFF +//Qt feature: network (from target Qt6::Core) +QT_FEATURE_network:INTERNAL=ON +//Qt feature: no_direct_extern_access (from target Qt6::Core) +QT_FEATURE_no_direct_extern_access:INTERNAL=OFF +//Qt feature: no_pkg_config (from target Qt6::Core) +QT_FEATURE_no_pkg_config:INTERNAL=ON +//Qt feature: opengl (from target Qt6::Gui) +QT_FEATURE_opengl:INTERNAL=ON +//Qt feature: opengles2 (from target Qt6::Gui) +QT_FEATURE_opengles2:INTERNAL=OFF +//Qt feature: opengles3 (from target Qt6::Gui) +QT_FEATURE_opengles3:INTERNAL=OFF +//Qt feature: opengles31 (from target Qt6::Gui) +QT_FEATURE_opengles31:INTERNAL=OFF +//Qt feature: opengles32 (from target Qt6::Gui) +QT_FEATURE_opengles32:INTERNAL=OFF +//Qt feature: openssl (from target Qt6::Core) +QT_FEATURE_openssl:INTERNAL=ON +//Qt feature: openssl_hash (from target Qt6::Core) +QT_FEATURE_openssl_hash:INTERNAL=OFF +//Qt feature: openssl_linked (from target Qt6::Core) +QT_FEATURE_openssl_linked:INTERNAL=OFF +//Qt feature: opensslv11 (from target Qt6::Core) +QT_FEATURE_opensslv11:INTERNAL=OFF +//Qt feature: opensslv30 (from target Qt6::Core) +QT_FEATURE_opensslv30:INTERNAL=ON +//Qt feature: openvg (from target Qt6::Gui) +QT_FEATURE_openvg:INTERNAL=OFF +//Qt feature: pcre2 (from target Qt6::Core) +QT_FEATURE_pcre2:INTERNAL=ON +//Qt feature: pdf (from target Qt6::Gui) +QT_FEATURE_pdf:INTERNAL=ON +//Qt feature: permissions (from target Qt6::Core) +QT_FEATURE_permissions:INTERNAL=ON +//Qt feature: picture (from target Qt6::Gui) +QT_FEATURE_picture:INTERNAL=ON +//Qt feature: pkg_config (from target Qt6::Core) +QT_FEATURE_pkg_config:INTERNAL=OFF +//Qt feature: plugin_manifest (from target Qt6::Core) +QT_FEATURE_plugin_manifest:INTERNAL=ON +//Qt feature: png (from target Qt6::Gui) +QT_FEATURE_png:INTERNAL=ON +//Qt feature: poll_exit_on_error (from target Qt6::Core) +QT_FEATURE_poll_exit_on_error:INTERNAL=OFF +//Qt feature: poll_poll (from target Qt6::Core) +QT_FEATURE_poll_poll:INTERNAL=OFF +//Qt feature: poll_pollts (from target Qt6::Core) +QT_FEATURE_poll_pollts:INTERNAL=OFF +//Qt feature: poll_ppoll (from target Qt6::Core) +QT_FEATURE_poll_ppoll:INTERNAL=OFF +//Qt feature: poll_select (from target Qt6::Core) +QT_FEATURE_poll_select:INTERNAL=OFF +//Qt feature: posix_fallocate (from target Qt6::Core) +QT_FEATURE_posix_fallocate:INTERNAL=OFF +//Qt feature: posix_sem (from target Qt6::Core) +QT_FEATURE_posix_sem:INTERNAL=ON +//Qt feature: posix_shm (from target Qt6::Core) +QT_FEATURE_posix_shm:INTERNAL=OFF +//Qt feature: precompile_header (from target Qt6::Core) +QT_FEATURE_precompile_header:INTERNAL=ON +//Qt feature: printdialog (from target Qt6::PrintSupport) +QT_FEATURE_printdialog:INTERNAL=ON +//Qt feature: printer (from target Qt6::PrintSupport) +QT_FEATURE_printer:INTERNAL=ON +//Qt feature: printpreviewdialog (from target Qt6::PrintSupport) +QT_FEATURE_printpreviewdialog:INTERNAL=ON +//Qt feature: printpreviewwidget (from target Qt6::PrintSupport) +QT_FEATURE_printpreviewwidget:INTERNAL=ON +//Qt feature: printsupport (from target Qt6::Core) +QT_FEATURE_printsupport:INTERNAL=ON +//Qt feature: private_tests (from target Qt6::Core) +QT_FEATURE_private_tests:INTERNAL=OFF +//Qt feature: process (from target Qt6::Core) +QT_FEATURE_process:INTERNAL=ON +//Qt feature: processenvironment (from target Qt6::Core) +QT_FEATURE_processenvironment:INTERNAL=ON +//Qt feature: progressbar (from target Qt6::Widgets) +QT_FEATURE_progressbar:INTERNAL=ON +//Qt feature: progressdialog (from target Qt6::Widgets) +QT_FEATURE_progressdialog:INTERNAL=ON +//Qt feature: proxymodel (from target Qt6::Core) +QT_FEATURE_proxymodel:INTERNAL=ON +//Qt feature: pushbutton (from target Qt6::Widgets) +QT_FEATURE_pushbutton:INTERNAL=ON +//Qt feature: qqnx_imf (from target Qt6::Gui) +QT_FEATURE_qqnx_imf:INTERNAL=OFF +//Qt feature: qqnx_pps (from target Qt6::Core) +QT_FEATURE_qqnx_pps:INTERNAL=OFF +//Qt feature: radiobutton (from target Qt6::Widgets) +QT_FEATURE_radiobutton:INTERNAL=ON +//Qt feature: raster_64bit (from target Qt6::Gui) +QT_FEATURE_raster_64bit:INTERNAL=ON +//Qt feature: raster_fp (from target Qt6::Gui) +QT_FEATURE_raster_fp:INTERNAL=ON +//Qt feature: rdrnd (from target Qt6::Core) +QT_FEATURE_rdrnd:INTERNAL=ON +//Qt feature: rdseed (from target Qt6::Core) +QT_FEATURE_rdseed:INTERNAL=ON +//Qt feature: reduce_exports (from target Qt6::Core) +QT_FEATURE_reduce_exports:INTERNAL=ON +//Qt feature: reduce_relocations (from target Qt6::Core) +QT_FEATURE_reduce_relocations:INTERNAL=OFF +//Qt feature: regularexpression (from target Qt6::Core) +QT_FEATURE_regularexpression:INTERNAL=ON +//Qt feature: relocatable (from target Qt6::Core) +QT_FEATURE_relocatable:INTERNAL=ON +//Qt feature: relro_now_linker (from target Qt6::Core) +QT_FEATURE_relro_now_linker:INTERNAL=OFF +//Qt feature: renameat2 (from target Qt6::Core) +QT_FEATURE_renameat2:INTERNAL=OFF +//Qt feature: resizehandler (from target Qt6::Widgets) +QT_FEATURE_resizehandler:INTERNAL=ON +//Qt feature: rpath (from target Qt6::Core) +QT_FEATURE_rpath:INTERNAL=OFF +//Qt feature: rubberband (from target Qt6::Widgets) +QT_FEATURE_rubberband:INTERNAL=ON +//Qt feature: scrollarea (from target Qt6::Widgets) +QT_FEATURE_scrollarea:INTERNAL=ON +//Qt feature: scrollbar (from target Qt6::Widgets) +QT_FEATURE_scrollbar:INTERNAL=ON +//Qt feature: scroller (from target Qt6::Widgets) +QT_FEATURE_scroller:INTERNAL=ON +//Qt feature: separate_debug_info (from target Qt6::Core) +QT_FEATURE_separate_debug_info:INTERNAL=ON +//Qt feature: sessionmanager (from target Qt6::Gui) +QT_FEATURE_sessionmanager:INTERNAL=ON +//Qt feature: settings (from target Qt6::Core) +QT_FEATURE_settings:INTERNAL=ON +//Qt feature: sha3_fast (from target Qt6::Core) +QT_FEATURE_sha3_fast:INTERNAL=ON +//Qt feature: shani (from target Qt6::Core) +QT_FEATURE_shani:INTERNAL=ON +//Qt feature: shared (from target Qt6::Core) +QT_FEATURE_shared:INTERNAL=ON +//Qt feature: sharedmemory (from target Qt6::Core) +QT_FEATURE_sharedmemory:INTERNAL=ON +//Qt feature: shortcut (from target Qt6::Core) +QT_FEATURE_shortcut:INTERNAL=ON +//Qt feature: signaling_nan (from target Qt6::Core) +QT_FEATURE_signaling_nan:INTERNAL=ON +//Qt feature: simulator_and_device (from target Qt6::Core) +QT_FEATURE_simulator_and_device:INTERNAL=OFF +//Qt feature: sizegrip (from target Qt6::Widgets) +QT_FEATURE_sizegrip:INTERNAL=ON +//Qt feature: slider (from target Qt6::Widgets) +QT_FEATURE_slider:INTERNAL=ON +//Qt feature: slog2 (from target Qt6::Core) +QT_FEATURE_slog2:INTERNAL=OFF +//Qt feature: sortfilterproxymodel (from target Qt6::Core) +QT_FEATURE_sortfilterproxymodel:INTERNAL=ON +//Qt feature: spinbox (from target Qt6::Widgets) +QT_FEATURE_spinbox:INTERNAL=ON +//Qt feature: splashscreen (from target Qt6::Widgets) +QT_FEATURE_splashscreen:INTERNAL=ON +//Qt feature: splitter (from target Qt6::Widgets) +QT_FEATURE_splitter:INTERNAL=ON +//Qt feature: sql (from target Qt6::Core) +QT_FEATURE_sql:INTERNAL=ON +//Qt feature: sse2 (from target Qt6::Core) +QT_FEATURE_sse2:INTERNAL=ON +//Qt feature: sse3 (from target Qt6::Core) +QT_FEATURE_sse3:INTERNAL=ON +//Qt feature: sse4_1 (from target Qt6::Core) +QT_FEATURE_sse4_1:INTERNAL=ON +//Qt feature: sse4_2 (from target Qt6::Core) +QT_FEATURE_sse4_2:INTERNAL=ON +//Qt feature: ssse3 (from target Qt6::Core) +QT_FEATURE_ssse3:INTERNAL=ON +//Qt feature: stack_clash_protection (from target Qt6::Core) +QT_FEATURE_stack_clash_protection:INTERNAL=ON +//Qt feature: stack_protector (from target Qt6::Core) +QT_FEATURE_stack_protector:INTERNAL=ON +//Qt feature: stackedwidget (from target Qt6::Widgets) +QT_FEATURE_stackedwidget:INTERNAL=ON +//Qt feature: standarditemmodel (from target Qt6::Gui) +QT_FEATURE_standarditemmodel:INTERNAL=ON +//Qt feature: static (from target Qt6::Core) +QT_FEATURE_static:INTERNAL=OFF +//Qt feature: statusbar (from target Qt6::Widgets) +QT_FEATURE_statusbar:INTERNAL=ON +//Qt feature: statustip (from target Qt6::Widgets) +QT_FEATURE_statustip:INTERNAL=ON +//Qt feature: std_atomic64 (from target Qt6::Core) +QT_FEATURE_std_atomic64:INTERNAL=ON +//Qt feature: stdlib_libcpp (from target Qt6::Core) +QT_FEATURE_stdlib_libcpp:INTERNAL=OFF +//Qt feature: stringlistmodel (from target Qt6::Core) +QT_FEATURE_stringlistmodel:INTERNAL=ON +//Qt feature: style_android (from target Qt6::Widgets) +QT_FEATURE_style_android:INTERNAL=OFF +//Qt feature: style_fusion (from target Qt6::Widgets) +QT_FEATURE_style_fusion:INTERNAL=ON +//Qt feature: style_mac (from target Qt6::Widgets) +QT_FEATURE_style_mac:INTERNAL=OFF +//Qt feature: style_stylesheet (from target Qt6::Widgets) +QT_FEATURE_style_stylesheet:INTERNAL=ON +//Qt feature: style_windows (from target Qt6::Widgets) +QT_FEATURE_style_windows:INTERNAL=ON +//Qt feature: style_windows11 (from target Qt6::Widgets) +QT_FEATURE_style_windows11:INTERNAL=ON +//Qt feature: style_windowsvista (from target Qt6::Widgets) +QT_FEATURE_style_windowsvista:INTERNAL=ON +//Qt feature: syntaxhighlighter (from target Qt6::Widgets) +QT_FEATURE_syntaxhighlighter:INTERNAL=ON +//Qt feature: syslog (from target Qt6::Core) +QT_FEATURE_syslog:INTERNAL=OFF +//Qt feature: system_doubleconversion (from target Qt6::Core) +QT_FEATURE_system_doubleconversion:INTERNAL=OFF +//Qt feature: system_freetype (from target Qt6::Gui) +QT_FEATURE_system_freetype:INTERNAL=OFF +//Qt feature: system_harfbuzz (from target Qt6::Gui) +QT_FEATURE_system_harfbuzz:INTERNAL=OFF +//Qt feature: system_jpeg (from target Qt6::Gui) +QT_FEATURE_system_jpeg:INTERNAL=OFF +//Qt feature: system_libb2 (from target Qt6::Core) +QT_FEATURE_system_libb2:INTERNAL=OFF +//Qt feature: system_pcre2 (from target Qt6::Core) +QT_FEATURE_system_pcre2:INTERNAL=OFF +//Qt feature: system_png (from target Qt6::Gui) +QT_FEATURE_system_png:INTERNAL=OFF +//Qt feature: system_textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_system_textmarkdownreader:INTERNAL=OFF +//Qt feature: system_xcb_xinput (from target Qt6::Gui) +QT_FEATURE_system_xcb_xinput:INTERNAL=OFF +//Qt feature: system_zlib (from target Qt6::Core) +QT_FEATURE_system_zlib:INTERNAL=OFF +//Qt feature: systemsemaphore (from target Qt6::Core) +QT_FEATURE_systemsemaphore:INTERNAL=ON +//Qt feature: systemtrayicon (from target Qt6::Gui) +QT_FEATURE_systemtrayicon:INTERNAL=ON +//Qt feature: sysv_sem (from target Qt6::Core) +QT_FEATURE_sysv_sem:INTERNAL=OFF +//Qt feature: sysv_shm (from target Qt6::Core) +QT_FEATURE_sysv_shm:INTERNAL=OFF +//Qt feature: tabbar (from target Qt6::Widgets) +QT_FEATURE_tabbar:INTERNAL=ON +//Qt feature: tabletevent (from target Qt6::Gui) +QT_FEATURE_tabletevent:INTERNAL=ON +//Qt feature: tableview (from target Qt6::Widgets) +QT_FEATURE_tableview:INTERNAL=ON +//Qt feature: tablewidget (from target Qt6::Widgets) +QT_FEATURE_tablewidget:INTERNAL=ON +//Qt feature: tabwidget (from target Qt6::Widgets) +QT_FEATURE_tabwidget:INTERNAL=ON +//Qt feature: temporaryfile (from target Qt6::Core) +QT_FEATURE_temporaryfile:INTERNAL=ON +//Qt feature: testlib (from target Qt6::Core) +QT_FEATURE_testlib:INTERNAL=ON +//Qt feature: textbrowser (from target Qt6::Widgets) +QT_FEATURE_textbrowser:INTERNAL=ON +//Qt feature: textdate (from target Qt6::Core) +QT_FEATURE_textdate:INTERNAL=ON +//Qt feature: textedit (from target Qt6::Widgets) +QT_FEATURE_textedit:INTERNAL=ON +//Qt feature: texthtmlparser (from target Qt6::Gui) +QT_FEATURE_texthtmlparser:INTERNAL=ON +//Qt feature: textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_textmarkdownreader:INTERNAL=ON +//Qt feature: textmarkdownwriter (from target Qt6::Gui) +QT_FEATURE_textmarkdownwriter:INTERNAL=ON +//Qt feature: textodfwriter (from target Qt6::Gui) +QT_FEATURE_textodfwriter:INTERNAL=ON +//Qt feature: thread (from target Qt6::Core) +QT_FEATURE_thread:INTERNAL=ON +//Qt feature: timezone (from target Qt6::Core) +QT_FEATURE_timezone:INTERNAL=ON +//Qt feature: timezone_locale (from target Qt6::Core) +QT_FEATURE_timezone_locale:INTERNAL=OFF +//Qt feature: toolbar (from target Qt6::Widgets) +QT_FEATURE_toolbar:INTERNAL=ON +//Qt feature: toolbox (from target Qt6::Widgets) +QT_FEATURE_toolbox:INTERNAL=ON +//Qt feature: toolbutton (from target Qt6::Widgets) +QT_FEATURE_toolbutton:INTERNAL=ON +//Qt feature: tooltip (from target Qt6::Widgets) +QT_FEATURE_tooltip:INTERNAL=ON +//Qt feature: translation (from target Qt6::Core) +QT_FEATURE_translation:INTERNAL=ON +//Qt feature: transposeproxymodel (from target Qt6::Core) +QT_FEATURE_transposeproxymodel:INTERNAL=ON +//Qt feature: treeview (from target Qt6::Widgets) +QT_FEATURE_treeview:INTERNAL=ON +//Qt feature: treewidget (from target Qt6::Widgets) +QT_FEATURE_treewidget:INTERNAL=ON +//Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core) +QT_FEATURE_trivial_auto_var_init_pattern:INTERNAL=OFF +//Qt feature: tslib (from target Qt6::Gui) +QT_FEATURE_tslib:INTERNAL=OFF +//Qt feature: tuiotouch (from target Qt6::Gui) +QT_FEATURE_tuiotouch:INTERNAL=ON +//Qt feature: undocommand (from target Qt6::Gui) +QT_FEATURE_undocommand:INTERNAL=ON +//Qt feature: undogroup (from target Qt6::Gui) +QT_FEATURE_undogroup:INTERNAL=ON +//Qt feature: undostack (from target Qt6::Gui) +QT_FEATURE_undostack:INTERNAL=ON +//Qt feature: undoview (from target Qt6::Widgets) +QT_FEATURE_undoview:INTERNAL=ON +//Qt feature: use_bfd_linker (from target Qt6::Core) +QT_FEATURE_use_bfd_linker:INTERNAL=OFF +//Qt feature: use_gold_linker (from target Qt6::Core) +QT_FEATURE_use_gold_linker:INTERNAL=OFF +//Qt feature: use_lld_linker (from target Qt6::Core) +QT_FEATURE_use_lld_linker:INTERNAL=OFF +//Qt feature: use_mold_linker (from target Qt6::Core) +QT_FEATURE_use_mold_linker:INTERNAL=OFF +//Qt feature: vaes (from target Qt6::Core) +QT_FEATURE_vaes:INTERNAL=ON +//Qt feature: validator (from target Qt6::Gui) +QT_FEATURE_validator:INTERNAL=ON +//Qt feature: version_tagging (from target Qt6::Core) +QT_FEATURE_version_tagging:INTERNAL=ON +//Qt feature: vkgen (from target Qt6::Gui) +QT_FEATURE_vkgen:INTERNAL=ON +//Qt feature: vkkhrdisplay (from target Qt6::Gui) +QT_FEATURE_vkkhrdisplay:INTERNAL=OFF +//Qt feature: vnc (from target Qt6::Gui) +QT_FEATURE_vnc:INTERNAL=OFF +//Qt feature: vsp2 (from target Qt6::Gui) +QT_FEATURE_vsp2:INTERNAL=OFF +//Qt feature: vulkan (from target Qt6::Gui) +QT_FEATURE_vulkan:INTERNAL=ON +//Qt feature: wasm_exceptions (from target Qt6::Core) +QT_FEATURE_wasm_exceptions:INTERNAL=OFF +//Qt feature: wasm_simd128 (from target Qt6::Core) +QT_FEATURE_wasm_simd128:INTERNAL=OFF +//Qt feature: wayland (from target Qt6::Gui) +QT_FEATURE_wayland:INTERNAL=OFF +//Qt feature: whatsthis (from target Qt6::Gui) +QT_FEATURE_whatsthis:INTERNAL=ON +//Qt feature: wheelevent (from target Qt6::Gui) +QT_FEATURE_wheelevent:INTERNAL=ON +//Qt feature: widgets (from target Qt6::Core) +QT_FEATURE_widgets:INTERNAL=ON +//Qt feature: widgettextcontrol (from target Qt6::Widgets) +QT_FEATURE_widgettextcontrol:INTERNAL=ON +//Qt feature: wizard (from target Qt6::Widgets) +QT_FEATURE_wizard:INTERNAL=ON +//Qt feature: x86intrin (from target Qt6::Core) +QT_FEATURE_x86intrin:INTERNAL=ON +//Qt feature: xcb (from target Qt6::Gui) +QT_FEATURE_xcb:INTERNAL=OFF +//Qt feature: xcb_egl_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_egl_plugin:INTERNAL=OFF +//Qt feature: xcb_glx (from target Qt6::Gui) +QT_FEATURE_xcb_glx:INTERNAL=OFF +//Qt feature: xcb_glx_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_glx_plugin:INTERNAL=OFF +//Qt feature: xcb_native_painting (from target Qt6::Gui) +QT_FEATURE_xcb_native_painting:INTERNAL=OFF +//Qt feature: xcb_sm (from target Qt6::Gui) +QT_FEATURE_xcb_sm:INTERNAL=OFF +//Qt feature: xcb_xlib (from target Qt6::Gui) +QT_FEATURE_xcb_xlib:INTERNAL=OFF +//Qt feature: xkbcommon (from target Qt6::Gui) +QT_FEATURE_xkbcommon:INTERNAL=OFF +//Qt feature: xkbcommon_x11 (from target Qt6::Gui) +QT_FEATURE_xkbcommon_x11:INTERNAL=OFF +//Qt feature: xlib (from target Qt6::Gui) +QT_FEATURE_xlib:INTERNAL=OFF +//Qt feature: xml (from target Qt6::Core) +QT_FEATURE_xml:INTERNAL=ON +//Qt feature: xmlstream (from target Qt6::Core) +QT_FEATURE_xmlstream:INTERNAL=ON +//Qt feature: xmlstreamreader (from target Qt6::Core) +QT_FEATURE_xmlstreamreader:INTERNAL=ON +//Qt feature: xmlstreamwriter (from target Qt6::Core) +QT_FEATURE_xmlstreamwriter:INTERNAL=ON +//Qt feature: xrender (from target Qt6::Gui) +QT_FEATURE_xrender:INTERNAL=OFF +//Qt feature: zstd (from target Qt6::Core) +QT_FEATURE_zstd:INTERNAL=OFF +//ADVANCED property for variable: Vulkan_GLSLANG_VALIDATOR_EXECUTABLE +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_GLSLC_EXECUTABLE +Vulkan_GLSLC_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_INCLUDE_DIR +Vulkan_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_LIBRARY +Vulkan_LIBRARY-ADVANCED:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/fontManager + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeCache.txt.prev b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeCache.txt.prev new file mode 100644 index 0000000..44b10eb --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeCache.txt.prev @@ -0,0 +1,1328 @@ +# This is the CMakeCache file. +# For build in directory: c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app +# It was generated by CMake: C:/dev/Qt/Tools/CMake_64/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Debug + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=1 + +//CXX compiler +CMAKE_CXX_COMPILER:STRING=C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//No help, variable specified on the command line. +CMAKE_CXX_FLAGS_INIT:STRING=-DQT_QML_DEBUG + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +CMAKE_CXX_OUTPUT_EXTENSION:STRING=.obj + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//No help, variable specified on the command line. +CMAKE_C_COMPILER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/gcc.exe + +CMAKE_C_OUTPUT_EXTENSION:STRING= + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/dlltool.exe + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/pkgRedirects + +//No help, variable specified on the command line. +CMAKE_GENERATOR:STRING=Ninja + +//Convert GNU import libraries to MS format (requires Visual Studio) +CMAKE_GNUtoMS:BOOL=OFF + +//User executables (bin) +CMAKE_INSTALL_BINDIR:PATH=bin + +//Read-only architecture-independent data (DATAROOTDIR) +CMAKE_INSTALL_DATADIR:PATH= + +//Read-only architecture-independent data root (share) +CMAKE_INSTALL_DATAROOTDIR:PATH=share + +//Documentation root (DATAROOTDIR/doc/PROJECT_NAME) +CMAKE_INSTALL_DOCDIR:PATH= + +//C header files (include) +CMAKE_INSTALL_INCLUDEDIR:PATH=include + +//Info documentation (DATAROOTDIR/info) +CMAKE_INSTALL_INFODIR:PATH= + +//Object code libraries (lib) +CMAKE_INSTALL_LIBDIR:PATH=lib + +//Program executables (libexec) +CMAKE_INSTALL_LIBEXECDIR:PATH=libexec + +//Locale-dependent data (DATAROOTDIR/locale) +CMAKE_INSTALL_LOCALEDIR:PATH= + +//Modifiable single-machine data (var) +CMAKE_INSTALL_LOCALSTATEDIR:PATH=var + +//Man documentation (DATAROOTDIR/man) +CMAKE_INSTALL_MANDIR:PATH= + +//C header files for non-gcc (/usr/include) +CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/fontManager + +//Run-time variable data (LOCALSTATEDIR/run) +CMAKE_INSTALL_RUNSTATEDIR:PATH= + +//System admin executables (sbin) +CMAKE_INSTALL_SBINDIR:PATH=sbin + +//Modifiable architecture-independent data (com) +CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com + +//Read-only single-machine data (etc) +CMAKE_INSTALL_SYSCONFDIR:PATH=etc + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=C:/dev/Qt/Tools/Ninja/ninja.exe + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe + +//No help, variable specified on the command line. +CMAKE_PREFIX_PATH:PATH=C:/dev/Qt/6.8.0/mingw_64 + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//No help, variable specified on the command line. +CMAKE_PROJECT_INCLUDE_BEFORE:FILEPATH=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=fontManager + +//Value Computed by CMake +CMAKE_PROJECT_VERSION:STATIC=0.1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MAJOR:STATIC=0 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_MINOR:STATIC=1 + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_PATCH:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_VERSION_TWEAK:STATIC= + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe + +//Flags for Windows Resource Compiler during all build types. +CMAKE_RC_FLAGS:STRING= + +//Flags for Windows Resource Compiler during DEBUG builds. +CMAKE_RC_FLAGS_DEBUG:STRING= + +//Flags for Windows Resource Compiler during MINSIZEREL builds. +CMAKE_RC_FLAGS_MINSIZEREL:STRING= + +//Flags for Windows Resource Compiler during RELEASE builds. +CMAKE_RC_FLAGS_RELEASE:STRING= + +//Flags for Windows Resource Compiler during RELWITHDEBINFO builds. +CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_READELF:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Additional directories where find(Qt6 ...) host Qt components +// are searched +QT_ADDITIONAL_HOST_PACKAGES_PREFIX_PATH:STRING= + +//Additional directories where find(Qt6 ...) components are searched +QT_ADDITIONAL_PACKAGES_PREFIX_PATH:STRING= + +//Skip Qt Creator's package manager auto-setup +QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP:BOOL=OFF + +//The directory containing a CMake configuration file for QT. +QT_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6 + +//No help, variable specified on the command line. +QT_QMAKE_EXECUTABLE:FILEPATH=C:/dev/Qt/6.8.0/mingw_64/bin/qmake.exe + +//The directory containing a CMake configuration file for Qt6CoreTools. +Qt6CoreTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools + +//The directory containing a CMake configuration file for Qt6Core. +Qt6Core_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core + +//The directory containing a CMake configuration file for Qt6EntryPointPrivate. +Qt6EntryPointPrivate_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate + +//The directory containing a CMake configuration file for Qt6GuiTools. +Qt6GuiTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools + +//The directory containing a CMake configuration file for Qt6Gui. +Qt6Gui_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui + +//The directory containing a CMake configuration file for Qt6PrintSupport. +Qt6PrintSupport_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport + +//The directory containing a CMake configuration file for Qt6WidgetsTools. +Qt6WidgetsTools_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools + +//The directory containing a CMake configuration file for Qt6Widgets. +Qt6Widgets_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets + +//The directory containing a CMake configuration file for Qt6ZlibPrivate. +Qt6ZlibPrivate_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate + +//The directory containing a CMake configuration file for Qt6. +Qt6_DIR:PATH=C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6 + +//Path to a program. +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE:FILEPATH=Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-NOTFOUND + +//Path to a program. +Vulkan_GLSLC_EXECUTABLE:FILEPATH=Vulkan_GLSLC_EXECUTABLE-NOTFOUND + +//Path to a file. +Vulkan_INCLUDE_DIR:PATH=Vulkan_INCLUDE_DIR-NOTFOUND + +//Path to a library. +Vulkan_LIBRARY:FILEPATH=Vulkan_LIBRARY-NOTFOUND + +//Path to a program. +WINDEPLOYQT_EXECUTABLE:FILEPATH=C:/dev/Qt/6.8.0/mingw_64/bin/windeployqt.exe + +//Value Computed by CMake +fontManager_BINARY_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app + +//Value Computed by CMake +fontManager_IS_TOP_LEVEL:STATIC=OFF + +//Value Computed by CMake +fontManager_SOURCE_DIR:STATIC=C:/Users/herwi/Documents/GitHub/qt/fontManager/app + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=29 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES +CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/dev/Qt/Tools/CMake_64/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/herwi/Documents/GitHub/qt/fontManager +//ADVANCED property for variable: CMAKE_INSTALL_BINDIR +CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATADIR +CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR +CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR +CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR +CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_INFODIR +CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR +CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR +CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR +CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR +CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_MANDIR +CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR +CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR +CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR +CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR +CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR +CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_COMPILER +CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1 +CMAKE_RC_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS +CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG +CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL +CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE +CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO +CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/dev/Qt/Tools/CMake_64/share/cmake-3.29 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] +//Details about finding WrapAtomic +FIND_PACKAGE_MESSAGE_DETAILS_WrapAtomic:INTERNAL=[1][v()] +//Test HAVE_STDATOMIC +HAVE_STDATOMIC:INTERNAL=1 +//Qt feature: abstractbutton (from target Qt6::Widgets) +QT_FEATURE_abstractbutton:INTERNAL=ON +//Qt feature: abstractslider (from target Qt6::Widgets) +QT_FEATURE_abstractslider:INTERNAL=ON +//Qt feature: accessibility (from target Qt6::Gui) +QT_FEATURE_accessibility:INTERNAL=ON +//Qt feature: accessibility_atspi_bridge (from target Qt6::Gui) +QT_FEATURE_accessibility_atspi_bridge:INTERNAL=OFF +//Qt feature: action (from target Qt6::Gui) +QT_FEATURE_action:INTERNAL=ON +//Qt feature: aesni (from target Qt6::Core) +QT_FEATURE_aesni:INTERNAL=ON +//Qt feature: alloca (from target Qt6::Core) +QT_FEATURE_alloca:INTERNAL=ON +//Qt feature: alloca_h (from target Qt6::Core) +QT_FEATURE_alloca_h:INTERNAL=OFF +//Qt feature: alloca_malloc_h (from target Qt6::Core) +QT_FEATURE_alloca_malloc_h:INTERNAL=ON +//Qt feature: android_style_assets (from target Qt6::Core) +QT_FEATURE_android_style_assets:INTERNAL=OFF +//Qt feature: animation (from target Qt6::Core) +QT_FEATURE_animation:INTERNAL=ON +//Qt feature: appstore_compliant (from target Qt6::Core) +QT_FEATURE_appstore_compliant:INTERNAL=OFF +//Qt feature: arm_crc32 (from target Qt6::Core) +QT_FEATURE_arm_crc32:INTERNAL=OFF +//Qt feature: arm_crypto (from target Qt6::Core) +QT_FEATURE_arm_crypto:INTERNAL=OFF +//Qt feature: avx (from target Qt6::Core) +QT_FEATURE_avx:INTERNAL=ON +//Qt feature: avx2 (from target Qt6::Core) +QT_FEATURE_avx2:INTERNAL=ON +//Qt feature: avx512bw (from target Qt6::Core) +QT_FEATURE_avx512bw:INTERNAL=ON +//Qt feature: avx512cd (from target Qt6::Core) +QT_FEATURE_avx512cd:INTERNAL=ON +//Qt feature: avx512dq (from target Qt6::Core) +QT_FEATURE_avx512dq:INTERNAL=ON +//Qt feature: avx512er (from target Qt6::Core) +QT_FEATURE_avx512er:INTERNAL=ON +//Qt feature: avx512f (from target Qt6::Core) +QT_FEATURE_avx512f:INTERNAL=ON +//Qt feature: avx512ifma (from target Qt6::Core) +QT_FEATURE_avx512ifma:INTERNAL=ON +//Qt feature: avx512pf (from target Qt6::Core) +QT_FEATURE_avx512pf:INTERNAL=ON +//Qt feature: avx512vbmi (from target Qt6::Core) +QT_FEATURE_avx512vbmi:INTERNAL=ON +//Qt feature: avx512vbmi2 (from target Qt6::Core) +QT_FEATURE_avx512vbmi2:INTERNAL=ON +//Qt feature: avx512vl (from target Qt6::Core) +QT_FEATURE_avx512vl:INTERNAL=ON +//Qt feature: backtrace (from target Qt6::Core) +QT_FEATURE_backtrace:INTERNAL=OFF +//Qt feature: buttongroup (from target Qt6::Widgets) +QT_FEATURE_buttongroup:INTERNAL=ON +//Qt feature: calendarwidget (from target Qt6::Widgets) +QT_FEATURE_calendarwidget:INTERNAL=ON +//Qt feature: cborstreamreader (from target Qt6::Core) +QT_FEATURE_cborstreamreader:INTERNAL=ON +//Qt feature: cborstreamwriter (from target Qt6::Core) +QT_FEATURE_cborstreamwriter:INTERNAL=ON +//Qt feature: checkbox (from target Qt6::Widgets) +QT_FEATURE_checkbox:INTERNAL=ON +//Qt feature: clipboard (from target Qt6::Gui) +QT_FEATURE_clipboard:INTERNAL=ON +//Qt feature: clock_gettime (from target Qt6::Core) +QT_FEATURE_clock_gettime:INTERNAL=OFF +//Qt feature: clock_monotonic (from target Qt6::Core) +QT_FEATURE_clock_monotonic:INTERNAL=OFF +//Qt feature: close_range (from target Qt6::Core) +QT_FEATURE_close_range:INTERNAL=OFF +//Qt feature: colordialog (from target Qt6::Widgets) +QT_FEATURE_colordialog:INTERNAL=ON +//Qt feature: colornames (from target Qt6::Gui) +QT_FEATURE_colornames:INTERNAL=ON +//Qt feature: columnview (from target Qt6::Widgets) +QT_FEATURE_columnview:INTERNAL=ON +//Qt feature: combobox (from target Qt6::Widgets) +QT_FEATURE_combobox:INTERNAL=ON +//Qt feature: commandlineparser (from target Qt6::Core) +QT_FEATURE_commandlineparser:INTERNAL=ON +//Qt feature: commandlinkbutton (from target Qt6::Widgets) +QT_FEATURE_commandlinkbutton:INTERNAL=ON +//Qt feature: completer (from target Qt6::Widgets) +QT_FEATURE_completer:INTERNAL=ON +//Qt feature: concatenatetablesproxymodel (from target Qt6::Core) +QT_FEATURE_concatenatetablesproxymodel:INTERNAL=ON +//Qt feature: concurrent (from target Qt6::Core) +QT_FEATURE_concurrent:INTERNAL=ON +//Qt feature: contextmenu (from target Qt6::Widgets) +QT_FEATURE_contextmenu:INTERNAL=ON +//Qt feature: cpp_winrt (from target Qt6::Core) +QT_FEATURE_cpp_winrt:INTERNAL=OFF +//Qt feature: cross_compile (from target Qt6::Core) +QT_FEATURE_cross_compile:INTERNAL=OFF +//Qt feature: cssparser (from target Qt6::Gui) +QT_FEATURE_cssparser:INTERNAL=ON +//Qt feature: ctf (from target Qt6::Core) +QT_FEATURE_ctf:INTERNAL=OFF +//Qt feature: cups (from target Qt6::PrintSupport) +QT_FEATURE_cups:INTERNAL=OFF +//Qt feature: cupsjobwidget (from target Qt6::PrintSupport) +QT_FEATURE_cupsjobwidget:INTERNAL=OFF +//Qt feature: cupspassworddialog (from target Qt6::PrintSupport) +QT_FEATURE_cupspassworddialog:INTERNAL=ON +//Qt feature: cursor (from target Qt6::Gui) +QT_FEATURE_cursor:INTERNAL=ON +//Qt feature: cxx11_future (from target Qt6::Core) +QT_FEATURE_cxx11_future:INTERNAL=ON +//Qt feature: cxx17_filesystem (from target Qt6::Core) +QT_FEATURE_cxx17_filesystem:INTERNAL=ON +//Qt feature: cxx20 (from target Qt6::Core) +QT_FEATURE_cxx20:INTERNAL=OFF +//Qt feature: cxx23_stacktrace (from target Qt6::Core) +QT_FEATURE_cxx23_stacktrace:INTERNAL=OFF +//Qt feature: cxx2a (from target Qt6::Core) +QT_FEATURE_cxx2a:INTERNAL=OFF +//Qt feature: cxx2b (from target Qt6::Core) +QT_FEATURE_cxx2b:INTERNAL=OFF +//Qt feature: datawidgetmapper (from target Qt6::Widgets) +QT_FEATURE_datawidgetmapper:INTERNAL=ON +//Qt feature: datestring (from target Qt6::Core) +QT_FEATURE_datestring:INTERNAL=ON +//Qt feature: datetimeedit (from target Qt6::Widgets) +QT_FEATURE_datetimeedit:INTERNAL=ON +//Qt feature: datetimeparser (from target Qt6::Core) +QT_FEATURE_datetimeparser:INTERNAL=ON +//Qt feature: dbus (from target Qt6::Core) +QT_FEATURE_dbus:INTERNAL=ON +//Qt feature: dbus_linked (from target Qt6::Core) +QT_FEATURE_dbus_linked:INTERNAL=OFF +//Qt feature: debug (from target Qt6::Core) +QT_FEATURE_debug:INTERNAL=OFF +//Qt feature: debug_and_release (from target Qt6::Core) +QT_FEATURE_debug_and_release:INTERNAL=OFF +//Qt feature: desktopservices (from target Qt6::Gui) +QT_FEATURE_desktopservices:INTERNAL=ON +//Qt feature: developer_build (from target Qt6::Core) +QT_FEATURE_developer_build:INTERNAL=OFF +//Qt feature: dial (from target Qt6::Widgets) +QT_FEATURE_dial:INTERNAL=ON +//Qt feature: dialog (from target Qt6::Widgets) +QT_FEATURE_dialog:INTERNAL=ON +//Qt feature: dialogbuttonbox (from target Qt6::Widgets) +QT_FEATURE_dialogbuttonbox:INTERNAL=ON +//Qt feature: direct2d (from target Qt6::Gui) +QT_FEATURE_direct2d:INTERNAL=ON +//Qt feature: direct2d1_1 (from target Qt6::Gui) +QT_FEATURE_direct2d1_1:INTERNAL=ON +//Qt feature: directfb (from target Qt6::Gui) +QT_FEATURE_directfb:INTERNAL=OFF +//Qt feature: directwrite (from target Qt6::Gui) +QT_FEATURE_directwrite:INTERNAL=ON +//Qt feature: directwrite3 (from target Qt6::Gui) +QT_FEATURE_directwrite3:INTERNAL=ON +//Qt feature: dladdr (from target Qt6::Core) +QT_FEATURE_dladdr:INTERNAL=OFF +//Qt feature: dlopen (from target Qt6::Core) +QT_FEATURE_dlopen:INTERNAL=OFF +//Qt feature: dockwidget (from target Qt6::Widgets) +QT_FEATURE_dockwidget:INTERNAL=ON +//Qt feature: doubleconversion (from target Qt6::Core) +QT_FEATURE_doubleconversion:INTERNAL=ON +//Qt feature: draganddrop (from target Qt6::Gui) +QT_FEATURE_draganddrop:INTERNAL=ON +//Qt feature: drm_atomic (from target Qt6::Gui) +QT_FEATURE_drm_atomic:INTERNAL=OFF +//Qt feature: dynamicgl (from target Qt6::Gui) +QT_FEATURE_dynamicgl:INTERNAL=ON +//Qt feature: easingcurve (from target Qt6::Core) +QT_FEATURE_easingcurve:INTERNAL=ON +//Qt feature: effects (from target Qt6::Widgets) +QT_FEATURE_effects:INTERNAL=ON +//Qt feature: egl (from target Qt6::Gui) +QT_FEATURE_egl:INTERNAL=OFF +//Qt feature: egl_x11 (from target Qt6::Gui) +QT_FEATURE_egl_x11:INTERNAL=OFF +//Qt feature: eglfs (from target Qt6::Gui) +QT_FEATURE_eglfs:INTERNAL=OFF +//Qt feature: eglfs_brcm (from target Qt6::Gui) +QT_FEATURE_eglfs_brcm:INTERNAL=OFF +//Qt feature: eglfs_egldevice (from target Qt6::Gui) +QT_FEATURE_eglfs_egldevice:INTERNAL=OFF +//Qt feature: eglfs_gbm (from target Qt6::Gui) +QT_FEATURE_eglfs_gbm:INTERNAL=OFF +//Qt feature: eglfs_mali (from target Qt6::Gui) +QT_FEATURE_eglfs_mali:INTERNAL=OFF +//Qt feature: eglfs_openwfd (from target Qt6::Gui) +QT_FEATURE_eglfs_openwfd:INTERNAL=OFF +//Qt feature: eglfs_rcar (from target Qt6::Gui) +QT_FEATURE_eglfs_rcar:INTERNAL=OFF +//Qt feature: eglfs_viv (from target Qt6::Gui) +QT_FEATURE_eglfs_viv:INTERNAL=OFF +//Qt feature: eglfs_viv_wl (from target Qt6::Gui) +QT_FEATURE_eglfs_viv_wl:INTERNAL=OFF +//Qt feature: eglfs_vsp2 (from target Qt6::Gui) +QT_FEATURE_eglfs_vsp2:INTERNAL=OFF +//Qt feature: eglfs_x11 (from target Qt6::Gui) +QT_FEATURE_eglfs_x11:INTERNAL=OFF +//Qt feature: elf_private_full_version (from target Qt6::Core) +QT_FEATURE_elf_private_full_version:INTERNAL=OFF +//Qt feature: errormessage (from target Qt6::Widgets) +QT_FEATURE_errormessage:INTERNAL=ON +//Qt feature: etw (from target Qt6::Core) +QT_FEATURE_etw:INTERNAL=OFF +//Qt feature: evdev (from target Qt6::Gui) +QT_FEATURE_evdev:INTERNAL=OFF +//Qt feature: f16c (from target Qt6::Core) +QT_FEATURE_f16c:INTERNAL=ON +//Qt feature: filedialog (from target Qt6::Widgets) +QT_FEATURE_filedialog:INTERNAL=ON +//Qt feature: filesystemiterator (from target Qt6::Core) +QT_FEATURE_filesystemiterator:INTERNAL=ON +//Qt feature: filesystemmodel (from target Qt6::Gui) +QT_FEATURE_filesystemmodel:INTERNAL=ON +//Qt feature: filesystemwatcher (from target Qt6::Core) +QT_FEATURE_filesystemwatcher:INTERNAL=ON +//Qt feature: fontcombobox (from target Qt6::Widgets) +QT_FEATURE_fontcombobox:INTERNAL=ON +//Qt feature: fontconfig (from target Qt6::Gui) +QT_FEATURE_fontconfig:INTERNAL=OFF +//Qt feature: fontdialog (from target Qt6::Widgets) +QT_FEATURE_fontdialog:INTERNAL=ON +//Qt feature: force_asserts (from target Qt6::Core) +QT_FEATURE_force_asserts:INTERNAL=OFF +//Qt feature: force_debug_info (from target Qt6::Core) +QT_FEATURE_force_debug_info:INTERNAL=ON +//Qt feature: forkfd_pidfd (from target Qt6::Core) +QT_FEATURE_forkfd_pidfd:INTERNAL=OFF +//Qt feature: formlayout (from target Qt6::Widgets) +QT_FEATURE_formlayout:INTERNAL=ON +//Qt feature: framework (from target Qt6::Core) +QT_FEATURE_framework:INTERNAL=OFF +//Qt feature: freetype (from target Qt6::Gui) +QT_FEATURE_freetype:INTERNAL=ON +//Qt feature: fscompleter (from target Qt6::Widgets) +QT_FEATURE_fscompleter:INTERNAL=ON +//Qt feature: futimens (from target Qt6::Core) +QT_FEATURE_futimens:INTERNAL=OFF +//Qt feature: future (from target Qt6::Core) +QT_FEATURE_future:INTERNAL=ON +//Qt feature: gc_binaries (from target Qt6::Core) +QT_FEATURE_gc_binaries:INTERNAL=OFF +//Qt feature: gestures (from target Qt6::Core) +QT_FEATURE_gestures:INTERNAL=ON +//Qt feature: getauxval (from target Qt6::Core) +QT_FEATURE_getauxval:INTERNAL=OFF +//Qt feature: getentropy (from target Qt6::Core) +QT_FEATURE_getentropy:INTERNAL=OFF +//Qt feature: gif (from target Qt6::Gui) +QT_FEATURE_gif:INTERNAL=ON +//Qt feature: glib (from target Qt6::Core) +QT_FEATURE_glib:INTERNAL=OFF +//Qt feature: glibc_fortify_source (from target Qt6::Core) +QT_FEATURE_glibc_fortify_source:INTERNAL=OFF +//Qt feature: graphicseffect (from target Qt6::Widgets) +QT_FEATURE_graphicseffect:INTERNAL=ON +//Qt feature: graphicsframecapture (from target Qt6::Gui) +QT_FEATURE_graphicsframecapture:INTERNAL=OFF +//Qt feature: graphicsview (from target Qt6::Widgets) +QT_FEATURE_graphicsview:INTERNAL=ON +//Qt feature: groupbox (from target Qt6::Widgets) +QT_FEATURE_groupbox:INTERNAL=ON +//Qt feature: gtk3 (from target Qt6::Widgets) +QT_FEATURE_gtk3:INTERNAL=OFF +//Qt feature: gui (from target Qt6::Core) +QT_FEATURE_gui:INTERNAL=ON +//Qt feature: harfbuzz (from target Qt6::Gui) +QT_FEATURE_harfbuzz:INTERNAL=ON +//Qt feature: highdpiscaling (from target Qt6::Gui) +QT_FEATURE_highdpiscaling:INTERNAL=ON +//Qt feature: hijricalendar (from target Qt6::Core) +QT_FEATURE_hijricalendar:INTERNAL=ON +//Qt feature: ico (from target Qt6::Gui) +QT_FEATURE_ico:INTERNAL=ON +//Qt feature: icu (from target Qt6::Core) +QT_FEATURE_icu:INTERNAL=OFF +//Qt feature: identityproxymodel (from target Qt6::Core) +QT_FEATURE_identityproxymodel:INTERNAL=ON +//Qt feature: im (from target Qt6::Gui) +QT_FEATURE_im:INTERNAL=ON +//Qt feature: image_heuristic_mask (from target Qt6::Gui) +QT_FEATURE_image_heuristic_mask:INTERNAL=ON +//Qt feature: image_text (from target Qt6::Gui) +QT_FEATURE_image_text:INTERNAL=ON +//Qt feature: imageformat_bmp (from target Qt6::Gui) +QT_FEATURE_imageformat_bmp:INTERNAL=ON +//Qt feature: imageformat_jpeg (from target Qt6::Gui) +QT_FEATURE_imageformat_jpeg:INTERNAL=ON +//Qt feature: imageformat_png (from target Qt6::Gui) +QT_FEATURE_imageformat_png:INTERNAL=ON +//Qt feature: imageformat_ppm (from target Qt6::Gui) +QT_FEATURE_imageformat_ppm:INTERNAL=ON +//Qt feature: imageformat_xbm (from target Qt6::Gui) +QT_FEATURE_imageformat_xbm:INTERNAL=ON +//Qt feature: imageformat_xpm (from target Qt6::Gui) +QT_FEATURE_imageformat_xpm:INTERNAL=ON +//Qt feature: imageformatplugin (from target Qt6::Gui) +QT_FEATURE_imageformatplugin:INTERNAL=ON +//Qt feature: imageio_text_loading (from target Qt6::Gui) +QT_FEATURE_imageio_text_loading:INTERNAL=ON +//Qt feature: inotify (from target Qt6::Core) +QT_FEATURE_inotify:INTERNAL=OFF +//Qt feature: inputdialog (from target Qt6::Widgets) +QT_FEATURE_inputdialog:INTERNAL=ON +//Qt feature: integrityfb (from target Qt6::Gui) +QT_FEATURE_integrityfb:INTERNAL=OFF +//Qt feature: integrityhid (from target Qt6::Gui) +QT_FEATURE_integrityhid:INTERNAL=OFF +//Qt feature: intelcet (from target Qt6::Core) +QT_FEATURE_intelcet:INTERNAL=ON +//Qt feature: islamiccivilcalendar (from target Qt6::Core) +QT_FEATURE_islamiccivilcalendar:INTERNAL=ON +//Qt feature: itemmodel (from target Qt6::Core) +QT_FEATURE_itemmodel:INTERNAL=ON +//Qt feature: itemviews (from target Qt6::Widgets) +QT_FEATURE_itemviews:INTERNAL=ON +//Qt feature: jalalicalendar (from target Qt6::Core) +QT_FEATURE_jalalicalendar:INTERNAL=ON +//Qt feature: journald (from target Qt6::Core) +QT_FEATURE_journald:INTERNAL=OFF +//Qt feature: jpeg (from target Qt6::Gui) +QT_FEATURE_jpeg:INTERNAL=ON +//Qt feature: keysequenceedit (from target Qt6::Widgets) +QT_FEATURE_keysequenceedit:INTERNAL=ON +//Qt feature: kms (from target Qt6::Gui) +QT_FEATURE_kms:INTERNAL=OFF +//Qt feature: label (from target Qt6::Widgets) +QT_FEATURE_label:INTERNAL=ON +//Qt feature: largefile (from target Qt6::Core) +QT_FEATURE_largefile:INTERNAL=ON +//Qt feature: lcdnumber (from target Qt6::Widgets) +QT_FEATURE_lcdnumber:INTERNAL=ON +//Qt feature: libcpp_hardening (from target Qt6::Core) +QT_FEATURE_libcpp_hardening:INTERNAL=OFF +//Qt feature: libinput (from target Qt6::Gui) +QT_FEATURE_libinput:INTERNAL=OFF +//Qt feature: libinput_axis_api (from target Qt6::Gui) +QT_FEATURE_libinput_axis_api:INTERNAL=OFF +//Qt feature: libinput_hires_wheel_support (from target Qt6::Gui) +QT_FEATURE_libinput_hires_wheel_support:INTERNAL=OFF +//Qt feature: library (from target Qt6::Core) +QT_FEATURE_library:INTERNAL=ON +//Qt feature: libstdcpp_assertions (from target Qt6::Core) +QT_FEATURE_libstdcpp_assertions:INTERNAL=ON +//Qt feature: libudev (from target Qt6::Core) +QT_FEATURE_libudev:INTERNAL=OFF +//Qt feature: lineedit (from target Qt6::Widgets) +QT_FEATURE_lineedit:INTERNAL=ON +//Qt feature: linkat (from target Qt6::Core) +QT_FEATURE_linkat:INTERNAL=OFF +//Qt feature: linuxfb (from target Qt6::Gui) +QT_FEATURE_linuxfb:INTERNAL=OFF +//Qt feature: listview (from target Qt6::Widgets) +QT_FEATURE_listview:INTERNAL=ON +//Qt feature: listwidget (from target Qt6::Widgets) +QT_FEATURE_listwidget:INTERNAL=ON +//Qt feature: localtime_r (from target Qt6::Core) +QT_FEATURE_localtime_r:INTERNAL=OFF +//Qt feature: localtime_s (from target Qt6::Core) +QT_FEATURE_localtime_s:INTERNAL=ON +//Qt feature: lttng (from target Qt6::Core) +QT_FEATURE_lttng:INTERNAL=OFF +//Qt feature: mainwindow (from target Qt6::Widgets) +QT_FEATURE_mainwindow:INTERNAL=ON +//Qt feature: mdiarea (from target Qt6::Widgets) +QT_FEATURE_mdiarea:INTERNAL=ON +//Qt feature: memmem (from target Qt6::Core) +QT_FEATURE_memmem:INTERNAL=OFF +//Qt feature: memrchr (from target Qt6::Core) +QT_FEATURE_memrchr:INTERNAL=OFF +//Qt feature: menu (from target Qt6::Widgets) +QT_FEATURE_menu:INTERNAL=ON +//Qt feature: menubar (from target Qt6::Widgets) +QT_FEATURE_menubar:INTERNAL=ON +//Qt feature: messagebox (from target Qt6::Widgets) +QT_FEATURE_messagebox:INTERNAL=ON +//Qt feature: metal (from target Qt6::Gui) +QT_FEATURE_metal:INTERNAL=OFF +//Qt feature: mimetype (from target Qt6::Core) +QT_FEATURE_mimetype:INTERNAL=ON +//Qt feature: mimetype_database (from target Qt6::Core) +QT_FEATURE_mimetype_database:INTERNAL=ON +//Qt feature: mips_dsp (from target Qt6::Core) +QT_FEATURE_mips_dsp:INTERNAL=OFF +//Qt feature: mips_dspr2 (from target Qt6::Core) +QT_FEATURE_mips_dspr2:INTERNAL=OFF +//Qt feature: movie (from target Qt6::Gui) +QT_FEATURE_movie:INTERNAL=ON +//Qt feature: mtdev (from target Qt6::Gui) +QT_FEATURE_mtdev:INTERNAL=OFF +//Qt feature: multiprocess (from target Qt6::Gui) +QT_FEATURE_multiprocess:INTERNAL=ON +//Qt feature: neon (from target Qt6::Core) +QT_FEATURE_neon:INTERNAL=OFF +//Qt feature: network (from target Qt6::Core) +QT_FEATURE_network:INTERNAL=ON +//Qt feature: no_direct_extern_access (from target Qt6::Core) +QT_FEATURE_no_direct_extern_access:INTERNAL=OFF +//Qt feature: no_pkg_config (from target Qt6::Core) +QT_FEATURE_no_pkg_config:INTERNAL=ON +//Qt feature: opengl (from target Qt6::Gui) +QT_FEATURE_opengl:INTERNAL=ON +//Qt feature: opengles2 (from target Qt6::Gui) +QT_FEATURE_opengles2:INTERNAL=OFF +//Qt feature: opengles3 (from target Qt6::Gui) +QT_FEATURE_opengles3:INTERNAL=OFF +//Qt feature: opengles31 (from target Qt6::Gui) +QT_FEATURE_opengles31:INTERNAL=OFF +//Qt feature: opengles32 (from target Qt6::Gui) +QT_FEATURE_opengles32:INTERNAL=OFF +//Qt feature: openssl (from target Qt6::Core) +QT_FEATURE_openssl:INTERNAL=ON +//Qt feature: openssl_hash (from target Qt6::Core) +QT_FEATURE_openssl_hash:INTERNAL=OFF +//Qt feature: openssl_linked (from target Qt6::Core) +QT_FEATURE_openssl_linked:INTERNAL=OFF +//Qt feature: opensslv11 (from target Qt6::Core) +QT_FEATURE_opensslv11:INTERNAL=OFF +//Qt feature: opensslv30 (from target Qt6::Core) +QT_FEATURE_opensslv30:INTERNAL=ON +//Qt feature: openvg (from target Qt6::Gui) +QT_FEATURE_openvg:INTERNAL=OFF +//Qt feature: pcre2 (from target Qt6::Core) +QT_FEATURE_pcre2:INTERNAL=ON +//Qt feature: pdf (from target Qt6::Gui) +QT_FEATURE_pdf:INTERNAL=ON +//Qt feature: permissions (from target Qt6::Core) +QT_FEATURE_permissions:INTERNAL=ON +//Qt feature: picture (from target Qt6::Gui) +QT_FEATURE_picture:INTERNAL=ON +//Qt feature: pkg_config (from target Qt6::Core) +QT_FEATURE_pkg_config:INTERNAL=OFF +//Qt feature: plugin_manifest (from target Qt6::Core) +QT_FEATURE_plugin_manifest:INTERNAL=ON +//Qt feature: png (from target Qt6::Gui) +QT_FEATURE_png:INTERNAL=ON +//Qt feature: poll_exit_on_error (from target Qt6::Core) +QT_FEATURE_poll_exit_on_error:INTERNAL=OFF +//Qt feature: poll_poll (from target Qt6::Core) +QT_FEATURE_poll_poll:INTERNAL=OFF +//Qt feature: poll_pollts (from target Qt6::Core) +QT_FEATURE_poll_pollts:INTERNAL=OFF +//Qt feature: poll_ppoll (from target Qt6::Core) +QT_FEATURE_poll_ppoll:INTERNAL=OFF +//Qt feature: poll_select (from target Qt6::Core) +QT_FEATURE_poll_select:INTERNAL=OFF +//Qt feature: posix_fallocate (from target Qt6::Core) +QT_FEATURE_posix_fallocate:INTERNAL=OFF +//Qt feature: posix_sem (from target Qt6::Core) +QT_FEATURE_posix_sem:INTERNAL=ON +//Qt feature: posix_shm (from target Qt6::Core) +QT_FEATURE_posix_shm:INTERNAL=OFF +//Qt feature: precompile_header (from target Qt6::Core) +QT_FEATURE_precompile_header:INTERNAL=ON +//Qt feature: printdialog (from target Qt6::PrintSupport) +QT_FEATURE_printdialog:INTERNAL=ON +//Qt feature: printer (from target Qt6::PrintSupport) +QT_FEATURE_printer:INTERNAL=ON +//Qt feature: printpreviewdialog (from target Qt6::PrintSupport) +QT_FEATURE_printpreviewdialog:INTERNAL=ON +//Qt feature: printpreviewwidget (from target Qt6::PrintSupport) +QT_FEATURE_printpreviewwidget:INTERNAL=ON +//Qt feature: printsupport (from target Qt6::Core) +QT_FEATURE_printsupport:INTERNAL=ON +//Qt feature: private_tests (from target Qt6::Core) +QT_FEATURE_private_tests:INTERNAL=OFF +//Qt feature: process (from target Qt6::Core) +QT_FEATURE_process:INTERNAL=ON +//Qt feature: processenvironment (from target Qt6::Core) +QT_FEATURE_processenvironment:INTERNAL=ON +//Qt feature: progressbar (from target Qt6::Widgets) +QT_FEATURE_progressbar:INTERNAL=ON +//Qt feature: progressdialog (from target Qt6::Widgets) +QT_FEATURE_progressdialog:INTERNAL=ON +//Qt feature: proxymodel (from target Qt6::Core) +QT_FEATURE_proxymodel:INTERNAL=ON +//Qt feature: pushbutton (from target Qt6::Widgets) +QT_FEATURE_pushbutton:INTERNAL=ON +//Qt feature: qqnx_imf (from target Qt6::Gui) +QT_FEATURE_qqnx_imf:INTERNAL=OFF +//Qt feature: qqnx_pps (from target Qt6::Core) +QT_FEATURE_qqnx_pps:INTERNAL=OFF +//Qt feature: radiobutton (from target Qt6::Widgets) +QT_FEATURE_radiobutton:INTERNAL=ON +//Qt feature: raster_64bit (from target Qt6::Gui) +QT_FEATURE_raster_64bit:INTERNAL=ON +//Qt feature: raster_fp (from target Qt6::Gui) +QT_FEATURE_raster_fp:INTERNAL=ON +//Qt feature: rdrnd (from target Qt6::Core) +QT_FEATURE_rdrnd:INTERNAL=ON +//Qt feature: rdseed (from target Qt6::Core) +QT_FEATURE_rdseed:INTERNAL=ON +//Qt feature: reduce_exports (from target Qt6::Core) +QT_FEATURE_reduce_exports:INTERNAL=ON +//Qt feature: reduce_relocations (from target Qt6::Core) +QT_FEATURE_reduce_relocations:INTERNAL=OFF +//Qt feature: regularexpression (from target Qt6::Core) +QT_FEATURE_regularexpression:INTERNAL=ON +//Qt feature: relocatable (from target Qt6::Core) +QT_FEATURE_relocatable:INTERNAL=ON +//Qt feature: relro_now_linker (from target Qt6::Core) +QT_FEATURE_relro_now_linker:INTERNAL=OFF +//Qt feature: renameat2 (from target Qt6::Core) +QT_FEATURE_renameat2:INTERNAL=OFF +//Qt feature: resizehandler (from target Qt6::Widgets) +QT_FEATURE_resizehandler:INTERNAL=ON +//Qt feature: rpath (from target Qt6::Core) +QT_FEATURE_rpath:INTERNAL=OFF +//Qt feature: rubberband (from target Qt6::Widgets) +QT_FEATURE_rubberband:INTERNAL=ON +//Qt feature: scrollarea (from target Qt6::Widgets) +QT_FEATURE_scrollarea:INTERNAL=ON +//Qt feature: scrollbar (from target Qt6::Widgets) +QT_FEATURE_scrollbar:INTERNAL=ON +//Qt feature: scroller (from target Qt6::Widgets) +QT_FEATURE_scroller:INTERNAL=ON +//Qt feature: separate_debug_info (from target Qt6::Core) +QT_FEATURE_separate_debug_info:INTERNAL=ON +//Qt feature: sessionmanager (from target Qt6::Gui) +QT_FEATURE_sessionmanager:INTERNAL=ON +//Qt feature: settings (from target Qt6::Core) +QT_FEATURE_settings:INTERNAL=ON +//Qt feature: sha3_fast (from target Qt6::Core) +QT_FEATURE_sha3_fast:INTERNAL=ON +//Qt feature: shani (from target Qt6::Core) +QT_FEATURE_shani:INTERNAL=ON +//Qt feature: shared (from target Qt6::Core) +QT_FEATURE_shared:INTERNAL=ON +//Qt feature: sharedmemory (from target Qt6::Core) +QT_FEATURE_sharedmemory:INTERNAL=ON +//Qt feature: shortcut (from target Qt6::Core) +QT_FEATURE_shortcut:INTERNAL=ON +//Qt feature: signaling_nan (from target Qt6::Core) +QT_FEATURE_signaling_nan:INTERNAL=ON +//Qt feature: simulator_and_device (from target Qt6::Core) +QT_FEATURE_simulator_and_device:INTERNAL=OFF +//Qt feature: sizegrip (from target Qt6::Widgets) +QT_FEATURE_sizegrip:INTERNAL=ON +//Qt feature: slider (from target Qt6::Widgets) +QT_FEATURE_slider:INTERNAL=ON +//Qt feature: slog2 (from target Qt6::Core) +QT_FEATURE_slog2:INTERNAL=OFF +//Qt feature: sortfilterproxymodel (from target Qt6::Core) +QT_FEATURE_sortfilterproxymodel:INTERNAL=ON +//Qt feature: spinbox (from target Qt6::Widgets) +QT_FEATURE_spinbox:INTERNAL=ON +//Qt feature: splashscreen (from target Qt6::Widgets) +QT_FEATURE_splashscreen:INTERNAL=ON +//Qt feature: splitter (from target Qt6::Widgets) +QT_FEATURE_splitter:INTERNAL=ON +//Qt feature: sql (from target Qt6::Core) +QT_FEATURE_sql:INTERNAL=ON +//Qt feature: sse2 (from target Qt6::Core) +QT_FEATURE_sse2:INTERNAL=ON +//Qt feature: sse3 (from target Qt6::Core) +QT_FEATURE_sse3:INTERNAL=ON +//Qt feature: sse4_1 (from target Qt6::Core) +QT_FEATURE_sse4_1:INTERNAL=ON +//Qt feature: sse4_2 (from target Qt6::Core) +QT_FEATURE_sse4_2:INTERNAL=ON +//Qt feature: ssse3 (from target Qt6::Core) +QT_FEATURE_ssse3:INTERNAL=ON +//Qt feature: stack_clash_protection (from target Qt6::Core) +QT_FEATURE_stack_clash_protection:INTERNAL=ON +//Qt feature: stack_protector (from target Qt6::Core) +QT_FEATURE_stack_protector:INTERNAL=ON +//Qt feature: stackedwidget (from target Qt6::Widgets) +QT_FEATURE_stackedwidget:INTERNAL=ON +//Qt feature: standarditemmodel (from target Qt6::Gui) +QT_FEATURE_standarditemmodel:INTERNAL=ON +//Qt feature: static (from target Qt6::Core) +QT_FEATURE_static:INTERNAL=OFF +//Qt feature: statusbar (from target Qt6::Widgets) +QT_FEATURE_statusbar:INTERNAL=ON +//Qt feature: statustip (from target Qt6::Widgets) +QT_FEATURE_statustip:INTERNAL=ON +//Qt feature: std_atomic64 (from target Qt6::Core) +QT_FEATURE_std_atomic64:INTERNAL=ON +//Qt feature: stdlib_libcpp (from target Qt6::Core) +QT_FEATURE_stdlib_libcpp:INTERNAL=OFF +//Qt feature: stringlistmodel (from target Qt6::Core) +QT_FEATURE_stringlistmodel:INTERNAL=ON +//Qt feature: style_android (from target Qt6::Widgets) +QT_FEATURE_style_android:INTERNAL=OFF +//Qt feature: style_fusion (from target Qt6::Widgets) +QT_FEATURE_style_fusion:INTERNAL=ON +//Qt feature: style_mac (from target Qt6::Widgets) +QT_FEATURE_style_mac:INTERNAL=OFF +//Qt feature: style_stylesheet (from target Qt6::Widgets) +QT_FEATURE_style_stylesheet:INTERNAL=ON +//Qt feature: style_windows (from target Qt6::Widgets) +QT_FEATURE_style_windows:INTERNAL=ON +//Qt feature: style_windows11 (from target Qt6::Widgets) +QT_FEATURE_style_windows11:INTERNAL=ON +//Qt feature: style_windowsvista (from target Qt6::Widgets) +QT_FEATURE_style_windowsvista:INTERNAL=ON +//Qt feature: syntaxhighlighter (from target Qt6::Widgets) +QT_FEATURE_syntaxhighlighter:INTERNAL=ON +//Qt feature: syslog (from target Qt6::Core) +QT_FEATURE_syslog:INTERNAL=OFF +//Qt feature: system_doubleconversion (from target Qt6::Core) +QT_FEATURE_system_doubleconversion:INTERNAL=OFF +//Qt feature: system_freetype (from target Qt6::Gui) +QT_FEATURE_system_freetype:INTERNAL=OFF +//Qt feature: system_harfbuzz (from target Qt6::Gui) +QT_FEATURE_system_harfbuzz:INTERNAL=OFF +//Qt feature: system_jpeg (from target Qt6::Gui) +QT_FEATURE_system_jpeg:INTERNAL=OFF +//Qt feature: system_libb2 (from target Qt6::Core) +QT_FEATURE_system_libb2:INTERNAL=OFF +//Qt feature: system_pcre2 (from target Qt6::Core) +QT_FEATURE_system_pcre2:INTERNAL=OFF +//Qt feature: system_png (from target Qt6::Gui) +QT_FEATURE_system_png:INTERNAL=OFF +//Qt feature: system_textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_system_textmarkdownreader:INTERNAL=OFF +//Qt feature: system_xcb_xinput (from target Qt6::Gui) +QT_FEATURE_system_xcb_xinput:INTERNAL=OFF +//Qt feature: system_zlib (from target Qt6::Core) +QT_FEATURE_system_zlib:INTERNAL=OFF +//Qt feature: systemsemaphore (from target Qt6::Core) +QT_FEATURE_systemsemaphore:INTERNAL=ON +//Qt feature: systemtrayicon (from target Qt6::Gui) +QT_FEATURE_systemtrayicon:INTERNAL=ON +//Qt feature: sysv_sem (from target Qt6::Core) +QT_FEATURE_sysv_sem:INTERNAL=OFF +//Qt feature: sysv_shm (from target Qt6::Core) +QT_FEATURE_sysv_shm:INTERNAL=OFF +//Qt feature: tabbar (from target Qt6::Widgets) +QT_FEATURE_tabbar:INTERNAL=ON +//Qt feature: tabletevent (from target Qt6::Gui) +QT_FEATURE_tabletevent:INTERNAL=ON +//Qt feature: tableview (from target Qt6::Widgets) +QT_FEATURE_tableview:INTERNAL=ON +//Qt feature: tablewidget (from target Qt6::Widgets) +QT_FEATURE_tablewidget:INTERNAL=ON +//Qt feature: tabwidget (from target Qt6::Widgets) +QT_FEATURE_tabwidget:INTERNAL=ON +//Qt feature: temporaryfile (from target Qt6::Core) +QT_FEATURE_temporaryfile:INTERNAL=ON +//Qt feature: testlib (from target Qt6::Core) +QT_FEATURE_testlib:INTERNAL=ON +//Qt feature: textbrowser (from target Qt6::Widgets) +QT_FEATURE_textbrowser:INTERNAL=ON +//Qt feature: textdate (from target Qt6::Core) +QT_FEATURE_textdate:INTERNAL=ON +//Qt feature: textedit (from target Qt6::Widgets) +QT_FEATURE_textedit:INTERNAL=ON +//Qt feature: texthtmlparser (from target Qt6::Gui) +QT_FEATURE_texthtmlparser:INTERNAL=ON +//Qt feature: textmarkdownreader (from target Qt6::Gui) +QT_FEATURE_textmarkdownreader:INTERNAL=ON +//Qt feature: textmarkdownwriter (from target Qt6::Gui) +QT_FEATURE_textmarkdownwriter:INTERNAL=ON +//Qt feature: textodfwriter (from target Qt6::Gui) +QT_FEATURE_textodfwriter:INTERNAL=ON +//Qt feature: thread (from target Qt6::Core) +QT_FEATURE_thread:INTERNAL=ON +//Qt feature: timezone (from target Qt6::Core) +QT_FEATURE_timezone:INTERNAL=ON +//Qt feature: timezone_locale (from target Qt6::Core) +QT_FEATURE_timezone_locale:INTERNAL=OFF +//Qt feature: toolbar (from target Qt6::Widgets) +QT_FEATURE_toolbar:INTERNAL=ON +//Qt feature: toolbox (from target Qt6::Widgets) +QT_FEATURE_toolbox:INTERNAL=ON +//Qt feature: toolbutton (from target Qt6::Widgets) +QT_FEATURE_toolbutton:INTERNAL=ON +//Qt feature: tooltip (from target Qt6::Widgets) +QT_FEATURE_tooltip:INTERNAL=ON +//Qt feature: translation (from target Qt6::Core) +QT_FEATURE_translation:INTERNAL=ON +//Qt feature: transposeproxymodel (from target Qt6::Core) +QT_FEATURE_transposeproxymodel:INTERNAL=ON +//Qt feature: treeview (from target Qt6::Widgets) +QT_FEATURE_treeview:INTERNAL=ON +//Qt feature: treewidget (from target Qt6::Widgets) +QT_FEATURE_treewidget:INTERNAL=ON +//Qt feature: trivial_auto_var_init_pattern (from target Qt6::Core) +QT_FEATURE_trivial_auto_var_init_pattern:INTERNAL=OFF +//Qt feature: tslib (from target Qt6::Gui) +QT_FEATURE_tslib:INTERNAL=OFF +//Qt feature: tuiotouch (from target Qt6::Gui) +QT_FEATURE_tuiotouch:INTERNAL=ON +//Qt feature: undocommand (from target Qt6::Gui) +QT_FEATURE_undocommand:INTERNAL=ON +//Qt feature: undogroup (from target Qt6::Gui) +QT_FEATURE_undogroup:INTERNAL=ON +//Qt feature: undostack (from target Qt6::Gui) +QT_FEATURE_undostack:INTERNAL=ON +//Qt feature: undoview (from target Qt6::Widgets) +QT_FEATURE_undoview:INTERNAL=ON +//Qt feature: use_bfd_linker (from target Qt6::Core) +QT_FEATURE_use_bfd_linker:INTERNAL=OFF +//Qt feature: use_gold_linker (from target Qt6::Core) +QT_FEATURE_use_gold_linker:INTERNAL=OFF +//Qt feature: use_lld_linker (from target Qt6::Core) +QT_FEATURE_use_lld_linker:INTERNAL=OFF +//Qt feature: use_mold_linker (from target Qt6::Core) +QT_FEATURE_use_mold_linker:INTERNAL=OFF +//Qt feature: vaes (from target Qt6::Core) +QT_FEATURE_vaes:INTERNAL=ON +//Qt feature: validator (from target Qt6::Gui) +QT_FEATURE_validator:INTERNAL=ON +//Qt feature: version_tagging (from target Qt6::Core) +QT_FEATURE_version_tagging:INTERNAL=ON +//Qt feature: vkgen (from target Qt6::Gui) +QT_FEATURE_vkgen:INTERNAL=ON +//Qt feature: vkkhrdisplay (from target Qt6::Gui) +QT_FEATURE_vkkhrdisplay:INTERNAL=OFF +//Qt feature: vnc (from target Qt6::Gui) +QT_FEATURE_vnc:INTERNAL=OFF +//Qt feature: vsp2 (from target Qt6::Gui) +QT_FEATURE_vsp2:INTERNAL=OFF +//Qt feature: vulkan (from target Qt6::Gui) +QT_FEATURE_vulkan:INTERNAL=ON +//Qt feature: wasm_exceptions (from target Qt6::Core) +QT_FEATURE_wasm_exceptions:INTERNAL=OFF +//Qt feature: wasm_simd128 (from target Qt6::Core) +QT_FEATURE_wasm_simd128:INTERNAL=OFF +//Qt feature: wayland (from target Qt6::Gui) +QT_FEATURE_wayland:INTERNAL=OFF +//Qt feature: whatsthis (from target Qt6::Gui) +QT_FEATURE_whatsthis:INTERNAL=ON +//Qt feature: wheelevent (from target Qt6::Gui) +QT_FEATURE_wheelevent:INTERNAL=ON +//Qt feature: widgets (from target Qt6::Core) +QT_FEATURE_widgets:INTERNAL=ON +//Qt feature: widgettextcontrol (from target Qt6::Widgets) +QT_FEATURE_widgettextcontrol:INTERNAL=ON +//Qt feature: wizard (from target Qt6::Widgets) +QT_FEATURE_wizard:INTERNAL=ON +//Qt feature: x86intrin (from target Qt6::Core) +QT_FEATURE_x86intrin:INTERNAL=ON +//Qt feature: xcb (from target Qt6::Gui) +QT_FEATURE_xcb:INTERNAL=OFF +//Qt feature: xcb_egl_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_egl_plugin:INTERNAL=OFF +//Qt feature: xcb_glx (from target Qt6::Gui) +QT_FEATURE_xcb_glx:INTERNAL=OFF +//Qt feature: xcb_glx_plugin (from target Qt6::Gui) +QT_FEATURE_xcb_glx_plugin:INTERNAL=OFF +//Qt feature: xcb_native_painting (from target Qt6::Gui) +QT_FEATURE_xcb_native_painting:INTERNAL=OFF +//Qt feature: xcb_sm (from target Qt6::Gui) +QT_FEATURE_xcb_sm:INTERNAL=OFF +//Qt feature: xcb_xlib (from target Qt6::Gui) +QT_FEATURE_xcb_xlib:INTERNAL=OFF +//Qt feature: xkbcommon (from target Qt6::Gui) +QT_FEATURE_xkbcommon:INTERNAL=OFF +//Qt feature: xkbcommon_x11 (from target Qt6::Gui) +QT_FEATURE_xkbcommon_x11:INTERNAL=OFF +//Qt feature: xlib (from target Qt6::Gui) +QT_FEATURE_xlib:INTERNAL=OFF +//Qt feature: xml (from target Qt6::Core) +QT_FEATURE_xml:INTERNAL=ON +//Qt feature: xmlstream (from target Qt6::Core) +QT_FEATURE_xmlstream:INTERNAL=ON +//Qt feature: xmlstreamreader (from target Qt6::Core) +QT_FEATURE_xmlstreamreader:INTERNAL=ON +//Qt feature: xmlstreamwriter (from target Qt6::Core) +QT_FEATURE_xmlstreamwriter:INTERNAL=ON +//Qt feature: xrender (from target Qt6::Gui) +QT_FEATURE_xrender:INTERNAL=OFF +//Qt feature: zstd (from target Qt6::Core) +QT_FEATURE_zstd:INTERNAL=OFF +//ADVANCED property for variable: Vulkan_GLSLANG_VALIDATOR_EXECUTABLE +Vulkan_GLSLANG_VALIDATOR_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_GLSLC_EXECUTABLE +Vulkan_GLSLC_EXECUTABLE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_INCLUDE_DIR +Vulkan_INCLUDE_DIR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: Vulkan_LIBRARY +Vulkan_LIBRARY-ADVANCED:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE +//CMAKE_INSTALL_PREFIX during last run +_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/fontManager + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..500b50c --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeCXXCompiler.cmake @@ -0,0 +1,92 @@ +set(CMAKE_CXX_COMPILER "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "13.1.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") +set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23") + +set(CMAKE_CXX_PLATFORM_ID "MinGW") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/dev/Qt/Tools/mingw1310_64/bin/ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ar.exe") +set(CMAKE_RANLIB "C:/dev/Qt/Tools/mingw1310_64/bin/ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/dev/Qt/Tools/mingw1310_64/bin/gcc-ranlib.exe") +set(CMAKE_LINKER "C:/dev/Qt/Tools/mingw1310_64/bin/ld.exe") +set(CMAKE_LINKER_LINK "") +set(CMAKE_LINKER_LLD "") +set(CMAKE_CXX_COMPILER_LINKER "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe") +set(CMAKE_CXX_COMPILER_LINKER_ID "") +set(CMAKE_CXX_COMPILER_LINKER_VERSION ) +set(CMAKE_CXX_COMPILER_LINKER_FRONTEND_VARIANT ) +set(CMAKE_MT "") +set(CMAKE_TAPI "CMAKE_TAPI-NOTFOUND") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm;ccm;cxxm;c++m) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang IN ITEMS C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) +set(CMAKE_CXX_LINKER_DEPFILE_SUPPORTED FALSE) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "") +set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;mingw32;gcc_s;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex;kernel32") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0;C:/dev/Qt/Tools/mingw1310_64/lib/gcc;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib;C:/dev/Qt/Tools/mingw1310_64/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") +set(CMAKE_CXX_COMPILER_CLANG_RESOURCE_DIR "") diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeDetermineCompilerABI_CXX.bin b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000..609b139 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeRCCompiler.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeRCCompiler.cmake new file mode 100644 index 0000000..6c1d08d --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeRCCompiler.cmake @@ -0,0 +1,6 @@ +set(CMAKE_RC_COMPILER "C:/dev/Qt/Tools/mingw1310_64/bin/windres.exe") +set(CMAKE_RC_COMPILER_ARG1 "") +set(CMAKE_RC_COMPILER_LOADED 1) +set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC) +set(CMAKE_RC_OUTPUT_EXTENSION .obj) +set(CMAKE_RC_COMPILER_ENV_VAR "RC") diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeSystem.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeSystem.cmake new file mode 100644 index 0000000..9c49cbb --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Windows-10.0.22631") +set(CMAKE_HOST_SYSTEM_NAME "Windows") +set(CMAKE_HOST_SYSTEM_VERSION "10.0.22631") +set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") + + + +set(CMAKE_SYSTEM "Windows-10.0.22631") +set(CMAKE_SYSTEM_NAME "Windows") +set(CMAKE_SYSTEM_VERSION "10.0.22631") +set(CMAKE_SYSTEM_PROCESSOR "AMD64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..9a5e8f8 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,878 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + +#if !defined(__has_include) +/* If the compiler does not have __has_include, pretend the answer is + always no. */ +# define __has_include(x) 0 +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, + except that a few beta releases use the old format with V=2021. */ +# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) + /* The third version component from --version is an update index, + but no macro is provided for it. */ +# define COMPILER_VERSION_PATCH DEC(0) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) +# define COMPILER_ID "IntelLLVM" +#if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +#endif +#if defined(__GNUC__) +# define SIMULATE_ID "GNU" +#endif +/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and + * later. Look for 6 digit vs. 8 digit version number to decide encoding. + * VVVV is no smaller than the current year when a version is released. + */ +#if __INTEL_LLVM_COMPILER < 1000000L +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) +#else +# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) +# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) +#endif +#if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +#endif +#if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +#elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +#endif +#if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +#endif +#if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +#endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__open_xl__) && defined(__clang__) +# define COMPILER_ID "IBMClang" +# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) +# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) +# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) + + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__NVCOMPILER) +# define COMPILER_ID "NVHPC" +# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) +# if defined(__NVCOMPILER_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__clang__) && defined(__cray__) +# define COMPILER_ID "CrayClang" +# define COMPILER_VERSION_MAJOR DEC(__cray_major__) +# define COMPILER_VERSION_MINOR DEC(__cray_minor__) +# define COMPILER_VERSION_PATCH DEC(__cray_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__CLANG_FUJITSU) +# define COMPILER_ID "FujitsuClang" +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# define COMPILER_VERSION_INTERNAL_STR __clang_version__ + + +#elif defined(__FUJITSU) +# define COMPILER_ID "Fujitsu" +# if defined(__FCC_version__) +# define COMPILER_VERSION __FCC_version__ +# elif defined(__FCC_major__) +# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) +# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) +# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) +# endif +# if defined(__fcc_version) +# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) +# elif defined(__FCC_VERSION) +# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) +# endif + + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TASKING__) +# define COMPILER_ID "Tasking" + # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) + # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) +# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) + +#elif defined(__ORANGEC__) +# define COMPILER_ID "OrangeC" +# define COMPILER_VERSION_MAJOR DEC(__ORANGEC_MAJOR__) +# define COMPILER_VERSION_MINOR DEC(__ORANGEC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__ORANGEC_PATCHLEVEL__) + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION/100 % 100) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) && defined(__ti__) +# define COMPILER_ID "TIClang" + # define COMPILER_VERSION_MAJOR DEC(__ti_major__) + # define COMPILER_VERSION_MINOR DEC(__ti_minor__) + # define COMPILER_VERSION_PATCH DEC(__ti_patchlevel__) +# define COMPILER_VERSION_INTERNAL DEC(__ti_version__) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) +# define COMPILER_ID "LCC" +# define COMPILER_VERSION_MAJOR DEC(__LCC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__LCC__ % 100) +# if defined(__LCC_MINOR__) +# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) +# endif +# if defined(__GNUC__) && defined(__GNUC_MINOR__) +# define SIMULATE_ID "GNU" +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(_ADI_COMPILER) +# define COMPILER_ID "ADSP" +#if defined(__VERSIONNUM__) + /* __VERSIONNUM__ = 0xVVRRPPTT */ +# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) +# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) +# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) +# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__MSYS__) +# define PLATFORM_ID "MSYS" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# elif defined(__VXWORKS__) +# define PLATFORM_ID "VxWorks" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +# elif defined(_ADI_COMPILER) +# define PLATFORM_ID "ADSP" + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_ARM64EC) +# define ARCHITECTURE_ID "ARM64EC" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__ICCSTM8__) +# define ARCHITECTURE_ID "STM8" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__clang__) && defined(__ti__) +# if defined(__ARM_ARCH) +# define ARCHITECTURE_ID "Arm" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__TI_COMPILER_VERSION__) +# if defined(__TI_ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__MSP430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__TMS320C28XX__) +# define ARCHITECTURE_ID "TMS320C28x" + +# elif defined(__TMS320C6X__) || defined(_TMS320C6X) +# define ARCHITECTURE_ID "TMS320C6x" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +# elif defined(__ADSPSHARC__) +# define ARCHITECTURE_ID "SHARC" + +# elif defined(__ADSPBLACKFIN__) +# define ARCHITECTURE_ID "Blackfin" + +#elif defined(__TASKING__) + +# if defined(__CTC__) || defined(__CPTC__) +# define ARCHITECTURE_ID "TriCore" + +# elif defined(__CMCS__) +# define ARCHITECTURE_ID "MCS" + +# elif defined(__CARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__CARC__) +# define ARCHITECTURE_ID "ARC" + +# elif defined(__C51__) +# define ARCHITECTURE_ID "8051" + +# elif defined(__CPCP__) +# define ARCHITECTURE_ID "PCP" + +# else +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number. */ +#ifdef COMPILER_VERSION +char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; + +/* Construct a string literal encoding the version number components. */ +#elif defined(COMPILER_VERSION_MAJOR) +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#elif defined(COMPILER_VERSION_INTERNAL_STR) +char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_standard_default = "INFO" ":" "standard_default[" +#if CXX_STD > 202002L + "23" +#elif CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +const char* info_language_extensions_default = "INFO" ":" "extensions_default[" +#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(__STRICT_ANSI__) + "ON" +#else + "OFF" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) + require += info_cray[argc]; +#endif + require += info_language_standard_default[argc]; + require += info_language_extensions_default[argc]; + (void)argv; + return require; +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CompilerIdCXX/a.exe b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CompilerIdCXX/a.exe new file mode 100644 index 0000000..b5f59a2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CompilerIdCXX/a.exe differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeConfigureLog.yaml b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeConfigureLog.yaml new file mode 100644 index 0000000..8e42172 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeConfigureLog.yaml @@ -0,0 +1,400 @@ + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineSystem.cmake:205 (message)" + - "CMakeLists.txt:5 (project)" + message: | + The system is: Windows - 10.0.22631 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:5 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe + Build flags: -DQT_QML_DEBUG + Id flags: + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.exe" + + The CXX compiler identification is GNU, found in: + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/3.29.3/CompilerIdCXX/a.exe + + - + kind: "try_compile-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:67 (try_compile)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-ldlrac" + binary: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-ldlrac" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-ldlrac' + + Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_edfbe + [1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -fdiagnostics-color=always -v -o CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj -c C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe + Target: x86_64-w64-mingw32 + Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc' + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 13.1.0 (x86_64-posix-seh-rev1, Built by MinGW-Builds project) + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_edfbe.dir/' + C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT -D QT_QML_DEBUG C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_edfbe.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=core2 -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\herwi\\AppData\\Local\\Temp\\cc2F3sZc.s + GNU C++17 (x86_64-posix-seh-rev1, Built by MinGW-Builds project) version 13.1.0 (x86_64-w64-mingw32) + compiled by GNU C version 13.1.0, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.25-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include" + ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64D:/a/_temp/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed" + ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include" + ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/mingw/include" + #include "..." search starts here: + #include <...> search starts here: + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++ + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32 + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include + End of search list. + Compiler executable checksum: b3d236387f35294e2a73c51628039e05 + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_edfbe.dir/' + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\herwi\\AppData\\Local\\Temp\\cc2F3sZc.s + GNU assembler version 2.39 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.39 + COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ + LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ + COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.'\x0d + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -v -Wl,-v CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_edfbe.exe -Wl,--out-implib,libcmTC_edfbe.dll.a -Wl,--major-image-version,0,--minor-image-version,0 && cd ." + Using built-in specs. + COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe + COLLECT_LTO_WRAPPER=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe + Target: x86_64-w64-mingw32 + Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc' + Thread model: posix + Supported LTO compression algorithms: zlib + gcc version 13.1.0 (x86_64-posix-seh-rev1, Built by MinGW-Builds project) + COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ + LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/;C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../ + COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_edfbe.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_edfbe.' + C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -plugin C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll -plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\cceSmgeg.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 --sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 -m i386pep -Bdynamic -o cmTC_edfbe.exe C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_edfbe.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o + collect2 version 13.1.0 + C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ld.exe -plugin C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll -plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\cceSmgeg.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 --sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 -m i386pep -Bdynamic -o cmTC_edfbe.exe C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_edfbe.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o + GNU ld (GNU Binutils) 2.39\x0d + COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_edfbe.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_edfbe.'\x0d + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:137 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + add: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] + end of search list found + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + collapse include dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include] + implicit include dirs: [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include] + + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:173 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-ldlrac'] + ignore line: [] + ignore line: [Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_edfbe] + ignore line: [[1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -fdiagnostics-color=always -v -o CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj -c C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc'] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.1.0 (x86_64-posix-seh-rev1 Built by MinGW-Builds project) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_edfbe.dir/'] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/cc1plus.exe -quiet -v -iprefix C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/ -D_REENTRANT -D QT_QML_DEBUG C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_edfbe.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mtune=core2 -march=nocona -version -fdiagnostics-color=always -o C:\\Users\\herwi\\AppData\\Local\\Temp\\cc2F3sZc.s] + ignore line: [GNU C++17 (x86_64-posix-seh-rev1 Built by MinGW-Builds project) version 13.1.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 13.1.0 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.25-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include"] + ignore line: [ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64D:/a/_temp/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include] + ignore line: [End of search list.] + ignore line: [Compiler executable checksum: b3d236387f35294e2a73c51628039e05] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_edfbe.dir/'] + ignore line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\herwi\\AppData\\Local\\Temp\\cc2F3sZc.s] + ignore line: [GNU assembler version 2.39 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.39] + ignore line: [COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-D' 'QT_QML_DEBUG' '-v' '-o' 'CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.'\x0d] + ignore line: [[2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG -v -Wl -v CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj -o cmTC_edfbe.exe -Wl --out-implib libcmTC_edfbe.dll.a -Wl --major-image-version 0 --minor-image-version 0 && cd ."] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https://github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe --with-boot-ldflags=' -Wl,--disable-dynamicbase -static-libstdc++ -static-libgcc'] + ignore line: [Thread model: posix] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 13.1.0 (x86_64-posix-seh-rev1 Built by MinGW-Builds project) ] + ignore line: [COMPILER_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-D' 'QT_QML_DEBUG' '-v' '-o' 'cmTC_edfbe.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' '-dumpdir' 'cmTC_edfbe.'] + link line: [ C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe -plugin C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll -plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\cceSmgeg.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-ladvapi32 -plugin-opt=-pass-through=-lshell32 -plugin-opt=-pass-through=-luser32 -plugin-opt=-pass-through=-lkernel32 -plugin-opt=-pass-through=-liconv -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -plugin-opt=-pass-through=-lkernel32 --sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 -m i386pep -Bdynamic -o cmTC_edfbe.exe C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0 -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib -LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../.. -v CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_edfbe.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lkernel32 C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/liblto_plugin.dll] ==> ignore + arg [-plugin-opt=C:/dev/Qt/Tools/mingw1310_64/bin/../libexec/gcc/x86_64-w64-mingw32/13.1.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\\Users\\herwi\\AppData\\Local\\Temp\\cceSmgeg.res] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-lpthread] ==> ignore + arg [-plugin-opt=-pass-through=-ladvapi32] ==> ignore + arg [-plugin-opt=-pass-through=-lshell32] ==> ignore + arg [-plugin-opt=-pass-through=-luser32] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [-plugin-opt=-pass-through=-liconv] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [-plugin-opt=-pass-through=-lkernel32] ==> ignore + arg [--sysroot=C:/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64] ==> ignore + arg [-m] ==> ignore + arg [i386pep] ==> ignore + arg [-Bdynamic] ==> search dynamic + arg [-o] ==> ignore + arg [cmTC_edfbe.exe] ==> ignore + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] ==> obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] + arg [-LC:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] ==> dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] + arg [-v] ==> ignore + arg [CMakeFiles/cmTC_edfbe.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTC_edfbe.dll.a] ==> ignore + arg [--major-image-version] ==> ignore + arg [0] ==> ignore + arg [--minor-image-version] ==> ignore + arg [0] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lkernel32] ==> lib [kernel32] + arg [-lpthread] ==> lib [pthread] + arg [-ladvapi32] ==> lib [advapi32] + arg [-lshell32] ==> lib [shell32] + arg [-luser32] ==> lib [user32] + arg [-lkernel32] ==> lib [kernel32] + arg [-liconv] ==> lib [iconv] + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [-lkernel32] ==> lib [kernel32] + arg [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] ==> obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + linker tool for 'CXX': ../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe + remove lib [msvcrt] + remove lib [msvcrt] + collapse obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib/crt2.o] + collapse obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o] + collapse obj [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc] ==> [C:/dev/Qt/Tools/mingw1310_64/lib/gcc] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../lib] ==> [C:/dev/Qt/Tools/mingw1310_64/lib] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/dev/Qt/Tools/mingw1310_64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../..] ==> [C:/dev/Qt/Tools/mingw1310_64/lib] + implicit libs: [stdc++;mingw32;gcc_s;gcc;moldname;mingwex;kernel32;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex;kernel32] + implicit objs: [C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib/crt2.o;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtbegin.o;C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/crtend.o] + implicit dirs: [C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0;C:/dev/Qt/Tools/mingw1310_64/lib/gcc;C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/lib;C:/dev/Qt/Tools/mingw1310_64/lib] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:210 (cmake_determine_linker_id)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Running the CXX compiler's linker: "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe" "-v" + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:210 (cmake_determine_linker_id)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Running the CXX compiler's linker: "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe" "-V" + + - + kind: "message-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeDetermineCompilerABI.cmake:210 (cmake_determine_linker_id)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:5 (project)" + message: | + Running the CXX compiler's linker: "../src/gcc-13.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64 --enable-host-shared --disable-multilib --enable-languages=c,c++,fortran,lto --enable-libstdcxx-time=yes --enable-threads=posix --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --enable-libstdcxx-filesystem-ts=yes --disable-libssp --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=nocona --with-tune=core2 --with-libiconv --with-system-zlib --with-gmp=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/buildroot/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev1, Built by MinGW-Builds project' --with-bugurl=https:/github.com/niXman/mingw-builds CFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/include -I/c/buildroot/prerequisites/x86_64-zlib-static/include -I/c/buildroot/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/opt/lib -L/c/buildroot/prerequisites/x86_64-zlib-static/lib -L/c/buildroot/prerequisites/x86_64-w64-mingw32-static/lib ' LD_FOR_TARGET=/c/buildroot/x86_64-1310-posix-seh-msvcrt-rt_v11-rev1/mingw64/bin/ld.exe" "--version" + + - + kind: "try_compile-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake:99 (CHECK_CXX_SOURCE_COMPILES)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake:163 (_threads_check_libc)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake:34 (_qt_internal_find_third_party_dependencies)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake:136 (include)" + - "CMakeLists.txt:7 (find_package)" + checks: + - "Performing Test CMAKE_HAVE_LIBC_PTHREAD" + directories: + source: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-hf069m" + binary: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-hf069m" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/kwin" + buildResult: + variable: "CMAKE_HAVE_LIBC_PTHREAD" + cached: true + stdout: | + Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-hf069m' + + Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_6fc89 + [1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DCMAKE_HAVE_LIBC_PTHREAD -DQT_QML_DEBUG -fdiagnostics-color=always -o CMakeFiles/cmTC_6fc89.dir/src.cxx.obj -c C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-hf069m/src.cxx + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG CMakeFiles/cmTC_6fc89.dir/src.cxx.obj -o cmTC_6fc89.exe -Wl,--out-implib,libcmTC_6fc89.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 + - + kind: "try_compile-v1" + backtrace: + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake:101 (try_compile)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake:52 (cmake_check_source_compiles)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake:36 (check_cxx_source_compiles)" + - "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake:76 (find_package)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake:36 (find_dependency)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake:35 (_qt_internal_find_third_party_dependencies)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake:45 (include)" + - "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake:181 (find_package)" + - "CMakeLists.txt:7 (find_package)" + checks: + - "Performing Test HAVE_STDATOMIC" + directories: + source: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-0mos8o" + binary: "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-0mos8o" + cmakeVariables: + CMAKE_CXX_FLAGS: "-DQT_QML_DEBUG" + CMAKE_CXX_FLAGS_DEBUG: "-g" + CMAKE_EXE_LINKER_FLAGS: "" + CMAKE_MODULE_PATH: "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules;C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/3rdparty/kwin" + buildResult: + variable: "HAVE_STDATOMIC" + cached: true + stdout: | + Change Dir: 'C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-0mos8o' + + Run Build Command(s): C:/dev/Qt/Tools/Ninja/ninja.exe -v cmTC_c807e + [1/2] C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DHAVE_STDATOMIC -DQT_QML_DEBUG -fdiagnostics-color=always -o CMakeFiles/cmTC_c807e.dir/src.cxx.obj -c C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/CMakeScratch/TryCompile-0mos8o/src.cxx + [2/2] C:\\Windows\\system32\\cmd.exe /C "cd . && C:\\dev\\Qt\\Tools\\mingw1310_64\\bin\\g++.exe -DQT_QML_DEBUG CMakeFiles/cmTC_c807e.dir/src.cxx.obj -o cmTC_c807e.exe -Wl,--out-implib,libcmTC_c807e.dll.a -Wl,--major-image-version,0,--minor-image-version,0 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 && cd ." + + exitCode: 0 +... diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/TargetDirectories.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..7d7e690 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,31 @@ +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/edit_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/rebuild_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/list_install_components.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/install.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/install/local.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/install/strip.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/CMakeFiles/edit_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/CMakeFiles/rebuild_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/CMakeFiles/list_install_components.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/CMakeFiles/install.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/CMakeFiles/install/local.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/CMakeFiles/install/strip.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/qt_internal_plugins.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/edit_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/rebuild_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/list_install_components.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/install.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/install/local.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/install/strip.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen_timestamp_deps.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/edit_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/rebuild_cache.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/list_install_components.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/install.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/install/local.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/install/strip.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen_timestamp_deps.dir +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/clean_additional.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..994846b --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/clean_additional.cmake @@ -0,0 +1,13 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "Debug") + file(REMOVE_RECURSE + "app\\CMakeFiles\\fontManager_autogen.dir\\AutogenUsed.txt" + "app\\CMakeFiles\\fontManager_autogen.dir\\ParseCache.txt" + "app\\fontManager_autogen" + "plugins\\googlefonts\\CMakeFiles\\googlefonts_autogen.dir\\AutogenUsed.txt" + "plugins\\googlefonts\\CMakeFiles\\googlefonts_autogen.dir\\ParseCache.txt" + "plugins\\googlefonts\\googlefonts_autogen" + ) +endif() diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/cmake.check_cache b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj new file mode 100644 index 0000000..7ad63d4 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj new file mode 100644 index 0000000..7eae996 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager.dir/main.cpp.obj b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager.dir/main.cpp.obj new file mode 100644 index 0000000..3adaefb Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager.dir/main.cpp.obj differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..696b8bb --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json @@ -0,0 +1,180 @@ +{ + "AUTOGEN_COMMAND_LINE_LENGTH_MAX" : 32000, + "BUILD_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen", + "CMAKE_BINARY_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug", + "CMAKE_CURRENT_BINARY_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app", + "CMAKE_CURRENT_SOURCE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app", + "CMAKE_EXECUTABLE" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe", + "CMAKE_LIST_FILES" : + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/CMakeLists.txt", + "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + ], + "CMAKE_SOURCE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager", + "CROSS_CONFIG" : false, + "DEP_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/deps", + "DEP_FILE_RULE_NAME" : "fontManager_autogen/timestamp", + "HEADERS" : + [ + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.h", + "MU", + "EWIEGA46WW/moc_cmainwindow.cpp", + null + ], + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h", + "MU", + "EWIEGA46WW/moc_ifontprovider.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/include", + "MOC_COMPILATION_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "MINGW_HAS_SECURE_API=1", + "QT_CORE_LIB", + "QT_GUI_LIB", + "QT_NEEDS_QMAIN", + "QT_NO_CAST_FROM_ASCII", + "QT_WIDGETS_LIB", + "UNICODE", + "WIN32", + "WIN64", + "_ENABLE_EXTENDED_ALIGNED_STORAGE", + "_UNICODE", + "_WIN64" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "C:/dev/Qt/6.8.0/mingw_64/include/QtCore", + "C:/dev/Qt/6.8.0/mingw_64/include", + "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++", + "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets", + "C:/dev/Qt/6.8.0/mingw_64/include/QtGui", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed", + "C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe", + "-std=gnu++17", + "-dM", + "-E", + "-c", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : [], + "MULTI_CONFIG" : false, + "PARALLEL" : 16, + "PARSE_CACHE_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "C:/dev/Qt/6.8.0/mingw_64/bin/moc.exe", + "QT_UIC_EXECUTABLE" : "C:/dev/Qt/6.8.0/mingw_64/bin/uic.exe", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 8, + "SETTINGS_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.cpp", + "MU", + null + ], + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/main.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : [], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : true, + "VERBOSITY" : 0 +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/AutogenUsed.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/AutogenUsed.txt new file mode 100644 index 0000000..ad272c6 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/AutogenUsed.txt @@ -0,0 +1,2 @@ +moc:a61e7376f3acdabd140b69dd48b4e038ee671befb3bb652b1b819ce24c167eaa +uic:a023338540853a12649de41b212e65ec46160df8731ee83438899269ebe844a6 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/ParseCache.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/ParseCache.txt new file mode 100644 index 0000000..265bc5f --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/ParseCache.txt @@ -0,0 +1,368 @@ +# Generated by CMake. Changes will be overwritten. +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/main.cpp +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.h + mmc:Q_OBJECT + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.h + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/moc_predefs.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20iterator.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qline.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmargins.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpoint.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrect.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsize.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qspan.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qaction.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbitmap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbrush.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcolor.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcursor.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfont.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontmetrics.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qicon.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qimage.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qkeysequence.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpaintdevice.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpalette.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixelformat.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixmap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpolygon.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qregion.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgb.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgba64.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtgui-config.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiexports.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiglobal.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtransform.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs_win.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/QMainWindow + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qmainwindow.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qsizepolicy.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtabwidget.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgets-config.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsexports.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qwidget.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cassert + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.cpp + uic:./ui_cmainwindow.h diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/rules.ninja b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/rules.ninja new file mode 100644 index 0000000..b71b71f --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/rules.ninja @@ -0,0 +1,91 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.29 + +# This file contains all the rules used to get the outputs files +# built from the input files. +# It is included in the main 'build.ninja'. + +# ============================================================================= +# Project: fontManager +# Configurations: Debug +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for running custom commands. + +rule CUSTOM_COMMAND + command = $COMMAND + description = $DESC + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__googlefonts_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\dev\Qt\Tools\mingw1310_64\bin\g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared module. + +rule CXX_MODULE_LIBRARY_LINKER__googlefonts_Debug + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\dev\Qt\Tools\mingw1310_64\bin\g++.exe $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared -o $TARGET_FILE -Wl,--major-image-version,0,--minor-image-version,0 $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared module $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__fontManager_unscanned_Debug + depfile = $DEP_FILE + deps = gcc + command = ${LAUNCHER}${CODE_CHECK}C:\dev\Qt\Tools\mingw1310_64\bin\g++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX executable. + +rule CXX_EXECUTABLE_LINKER__fontManager_Debug + command = C:\Windows\system32\cmd.exe /C "$PRE_LINK && C:\dev\Qt\Tools\mingw1310_64\bin\g++.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE -Wl,--out-implib,$TARGET_IMPLIB -Wl,--major-image-version,0,--minor-image-version,0 $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX executable $TARGET_FILE + restat = $RESTAT + + +############################################# +# Rule for re-running cmake. + +rule RERUN_CMAKE + command = C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = C:\dev\Qt\Tools\Ninja\ninja.exe $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = C:\dev\Qt\Tools\Ninja\ninja.exe -t targets + description = All primary targets available: + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/Testing/Temporary/LastTest.log b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/Testing/Temporary/LastTest.log new file mode 100644 index 0000000..c04019f --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/Testing/Temporary/LastTest.log @@ -0,0 +1,3 @@ +Start testing: Oct 25 15:51 W. Europe Daylight Time +---------------------------------------------------------- +End testing: Oct 25 15:51 W. Europe Daylight Time diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj new file mode 100644 index 0000000..0793820 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj new file mode 100644 index 0000000..69183c1 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager.dir/main.cpp.obj b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager.dir/main.cpp.obj new file mode 100644 index 0000000..f321ee2 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager.dir/main.cpp.obj differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..917bbb7 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json @@ -0,0 +1,180 @@ +{ + "AUTOGEN_COMMAND_LINE_LENGTH_MAX" : 32000, + "BUILD_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen", + "CMAKE_BINARY_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app", + "CMAKE_CURRENT_BINARY_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app", + "CMAKE_CURRENT_SOURCE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/app", + "CMAKE_EXECUTABLE" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe", + "CMAKE_LIST_FILES" : + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/CMakeLists.txt", + "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake" + ], + "CMAKE_SOURCE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager", + "CROSS_CONFIG" : false, + "DEP_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/deps", + "DEP_FILE_RULE_NAME" : "fontManager_autogen/timestamp", + "HEADERS" : + [ + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.h", + "MU", + "EWIEGA46WW/moc_cmainwindow.cpp", + null + ], + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h", + "MU", + "EWIEGA46WW/moc_ifontprovider.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/include", + "MOC_COMPILATION_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "MINGW_HAS_SECURE_API=1", + "QT_CORE_LIB", + "QT_GUI_LIB", + "QT_NEEDS_QMAIN", + "QT_NO_CAST_FROM_ASCII", + "QT_WIDGETS_LIB", + "UNICODE", + "WIN32", + "WIN64", + "_ENABLE_EXTENDED_ALIGNED_STORAGE", + "_UNICODE", + "_WIN64" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "C:/dev/Qt/6.8.0/mingw_64/include/QtCore", + "C:/dev/Qt/6.8.0/mingw_64/include", + "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++", + "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets", + "C:/dev/Qt/6.8.0/mingw_64/include/QtGui", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed", + "C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe", + "-std=gnu++17", + "-dM", + "-E", + "-c", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : [], + "MULTI_CONFIG" : false, + "PARALLEL" : 16, + "PARSE_CACHE_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "C:/dev/Qt/6.8.0/mingw_64/bin/moc.exe", + "QT_UIC_EXECUTABLE" : "C:/dev/Qt/6.8.0/mingw_64/bin/uic.exe", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 8, + "SETTINGS_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.cpp", + "MU", + null + ], + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app/main.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : [], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : true, + "VERBOSITY" : 0 +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/AutogenUsed.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/AutogenUsed.txt new file mode 100644 index 0000000..ad272c6 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/AutogenUsed.txt @@ -0,0 +1,2 @@ +moc:a61e7376f3acdabd140b69dd48b4e038ee671befb3bb652b1b819ce24c167eaa +uic:a023338540853a12649de41b212e65ec46160df8731ee83438899269ebe844a6 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/ParseCache.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/ParseCache.txt new file mode 100644 index 0000000..bb93552 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/ParseCache.txt @@ -0,0 +1,368 @@ +# Generated by CMake. Changes will be overwritten. +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/main.cpp +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.h + mmc:Q_OBJECT + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.h + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/moc_predefs.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20iterator.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qline.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmargins.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpoint.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrect.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsize.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qspan.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qaction.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbitmap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbrush.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcolor.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcursor.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfont.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontmetrics.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qicon.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qimage.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qkeysequence.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpaintdevice.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpalette.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixelformat.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixmap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpolygon.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qregion.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgb.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgba64.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtgui-config.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiexports.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiglobal.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtransform.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs_win.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/QMainWindow + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qmainwindow.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qsizepolicy.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtabwidget.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgets-config.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsexports.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qwidget.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cassert + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h +C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.cpp + uic:./ui_cmainwindow.h diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/cmake_install.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/cmake_install.cmake new file mode 100644 index 0000000..8e71306 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: C:/Users/herwi/Documents/GitHub/qt/fontManager/app + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/fontManager") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE EXECUTABLE FILES "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager.exe") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/fontManager.exe" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/fontManager.exe") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/fontManager.exe") + endif() + endif() +endif() + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/EWIEGA46WW/moc_cmainwindow.cpp.d b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/EWIEGA46WW/moc_cmainwindow.cpp.d new file mode 100644 index 0000000..b45e470 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/EWIEGA46WW/moc_cmainwindow.cpp.d @@ -0,0 +1,361 @@ +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/EWIEGA46WW/moc_cmainwindow.cpp: C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/moc_predefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20iterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qline.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmargins.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpoint.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrect.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsize.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qspan.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qaction.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbitmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbrush.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcolor.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcursor.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfont.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontmetrics.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qicon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qimage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qkeysequence.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpaintdevice.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpalette.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixelformat.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpolygon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qregion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgb.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgba64.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtgui-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtransform.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/QMainWindow \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qmainwindow.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtabwidget.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qwidget.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cassert \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/deps b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/deps new file mode 100644 index 0000000..26cda9a --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/deps @@ -0,0 +1,397 @@ +fontManager_autogen/timestamp: \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/CMakeLists.txt \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.cpp \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/main.cpp \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/.qtc/package-manager/auto-setup.cmake \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/moc_predefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20iterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qline.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmargins.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpoint.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrect.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsize.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qspan.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qaction.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbitmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbrush.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcolor.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcursor.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfont.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontmetrics.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qicon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qimage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qkeysequence.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpaintdevice.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpalette.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixelformat.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpolygon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qregion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgb.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgba64.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtgui-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtransform.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/QMainWindow \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qmainwindow.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtabwidget.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qwidget.h \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake \ + C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake \ + C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake \ + C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cassert \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.ui \ + C:/dev/Qt/Tools/CMake_64/bin/cmake.exe diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/mocs_compilation.cpp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/mocs_compilation.cpp new file mode 100644 index 0000000..46cfd79 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/mocs_compilation.cpp @@ -0,0 +1,2 @@ +// This file is autogenerated. Changes will be overwritten. +#include "EWIEGA46WW/moc_cmainwindow.cpp" diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp new file mode 100644 index 0000000..e69de29 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/build.ninja b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/build.ninja new file mode 100644 index 0000000..f371e1c --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/build.ninja @@ -0,0 +1,586 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.29 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: fontManager +# Configurations: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Debug +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/ + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app && C:\dev\Qt\Tools\CMake_64\bin\cmake-gui.exe -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build list_install_components: phony + + +############################################# +# Utility command for install + +build CMakeFiles/install.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build install: phony CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/install/local.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local: phony CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/install/strip.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip: phony CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/herwi/Documents/GitHub/qt/fontManager/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build plugins/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins && C:\dev\Qt\Tools\CMake_64\bin\cmake-gui.exe -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build plugins/edit_cache: phony plugins/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build plugins/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build plugins/rebuild_cache: phony plugins/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build plugins/list_install_components: phony + + +############################################# +# Utility command for install + +build plugins/CMakeFiles/install.util: CUSTOM_COMMAND plugins/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build plugins/install: phony plugins/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build plugins/CMakeFiles/install/local.util: CUSTOM_COMMAND plugins/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build plugins/install/local: phony plugins/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build plugins/CMakeFiles/install/strip.util: CUSTOM_COMMAND plugins/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build plugins/install/strip: phony plugins/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for MODULE_LIBRARY target googlefonts + + +############################################# +# Order-only phony target for googlefonts + +build cmake_object_order_depends_target_googlefonts: phony || plugins/googlefonts/googlefonts_autogen plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp plugins/googlefonts/googlefonts_autogen/timestamp plugins/googlefonts/googlefonts_autogen_timestamp_deps plugins/googlefonts/meta_types/googlefonts_json_file_list.txt plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen + +build plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__googlefonts_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_googlefonts + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_GUI_LIB -DQT_NO_CAST_FROM_ASCII -DQT_PLUGIN -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 -Dgooglefonts_EXPORTS + DEP_FILE = plugins\googlefonts\CMakeFiles\googlefonts.dir\googlefonts_autogen\mocs_compilation.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/include -IC:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/../../app -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtPrintSupport + OBJECT_DIR = plugins\googlefonts\CMakeFiles\googlefonts.dir + OBJECT_FILE_DIR = plugins\googlefonts\CMakeFiles\googlefonts.dir\googlefonts_autogen + +build plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj: CXX_COMPILER__googlefonts_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.cpp || cmake_object_order_depends_target_googlefonts + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_GUI_LIB -DQT_NO_CAST_FROM_ASCII -DQT_PLUGIN -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 -Dgooglefonts_EXPORTS + DEP_FILE = plugins\googlefonts\CMakeFiles\googlefonts.dir\googlefonts.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/include -IC:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/../../app -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtPrintSupport + OBJECT_DIR = plugins\googlefonts\CMakeFiles\googlefonts.dir + OBJECT_FILE_DIR = plugins\googlefonts\CMakeFiles\googlefonts.dir + + +# ============================================================================= +# Link build statements for MODULE_LIBRARY target googlefonts + + +############################################# +# Link the shared module googlefonts.dll + +build googlefonts.dll: CXX_MODULE_LIBRARY_LINKER__googlefonts_Debug plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj | C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6PrintSupport.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Widgets.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Gui.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Core.a || plugins/googlefonts/googlefonts_autogen plugins/googlefonts/googlefonts_autogen_timestamp_deps + LANGUAGE_COMPILE_FLAGS = -DQT_QML_DEBUG -g + LINK_LIBRARIES = C:/dev/Qt/6.8.0/mingw_64/lib/libQt6PrintSupport.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Widgets.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Gui.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Core.a -lmpr -luserenv -ld3d11 -ldxgi -ldxguid -ld3d12 -lcomdlg32 -lwinspool -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + OBJECT_DIR = plugins\googlefonts\CMakeFiles\googlefonts.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = googlefonts.dll + TARGET_IMPLIB = plugins\googlefonts\libgooglefonts.a + TARGET_PDB = googlefonts.dll.dbg + + +############################################# +# Utility command for qt_internal_plugins + +build plugins/googlefonts/qt_internal_plugins: phony googlefonts.dll + + +############################################# +# Utility command for edit_cache + +build plugins/googlefonts/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake-gui.exe -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build plugins/googlefonts/edit_cache: phony plugins/googlefonts/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build plugins/googlefonts/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build plugins/googlefonts/rebuild_cache: phony plugins/googlefonts/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build plugins/googlefonts/list_install_components: phony + + +############################################# +# Utility command for install + +build plugins/googlefonts/CMakeFiles/install.util: CUSTOM_COMMAND plugins/googlefonts/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build plugins/googlefonts/install: phony plugins/googlefonts/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build plugins/googlefonts/CMakeFiles/install/local.util: CUSTOM_COMMAND plugins/googlefonts/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build plugins/googlefonts/install/local: phony plugins/googlefonts/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build plugins/googlefonts/CMakeFiles/install/strip.util: CUSTOM_COMMAND plugins/googlefonts/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build plugins/googlefonts/install/strip: phony plugins/googlefonts/CMakeFiles/install/strip.util + + +############################################# +# Utility command for googlefonts_autogen_timestamp_deps + +build plugins/googlefonts/googlefonts_autogen_timestamp_deps: phony + + +############################################# +# Utility command for googlefonts_autogen + +build plugins/googlefonts/googlefonts_autogen: phony plugins/googlefonts/CMakeFiles/googlefonts_autogen plugins/googlefonts/googlefonts_autogen/timestamp plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp plugins/googlefonts/googlefonts_autogen_timestamp_deps + + +############################################# +# Custom command for plugins\googlefonts\meta_types\qt6googlefonts_debug_metatypes.json.gen + +build plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json | ${cmake_ninja_workdir}plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen ${cmake_ninja_workdir}plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json: CUSTOM_COMMAND C$:/dev/Qt/6.8.0/mingw_64/bin/moc.exe plugins/googlefonts/meta_types/googlefonts_json_file_list.txt || plugins/googlefonts/googlefonts_autogen plugins/googlefonts/googlefonts_autogen_timestamp_deps + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins\googlefonts && C:\dev\Qt\6.8.0\mingw_64\bin\moc.exe -o C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen --collect-json @C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E copy_if_different C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json" + DESC = Running moc --collect-json for target googlefonts + restat = 1 + + +############################################# +# Custom command for plugins\googlefonts\googlefonts_autogen\timestamp + +build plugins/googlefonts/googlefonts_autogen/timestamp plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp | ${cmake_ninja_workdir}plugins/googlefonts/googlefonts_autogen/timestamp ${cmake_ninja_workdir}plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp: CUSTOM_COMMAND C$:/dev/Qt/6.8.0/mingw_64/bin/moc.exe C$:/dev/Qt/6.8.0/mingw_64/bin/uic.exe || plugins/googlefonts/googlefonts_autogen_timestamp_deps + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_autogen C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenInfo.json Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E touch C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_transform_depfile Ninja gccdepfile C:/Users/herwi/Documents/GitHub/qt/fontManager C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/deps C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/d/fdfed4c414fb4586a0faaf6132981c17ccbec4d3ddeece71b1f6b4af1bb65780.d" + DESC = Automatic MOC and UIC for target googlefonts + depfile = CMakeFiles\d\fdfed4c414fb4586a0faaf6132981c17ccbec4d3ddeece71b1f6b4af1bb65780.d + deps = gcc + restat = 1 + + +############################################# +# Custom command for plugins\googlefonts\meta_types\googlefonts_json_file_list.txt + +build plugins/googlefonts/meta_types/googlefonts_json_file_list.txt plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp | ${cmake_ninja_workdir}plugins/googlefonts/meta_types/googlefonts_json_file_list.txt ${cmake_ninja_workdir}plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp: CUSTOM_COMMAND C$:/dev/Qt/6.8.0/mingw_64/bin/cmake_automoc_parser.exe plugins/googlefonts/googlefonts_autogen/timestamp || plugins/googlefonts/googlefonts_autogen plugins/googlefonts/googlefonts_autogen_timestamp_deps + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\plugins\googlefonts && C:\dev\Qt\6.8.0\mingw_64\bin\cmake_automoc_parser.exe --cmake-autogen-cache-file C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/ParseCache.txt --cmake-autogen-info-file C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenInfo.json --output-file-path C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt --timestamp-file-path C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp --cmake-autogen-include-dir-path C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/include" + DESC = Running AUTOMOC file extraction for target googlefonts + restat = 1 + + +############################################# +# Phony custom command for plugins\googlefonts\CMakeFiles\googlefonts_autogen + +build plugins/googlefonts/CMakeFiles/googlefonts_autogen | ${cmake_ninja_workdir}plugins/googlefonts/CMakeFiles/googlefonts_autogen: phony plugins/googlefonts/googlefonts_autogen/timestamp || plugins/googlefonts/googlefonts_autogen_timestamp_deps + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/herwi/Documents/GitHub/qt/fontManager/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for EXECUTABLE target fontManager + + +############################################# +# Order-only phony target for fontManager + +build cmake_object_order_depends_target_fontManager: phony || app/fontManager_autogen app/fontManager_autogen/mocs_compilation.cpp app/fontManager_autogen/timestamp app/fontManager_autogen_timestamp_deps + +build app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__fontManager_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_fontManager + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_NO_CAST_FROM_ASCII -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = app\CMakeFiles\fontManager.dir\fontManager_autogen\mocs_compilation.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/include -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui + OBJECT_DIR = app\CMakeFiles\fontManager.dir + OBJECT_FILE_DIR = app\CMakeFiles\fontManager.dir\fontManager_autogen + +build app/CMakeFiles/fontManager.dir/main.cpp.obj: CXX_COMPILER__fontManager_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/main.cpp || cmake_object_order_depends_target_fontManager + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_NO_CAST_FROM_ASCII -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = app\CMakeFiles\fontManager.dir\main.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/include -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui + OBJECT_DIR = app\CMakeFiles\fontManager.dir + OBJECT_FILE_DIR = app\CMakeFiles\fontManager.dir + +build app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj: CXX_COMPILER__fontManager_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.cpp || cmake_object_order_depends_target_fontManager + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_NO_CAST_FROM_ASCII -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = app\CMakeFiles\fontManager.dir\cmainwindow.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/include -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui + OBJECT_DIR = app\CMakeFiles\fontManager.dir + OBJECT_FILE_DIR = app\CMakeFiles\fontManager.dir + + +# ============================================================================= +# Link build statements for EXECUTABLE target fontManager + + +############################################# +# Link the executable fontManager.exe + +build fontManager.exe: CXX_EXECUTABLE_LINKER__fontManager_Debug app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj app/CMakeFiles/fontManager.dir/main.cpp.obj app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj | C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Widgets.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Gui.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Core.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6EntryPoint.a || app/fontManager_autogen app/fontManager_autogen_timestamp_deps + FLAGS = -DQT_QML_DEBUG -g + LINK_FLAGS = -mwindows + LINK_LIBRARIES = C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Widgets.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Gui.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Core.a -lmpr -luserenv -lmingw32 C:/dev/Qt/6.8.0/mingw_64/lib/libQt6EntryPoint.a -lshell32 -ld3d11 -ldxgi -ldxguid -ld3d12 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + OBJECT_DIR = app\CMakeFiles\fontManager.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = fontManager.exe + TARGET_IMPLIB = app\libfontManager.dll.a + TARGET_PDB = fontManager.exe.dbg + + +############################################# +# Utility command for edit_cache + +build app/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\app && C:\dev\Qt\Tools\CMake_64\bin\cmake-gui.exe -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build app/edit_cache: phony app/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build app/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build app/rebuild_cache: phony app/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build app/list_install_components: phony + + +############################################# +# Utility command for install + +build app/CMakeFiles/install.util: CUSTOM_COMMAND app/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build app/install: phony app/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build app/CMakeFiles/install/local.util: CUSTOM_COMMAND app/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build app/install/local: phony app/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build app/CMakeFiles/install/strip.util: CUSTOM_COMMAND app/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build app/install/strip: phony app/CMakeFiles/install/strip.util + + +############################################# +# Utility command for fontManager_autogen_timestamp_deps + +build app/fontManager_autogen_timestamp_deps: phony + + +############################################# +# Utility command for fontManager_autogen + +build app/fontManager_autogen: phony app/CMakeFiles/fontManager_autogen app/fontManager_autogen/include/ui_cmainwindow.h app/fontManager_autogen/timestamp app/fontManager_autogen/mocs_compilation.cpp app/fontManager_autogen_timestamp_deps + + +############################################# +# Custom command for app\fontManager_autogen\timestamp + +build app/fontManager_autogen/timestamp app/fontManager_autogen/mocs_compilation.cpp | ${cmake_ninja_workdir}app/fontManager_autogen/timestamp ${cmake_ninja_workdir}app/fontManager_autogen/mocs_compilation.cpp: CUSTOM_COMMAND C$:/dev/Qt/6.8.0/mingw_64/bin/moc.exe C$:/dev/Qt/6.8.0/mingw_64/bin/uic.exe || app/fontManager_autogen_timestamp_deps + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_autogen C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E touch C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/timestamp && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_transform_depfile Ninja gccdepfile C:/Users/herwi/Documents/GitHub/qt/fontManager C:/Users/herwi/Documents/GitHub/qt/fontManager/app C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/fontManager_autogen/deps C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/d/8f8d1ca5f8d30088ca7c2ca586489515287c054c7720d5f06e9917f4238be9d1.d" + DESC = Automatic MOC and UIC for target fontManager + depfile = CMakeFiles\d\8f8d1ca5f8d30088ca7c2ca586489515287c054c7720d5f06e9917f4238be9d1.d + deps = gcc + restat = 1 + + +############################################# +# Phony custom command for app\CMakeFiles\fontManager_autogen + +build app/CMakeFiles/fontManager_autogen app/fontManager_autogen/include/ui_cmainwindow.h | ${cmake_ninja_workdir}app/CMakeFiles/fontManager_autogen ${cmake_ninja_workdir}app/fontManager_autogen/include/ui_cmainwindow.h: phony app/fontManager_autogen/timestamp || app/fontManager_autogen_timestamp_deps + +# ============================================================================= +# Target aliases. + +build fontManager: phony fontManager.exe + +build fontManager_autogen: phony app/fontManager_autogen + +build fontManager_autogen_timestamp_deps: phony app/fontManager_autogen_timestamp_deps + +build googlefonts: phony googlefonts.dll + +build googlefonts_autogen: phony plugins/googlefonts/googlefonts_autogen + +build googlefonts_autogen_timestamp_deps: phony plugins/googlefonts/googlefonts_autogen_timestamp_deps + +build qt_internal_plugins: phony plugins/googlefonts/qt_internal_plugins + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app + +build all: phony plugins/all app/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app + +build app/all: phony fontManager.exe + +# ============================================================================= + +############################################# +# Folder: C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins + +build plugins/all: phony plugins/googlefonts/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts + +build plugins/googlefonts/all: phony googlefonts.dll + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | .qtc/package-manager/auto-setup.cmake C$:/Users/herwi/Documents/GitHub/qt/fontManager/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/CMakeLists.txt C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake CMakeCache.txt CMakeFiles/3.29.3/CMakeCXXCompiler.cmake CMakeFiles/3.29.3/CMakeRCCompiler.cmake CMakeFiles/3.29.3/CMakeSystem.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build .qtc/package-manager/auto-setup.cmake C$:/Users/herwi/Documents/GitHub/qt/fontManager/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/CMakeLists.txt C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake CMakeCache.txt CMakeFiles/3.29.3/CMakeCXXCompiler.cmake CMakeFiles/3.29.3/CMakeRCCompiler.cmake CMakeFiles/3.29.3/CMakeSystem.cmake: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + CONFIG = Debug + + +############################################# +# Clean all the built files. + +build clean: CLEAN CMakeFiles/clean.additional + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/cmake_install.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/cmake_install.cmake new file mode 100644 index 0000000..1fb65fe --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/cmake_install.cmake @@ -0,0 +1,59 @@ +# Install script for directory: C:/Users/herwi/Documents/GitHub/qt/fontManager + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/fontManager") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/app/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager.exe b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager.exe new file mode 100644 index 0000000..0ebd6da Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager.exe differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/EWIEGA46WW/moc_cmainwindow.cpp.d b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/EWIEGA46WW/moc_cmainwindow.cpp.d new file mode 100644 index 0000000..8bc3222 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/EWIEGA46WW/moc_cmainwindow.cpp.d @@ -0,0 +1,361 @@ +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/EWIEGA46WW/moc_cmainwindow.cpp: C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/moc_predefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20iterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qline.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmargins.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpoint.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrect.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsize.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qspan.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qaction.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbitmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbrush.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcolor.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcursor.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfont.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontmetrics.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qicon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qimage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qkeysequence.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpaintdevice.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpalette.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixelformat.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpolygon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qregion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgb.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgba64.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtgui-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtransform.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/QMainWindow \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qmainwindow.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtabwidget.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qwidget.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cassert \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/deps b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/deps new file mode 100644 index 0000000..e5a03f3 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/deps @@ -0,0 +1,397 @@ +fontManager_autogen/timestamp: \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/CMakeLists.txt \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.cpp \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/main.cpp \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/.qtc/package-manager/auto-setup.cmake \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/moc_predefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20iterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qline.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmargins.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpoint.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrect.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsize.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qspan.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qaction.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbitmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qbrush.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcolor.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qcursor.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfont.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qfontmetrics.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qicon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qimage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qkeysequence.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpaintdevice.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpalette.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixelformat.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpixmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qpolygon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qregion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgb.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qrgba64.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtgui-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtguiglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qtransform.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtGui/qwindowdefs_win.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/QMainWindow \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qmainwindow.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qsizepolicy.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtabwidget.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgets-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qtwidgetsglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets/qwidget.h \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake \ + C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake \ + C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake \ + C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cassert \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.ui \ + C:/dev/Qt/Tools/CMake_64/bin/cmake.exe diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/mocs_compilation.cpp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/mocs_compilation.cpp new file mode 100644 index 0000000..46cfd79 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/mocs_compilation.cpp @@ -0,0 +1,2 @@ +// This file is autogenerated. Changes will be overwritten. +#include "EWIEGA46WW/moc_cmainwindow.cpp" diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/timestamp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/timestamp new file mode 100644 index 0000000..e69de29 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/cmake_install.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/cmake_install.cmake new file mode 100644 index 0000000..36d20dd --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/fontManager") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/cmake_install.cmake") +endif() + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj new file mode 100644 index 0000000..b6d8485 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj new file mode 100644 index 0000000..f85ae17 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenInfo.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..239be48 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenInfo.json @@ -0,0 +1,152 @@ +{ + "AUTOGEN_COMMAND_LINE_LENGTH_MAX" : 32000, + "BUILD_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen", + "CMAKE_BINARY_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app", + "CMAKE_CURRENT_BINARY_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts", + "CMAKE_CURRENT_SOURCE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts", + "CMAKE_EXECUTABLE" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe", + "CMAKE_LIST_FILES" : + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake" + ], + "CMAKE_SOURCE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager", + "CROSS_CONFIG" : false, + "DEP_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/deps", + "DEP_FILE_RULE_NAME" : "googlefonts_autogen/timestamp", + "HEADERS" : + [ + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.h", + "MU", + "EWIEGA46WW/moc_googlefonts.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/include", + "MOC_COMPILATION_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "MINGW_HAS_SECURE_API=1", + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_GUI_LIB", + "QT_NO_CAST_FROM_ASCII", + "QT_PLUGIN", + "QT_PRINTSUPPORT_LIB", + "QT_WIDGETS_LIB", + "UNICODE", + "WIN32", + "WIN64", + "_ENABLE_EXTENDED_ALIGNED_STORAGE", + "_UNICODE", + "_WIN64", + "googlefonts_EXPORTS" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app", + "C:/dev/Qt/6.8.0/mingw_64/include/QtCore", + "C:/dev/Qt/6.8.0/mingw_64/include", + "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++", + "C:/dev/Qt/6.8.0/mingw_64/include/QtGui", + "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets", + "C:/dev/Qt/6.8.0/mingw_64/include/QtPrintSupport", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed", + "C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe", + "-dM", + "-E", + "-c", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : [], + "MULTI_CONFIG" : false, + "PARALLEL" : 16, + "PARSE_CACHE_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "C:/dev/Qt/6.8.0/mingw_64/bin/moc.exe", + "QT_UIC_EXECUTABLE" : "C:/dev/Qt/6.8.0/mingw_64/bin/uic.exe", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 8, + "SETTINGS_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : [], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : true, + "VERBOSITY" : 0 +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenUsed.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenUsed.txt new file mode 100644 index 0000000..4faf060 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenUsed.txt @@ -0,0 +1,2 @@ +moc:e90661df8e44ff04afff82700100961c36c4f0d7e5d518dc9fcae2bb53840732 +uic:a023338540853a12649de41b212e65ec46160df8731ee83438899269ebe844a6 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/ParseCache.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/ParseCache.txt new file mode 100644 index 0000000..04ef3e9 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/ParseCache.txt @@ -0,0 +1,341 @@ +# Generated by CMake. Changes will be overwritten. +C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.h + mmc:Q_OBJECT + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/moc_predefs.h + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.h + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.json + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QString + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QtPlugin + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20algorithm.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcalendar.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborcommon.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborvalue.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatetime.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonobject.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonvalue.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlocale.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qplugin.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qregularexpression.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qurl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/quuid.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h +C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.cpp diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/cmake_install.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/cmake_install.cmake new file mode 100644 index 0000000..bdd112f --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/fontManager") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin" TYPE MODULE FILES "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/googlefonts.dll") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/googlefonts.dll" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/googlefonts.dll") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/googlefonts.dll") + endif() + endif() +endif() + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.d b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.d new file mode 100644 index 0000000..536daaf --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.d @@ -0,0 +1,337 @@ +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp: C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/moc_predefs.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.json \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QString \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QtPlugin \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20algorithm.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcalendar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborcommon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborvalue.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatetime.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonvalue.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlocale.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qplugin.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qregularexpression.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qurl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/quuid.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.json new file mode 100644 index 0000000..315df4d --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.json @@ -0,0 +1,30 @@ +{ + "classes": [ + { + "className": "GoogleFonts", + "interfaces": [ + [ + { + "className": "IFontProvider", + "id": "\"at.windesign.fontManager.IFontProvider/1.0\"" + } + ] + ], + "lineNumber": 11, + "object": true, + "qualifiedClassName": "GoogleFonts", + "superClasses": [ + { + "access": "public", + "name": "QObject" + }, + { + "access": "public", + "name": "IFontProvider" + } + ] + } + ], + "inputFile": "googlefonts.h", + "outputRevision": 68 +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/deps b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/deps new file mode 100644 index 0000000..060908c --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/deps @@ -0,0 +1,377 @@ +googlefonts_autogen/timestamp: \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/moc_predefs.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/CMakeLists.txt \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.cpp \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.json \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QString \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QtPlugin \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20algorithm.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcalendar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborcommon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborvalue.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatetime.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonvalue.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlocale.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qplugin.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qregularexpression.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qurl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/quuid.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake \ + C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake \ + C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h \ + C:/dev/Qt/Tools/CMake_64/bin/cmake.exe diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp new file mode 100644 index 0000000..5e8d1cc --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp @@ -0,0 +1,2 @@ +// This file is autogenerated. Changes will be overwritten. +#include "EWIEGA46WW/moc_googlefonts.cpp" diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/timestamp new file mode 100644 index 0000000..e69de29 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt new file mode 100644 index 0000000..9537868 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt @@ -0,0 +1 @@ +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/googlefonts_autogen/include/../EWIEGA46WW/moc_googlefonts.cpp.json diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp new file mode 100644 index 0000000..43a6055 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json new file mode 100644 index 0000000..cf3e745 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json @@ -0,0 +1,32 @@ +[ + { + "classes": [ + { + "className": "GoogleFonts", + "interfaces": [ + [ + { + "className": "IFontProvider", + "id": "\"at.windesign.fontManager.IFontProvider/1.0\"" + } + ] + ], + "lineNumber": 11, + "object": true, + "qualifiedClassName": "GoogleFonts", + "superClasses": [ + { + "access": "public", + "name": "QObject" + }, + { + "access": "public", + "name": "IFontProvider" + } + ] + } + ], + "inputFile": "googlefonts.h", + "outputRevision": 68 + } +] diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen new file mode 100644 index 0000000..cf3e745 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen @@ -0,0 +1,32 @@ +[ + { + "classes": [ + { + "className": "GoogleFonts", + "interfaces": [ + [ + { + "className": "IFontProvider", + "id": "\"at.windesign.fontManager.IFontProvider/1.0\"" + } + ] + ], + "lineNumber": 11, + "object": true, + "qualifiedClassName": "GoogleFonts", + "superClasses": [ + { + "access": "public", + "name": "QObject" + }, + { + "access": "public", + "name": "IFontProvider" + } + ] + } + ], + "inputFile": "googlefonts.h", + "outputRevision": 68 + } +] diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/qtcsettings.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/qtcsettings.cmake new file mode 100644 index 0000000..1649748 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/qtcsettings.cmake @@ -0,0 +1,2 @@ +# This file is managed by Qt Creator, do not edit! + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/build.ninja b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/build.ninja new file mode 100644 index 0000000..433a614 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/build.ninja @@ -0,0 +1,588 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.29 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: fontManager +# Configurations: Debug +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Debug +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = C$:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/ + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake-gui.exe -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build list_install_components: phony + + +############################################# +# Utility command for install + +build CMakeFiles/install.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build install: phony CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build CMakeFiles/install/local.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build install/local: phony CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build CMakeFiles/install/strip.util: CUSTOM_COMMAND all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build install/strip: phony CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/herwi/Documents/GitHub/qt/fontManager/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build plugins/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins && C:\dev\Qt\Tools\CMake_64\bin\cmake-gui.exe -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build plugins/edit_cache: phony plugins/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build plugins/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build plugins/rebuild_cache: phony plugins/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build plugins/list_install_components: phony + + +############################################# +# Utility command for install + +build plugins/CMakeFiles/install.util: CUSTOM_COMMAND plugins/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build plugins/install: phony plugins/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build plugins/CMakeFiles/install/local.util: CUSTOM_COMMAND plugins/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build plugins/install/local: phony plugins/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build plugins/CMakeFiles/install/strip.util: CUSTOM_COMMAND plugins/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build plugins/install/strip: phony plugins/CMakeFiles/install/strip.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for MODULE_LIBRARY target googlefonts + + +############################################# +# Order-only phony target for googlefonts + +build cmake_object_order_depends_target_googlefonts: phony || plugins/googlefonts/googlefonts_autogen plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp plugins/googlefonts/googlefonts_autogen/timestamp plugins/googlefonts/googlefonts_autogen_timestamp_deps plugins/googlefonts/meta_types/googlefonts_json_file_list.txt plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen + +build plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__googlefonts_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_googlefonts + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_GUI_LIB -DQT_NO_CAST_FROM_ASCII -DQT_PLUGIN -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 -Dgooglefonts_EXPORTS + DEP_FILE = plugins\googlefonts\CMakeFiles\googlefonts.dir\googlefonts_autogen\mocs_compilation.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/include -IC:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/../../app -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtPrintSupport + OBJECT_DIR = plugins\googlefonts\CMakeFiles\googlefonts.dir + OBJECT_FILE_DIR = plugins\googlefonts\CMakeFiles\googlefonts.dir\googlefonts_autogen + +build plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj: CXX_COMPILER__googlefonts_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.cpp || cmake_object_order_depends_target_googlefonts + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_DEPRECATED_WARNINGS -DQT_GUI_LIB -DQT_NO_CAST_FROM_ASCII -DQT_PLUGIN -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 -Dgooglefonts_EXPORTS + DEP_FILE = plugins\googlefonts\CMakeFiles\googlefonts.dir\googlefonts.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/include -IC:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/../../app -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtPrintSupport + OBJECT_DIR = plugins\googlefonts\CMakeFiles\googlefonts.dir + OBJECT_FILE_DIR = plugins\googlefonts\CMakeFiles\googlefonts.dir + + +# ============================================================================= +# Link build statements for MODULE_LIBRARY target googlefonts + + +############################################# +# Link the shared module app\googlefonts.dll + +build app/googlefonts.dll: CXX_MODULE_LIBRARY_LINKER__googlefonts_Debug plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj | C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6PrintSupport.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Widgets.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Gui.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Core.a || plugins/googlefonts/googlefonts_autogen plugins/googlefonts/googlefonts_autogen_timestamp_deps + LANGUAGE_COMPILE_FLAGS = -DQT_QML_DEBUG -g + LINK_LIBRARIES = C:/dev/Qt/6.8.0/mingw_64/lib/libQt6PrintSupport.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Widgets.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Gui.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Core.a -lmpr -luserenv -ld3d11 -ldxgi -ldxguid -ld3d12 -lcomdlg32 -lwinspool -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + OBJECT_DIR = plugins\googlefonts\CMakeFiles\googlefonts.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = app\googlefonts.dll + TARGET_IMPLIB = plugins\googlefonts\libgooglefonts.a + TARGET_PDB = googlefonts.dll.dbg + + +############################################# +# Utility command for qt_internal_plugins + +build plugins/googlefonts/qt_internal_plugins: phony app/googlefonts.dll + + +############################################# +# Utility command for edit_cache + +build plugins/googlefonts/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake-gui.exe -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build plugins/googlefonts/edit_cache: phony plugins/googlefonts/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build plugins/googlefonts/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build plugins/googlefonts/rebuild_cache: phony plugins/googlefonts/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build plugins/googlefonts/list_install_components: phony + + +############################################# +# Utility command for install + +build plugins/googlefonts/CMakeFiles/install.util: CUSTOM_COMMAND plugins/googlefonts/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build plugins/googlefonts/install: phony plugins/googlefonts/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build plugins/googlefonts/CMakeFiles/install/local.util: CUSTOM_COMMAND plugins/googlefonts/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build plugins/googlefonts/install/local: phony plugins/googlefonts/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build plugins/googlefonts/CMakeFiles/install/strip.util: CUSTOM_COMMAND plugins/googlefonts/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build plugins/googlefonts/install/strip: phony plugins/googlefonts/CMakeFiles/install/strip.util + + +############################################# +# Utility command for googlefonts_autogen_timestamp_deps + +build plugins/googlefonts/googlefonts_autogen_timestamp_deps: phony + + +############################################# +# Utility command for googlefonts_autogen + +build plugins/googlefonts/googlefonts_autogen: phony plugins/googlefonts/CMakeFiles/googlefonts_autogen plugins/googlefonts/googlefonts_autogen/timestamp plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp plugins/googlefonts/googlefonts_autogen_timestamp_deps + + +############################################# +# Custom command for plugins\googlefonts\meta_types\qt6googlefonts_debug_metatypes.json.gen + +build plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json | ${cmake_ninja_workdir}plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen ${cmake_ninja_workdir}plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json: CUSTOM_COMMAND C$:/dev/Qt/6.8.0/mingw_64/bin/moc.exe plugins/googlefonts/meta_types/googlefonts_json_file_list.txt || plugins/googlefonts/googlefonts_autogen plugins/googlefonts/googlefonts_autogen_timestamp_deps + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins\googlefonts && C:\dev\Qt\6.8.0\mingw_64\bin\moc.exe -o C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen --collect-json @C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E copy_if_different C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json" + DESC = Running moc --collect-json for target googlefonts + restat = 1 + + +############################################# +# Custom command for plugins\googlefonts\googlefonts_autogen\timestamp + +build plugins/googlefonts/googlefonts_autogen/timestamp plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp | ${cmake_ninja_workdir}plugins/googlefonts/googlefonts_autogen/timestamp ${cmake_ninja_workdir}plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp: CUSTOM_COMMAND C$:/dev/Qt/6.8.0/mingw_64/bin/moc.exe C$:/dev/Qt/6.8.0/mingw_64/bin/uic.exe || plugins/googlefonts/googlefonts_autogen_timestamp_deps + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins\googlefonts && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_autogen C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenInfo.json Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E touch C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/timestamp && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_transform_depfile Ninja gccdepfile C:/Users/herwi/Documents/GitHub/qt/fontManager C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/deps C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/d/6aa43748edf0a9d5bf2abd80254a61d65af744c78408d59c9c4a68441307c434.d" + DESC = Automatic MOC and UIC for target googlefonts + depfile = CMakeFiles\d\6aa43748edf0a9d5bf2abd80254a61d65af744c78408d59c9c4a68441307c434.d + deps = gcc + restat = 1 + + +############################################# +# Custom command for plugins\googlefonts\meta_types\googlefonts_json_file_list.txt + +build plugins/googlefonts/meta_types/googlefonts_json_file_list.txt plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp | ${cmake_ninja_workdir}plugins/googlefonts/meta_types/googlefonts_json_file_list.txt ${cmake_ninja_workdir}plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp: CUSTOM_COMMAND C$:/dev/Qt/6.8.0/mingw_64/bin/cmake_automoc_parser.exe plugins/googlefonts/googlefonts_autogen/timestamp || plugins/googlefonts/googlefonts_autogen plugins/googlefonts/googlefonts_autogen_timestamp_deps + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\plugins\googlefonts && C:\dev\Qt\6.8.0\mingw_64\bin\cmake_automoc_parser.exe --cmake-autogen-cache-file C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/ParseCache.txt --cmake-autogen-info-file C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenInfo.json --output-file-path C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt --timestamp-file-path C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp --cmake-autogen-include-dir-path C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/include" + DESC = Running AUTOMOC file extraction for target googlefonts + restat = 1 + + +############################################# +# Phony custom command for plugins\googlefonts\CMakeFiles\googlefonts_autogen + +build plugins/googlefonts/CMakeFiles/googlefonts_autogen | ${cmake_ninja_workdir}plugins/googlefonts/CMakeFiles/googlefonts_autogen: phony plugins/googlefonts/googlefonts_autogen/timestamp || plugins/googlefonts/googlefonts_autogen_timestamp_deps + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# C:/Users/herwi/Documents/GitHub/qt/fontManager/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for EXECUTABLE target fontManager + + +############################################# +# Order-only phony target for fontManager + +build cmake_object_order_depends_target_fontManager: phony || app/fontManager_autogen app/fontManager_autogen/mocs_compilation.cpp app/fontManager_autogen/timestamp app/fontManager_autogen_timestamp_deps + +build app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__fontManager_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_fontManager + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_NO_CAST_FROM_ASCII -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = app\CMakeFiles\fontManager.dir\fontManager_autogen\mocs_compilation.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/include -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui + OBJECT_DIR = app\CMakeFiles\fontManager.dir + OBJECT_FILE_DIR = app\CMakeFiles\fontManager.dir\fontManager_autogen + +build app/CMakeFiles/fontManager.dir/main.cpp.obj: CXX_COMPILER__fontManager_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/main.cpp || cmake_object_order_depends_target_fontManager + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_NO_CAST_FROM_ASCII -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = app\CMakeFiles\fontManager.dir\main.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/include -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui + OBJECT_DIR = app\CMakeFiles\fontManager.dir + OBJECT_FILE_DIR = app\CMakeFiles\fontManager.dir + +build app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj: CXX_COMPILER__fontManager_unscanned_Debug C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/cmainwindow.cpp || cmake_object_order_depends_target_fontManager + DEFINES = -DMINGW_HAS_SECURE_API=1 -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NEEDS_QMAIN -DQT_NO_CAST_FROM_ASCII -DQT_WIDGETS_LIB -DUNICODE -DWIN32 -DWIN64 -D_ENABLE_EXTENDED_ALIGNED_STORAGE -D_UNICODE -D_WIN64 + DEP_FILE = app\CMakeFiles\fontManager.dir\cmainwindow.cpp.obj.d + FLAGS = -DQT_QML_DEBUG -g -std=gnu++17 -fdiagnostics-color=always + INCLUDES = -IC:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/include -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtCore -isystem C:/dev/Qt/6.8.0/mingw_64/include -isystem C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++ -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets -isystem C:/dev/Qt/6.8.0/mingw_64/include/QtGui + OBJECT_DIR = app\CMakeFiles\fontManager.dir + OBJECT_FILE_DIR = app\CMakeFiles\fontManager.dir + + +# ============================================================================= +# Link build statements for EXECUTABLE target fontManager + + +############################################# +# Link the executable fontManager.exe + +build fontManager.exe: CXX_EXECUTABLE_LINKER__fontManager_Debug app/CMakeFiles/fontManager.dir/fontManager_autogen/mocs_compilation.cpp.obj app/CMakeFiles/fontManager.dir/main.cpp.obj app/CMakeFiles/fontManager.dir/cmainwindow.cpp.obj | C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Widgets.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Gui.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6Core.a C$:/dev/Qt/6.8.0/mingw_64/lib/libQt6EntryPoint.a || app/fontManager_autogen app/fontManager_autogen_timestamp_deps + FLAGS = -DQT_QML_DEBUG -g + LINK_FLAGS = -mwindows + LINK_LIBRARIES = C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Widgets.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Gui.a C:/dev/Qt/6.8.0/mingw_64/lib/libQt6Core.a -lmpr -luserenv -lmingw32 C:/dev/Qt/6.8.0/mingw_64/lib/libQt6EntryPoint.a -lshell32 -ld3d11 -ldxgi -ldxguid -ld3d12 -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + OBJECT_DIR = app\CMakeFiles\fontManager.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = fontManager.exe + TARGET_IMPLIB = app\libfontManager.dll.a + TARGET_PDB = fontManager.exe.dbg + + +############################################# +# Utility command for edit_cache + +build app/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app && C:\dev\Qt\Tools\CMake_64\bin\cmake-gui.exe -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build app/edit_cache: phony app/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build app/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe --regenerate-during-build -SC:\Users\herwi\Documents\GitHub\qt\fontManager -BC:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build app/rebuild_cache: phony app/CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for list_install_components + +build app/list_install_components: phony + + +############################################# +# Utility command for install + +build app/CMakeFiles/install.util: CUSTOM_COMMAND app/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -P cmake_install.cmake" + DESC = Install the project... + pool = console + restat = 1 + +build app/install: phony app/CMakeFiles/install.util + + +############################################# +# Utility command for install/local + +build app/CMakeFiles/install/local.util: CUSTOM_COMMAND app/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake" + DESC = Installing only the local directory... + pool = console + restat = 1 + +build app/install/local: phony app/CMakeFiles/install/local.util + + +############################################# +# Utility command for install/strip + +build app/CMakeFiles/install/strip.util: CUSTOM_COMMAND app/all + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake" + DESC = Installing the project stripped... + pool = console + restat = 1 + +build app/install/strip: phony app/CMakeFiles/install/strip.util + + +############################################# +# Utility command for fontManager_autogen_timestamp_deps + +build app/fontManager_autogen_timestamp_deps: phony + + +############################################# +# Utility command for fontManager_autogen + +build app/fontManager_autogen: phony app/CMakeFiles/fontManager_autogen app/fontManager_autogen/include/ui_cmainwindow.h app/fontManager_autogen/timestamp app/fontManager_autogen/mocs_compilation.cpp app/fontManager_autogen_timestamp_deps + + +############################################# +# Custom command for app\fontManager_autogen\timestamp + +build app/fontManager_autogen/timestamp app/fontManager_autogen/mocs_compilation.cpp | ${cmake_ninja_workdir}app/fontManager_autogen/timestamp ${cmake_ninja_workdir}app/fontManager_autogen/mocs_compilation.cpp: CUSTOM_COMMAND C$:/dev/Qt/6.8.0/mingw_64/bin/moc.exe C$:/dev/Qt/6.8.0/mingw_64/bin/uic.exe || app/fontManager_autogen_timestamp_deps + COMMAND = C:\Windows\system32\cmd.exe /C "cd /D C:\Users\herwi\Documents\GitHub\qt\fontManager\build\Desktop_Qt_6_8_0_MinGW_64_bit-Debug\app && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_autogen C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/CMakeFiles/fontManager_autogen.dir/AutogenInfo.json Debug && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E touch C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/timestamp && C:\dev\Qt\Tools\CMake_64\bin\cmake.exe -E cmake_transform_depfile Ninja gccdepfile C:/Users/herwi/Documents/GitHub/qt/fontManager C:/Users/herwi/Documents/GitHub/qt/fontManager/app C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/fontManager_autogen/deps C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/CMakeFiles/d/6de98959c869cffa0acf74b1a035fe1ae72983b659eb050f21773eaad2efeec5.d" + DESC = Automatic MOC and UIC for target fontManager + depfile = CMakeFiles\d\6de98959c869cffa0acf74b1a035fe1ae72983b659eb050f21773eaad2efeec5.d + deps = gcc + restat = 1 + + +############################################# +# Phony custom command for app\CMakeFiles\fontManager_autogen + +build app/CMakeFiles/fontManager_autogen app/fontManager_autogen/include/ui_cmainwindow.h | ${cmake_ninja_workdir}app/CMakeFiles/fontManager_autogen ${cmake_ninja_workdir}app/fontManager_autogen/include/ui_cmainwindow.h: phony app/fontManager_autogen/timestamp || app/fontManager_autogen_timestamp_deps + +# ============================================================================= +# Target aliases. + +build fontManager: phony fontManager.exe + +build fontManager_autogen: phony app/fontManager_autogen + +build fontManager_autogen_timestamp_deps: phony app/fontManager_autogen_timestamp_deps + +build googlefonts: phony app/googlefonts.dll + +build googlefonts.dll: phony app/googlefonts.dll + +build googlefonts_autogen: phony plugins/googlefonts/googlefonts_autogen + +build googlefonts_autogen_timestamp_deps: phony plugins/googlefonts/googlefonts_autogen_timestamp_deps + +build qt_internal_plugins: phony plugins/googlefonts/qt_internal_plugins + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug + +build all: phony plugins/all app/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app + +build app/all: phony fontManager.exe + +# ============================================================================= + +############################################# +# Folder: C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins + +build plugins/all: phony plugins/googlefonts/all + +# ============================================================================= + +############################################# +# Folder: C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts + +build plugins/googlefonts/all: phony app/googlefonts.dll + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | .qtc/package-manager/auto-setup.cmake C$:/Users/herwi/Documents/GitHub/qt/fontManager/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/CMakeLists.txt C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake CMakeCache.txt CMakeFiles/3.29.3/CMakeCXXCompiler.cmake CMakeFiles/3.29.3/CMakeRCCompiler.cmake CMakeFiles/3.29.3/CMakeSystem.cmake + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build .qtc/package-manager/auto-setup.cmake C$:/Users/herwi/Documents/GitHub/qt/fontManager/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/app/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/CMakeLists.txt C$:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/CMakeLists.txt C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6CoreTools/Qt6CoreToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Core/Qt6CoreVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointMinGW32Target.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6EntryPointPrivate/Qt6EntryPointPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6GuiTools/Qt6GuiToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6GuiVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QGifPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICNSPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QICOPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QJpegPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QMinimalIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QOffscreenIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QPdfPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgIconPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QSvgPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTgaPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTiffPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QTuioTouchPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QVirtualKeyboardPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWbmpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWebpPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsDirect2DIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Gui/Qt6QWindowsIntegrationPluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6WidgetsTools/Qt6WidgetsToolsVersionlessTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6QModernWindowsStylePluginTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsDependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsMacros.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsPlugins.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets-relwithdebinfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6Widgets/Qt6WidgetsVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateAdditionalTargetInfo.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfig.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6ZlibPrivate/Qt6ZlibPrivateVersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapAtomic.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake C$:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCommonLanguageInclude.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeGenericSystem.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeInitializeConfigs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeLanguageInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeRCInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInformation.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeSystemSpecificInitialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckIncludeFileCXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckLibraryExists.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Compiler/GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageHandleStandardArgs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindPackageMessage.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindThreads.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/FindVulkan.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/GNUInstallDirs.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckCompilerFlag.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckFlagCommonConfig.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Internal/CheckSourceCompiles.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU-CXX.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-GNU.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-Initialize.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows-windres.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/Windows.cmake C$:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/Platform/WindowsPaths.cmake CMakeCache.txt CMakeFiles/3.29.3/CMakeCXXCompiler.cmake CMakeFiles/3.29.3/CMakeRCCompiler.cmake CMakeFiles/3.29.3/CMakeSystem.cmake: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + CONFIG = Debug + + +############################################# +# Clean all the built files. + +build clean: CLEAN CMakeFiles/clean.additional + + +############################################# +# Print all primary targets available. + +build help: HELP + + +############################################# +# Make the all target the default. + +default all diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/cmake_install.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/cmake_install.cmake new file mode 100644 index 0000000..9ac6c58 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/cmake_install.cmake @@ -0,0 +1,59 @@ +# Install script for directory: C:/Users/herwi/Documents/GitHub/qt/fontManager + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/fontManager") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/cmake_install.cmake") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/cmake_install.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/cmake_install.cmake new file mode 100644 index 0000000..2728dd0 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/fontManager") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/cmake_install.cmake") +endif() + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj new file mode 100644 index 0000000..d788c7a Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts.cpp.obj differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj new file mode 100644 index 0000000..2c2f568 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts.dir/googlefonts_autogen/mocs_compilation.cpp.obj differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenInfo.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..ba512c2 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenInfo.json @@ -0,0 +1,152 @@ +{ + "AUTOGEN_COMMAND_LINE_LENGTH_MAX" : 32000, + "BUILD_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen", + "CMAKE_BINARY_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug", + "CMAKE_CURRENT_BINARY_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts", + "CMAKE_CURRENT_SOURCE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts", + "CMAKE_EXECUTABLE" : "C:/dev/Qt/Tools/CMake_64/bin/cmake.exe", + "CMAKE_LIST_FILES" : + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/CMakeLists.txt", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake", + "C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake" + ], + "CMAKE_SOURCE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager", + "CROSS_CONFIG" : false, + "DEP_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/deps", + "DEP_FILE_RULE_NAME" : "googlefonts_autogen/timestamp", + "HEADERS" : + [ + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.h", + "MU", + "EWIEGA46WW/moc_googlefonts.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/include", + "MOC_COMPILATION_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "MINGW_HAS_SECURE_API=1", + "QT_CORE_LIB", + "QT_DEPRECATED_WARNINGS", + "QT_GUI_LIB", + "QT_NO_CAST_FROM_ASCII", + "QT_PLUGIN", + "QT_PRINTSUPPORT_LIB", + "QT_WIDGETS_LIB", + "UNICODE", + "WIN32", + "WIN64", + "_ENABLE_EXTENDED_ALIGNED_STORAGE", + "_UNICODE", + "_WIN64", + "googlefonts_EXPORTS" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/app", + "C:/dev/Qt/6.8.0/mingw_64/include/QtCore", + "C:/dev/Qt/6.8.0/mingw_64/include", + "C:/dev/Qt/6.8.0/mingw_64/mkspecs/win32-g++", + "C:/dev/Qt/6.8.0/mingw_64/include/QtGui", + "C:/dev/Qt/6.8.0/mingw_64/include/QtWidgets", + "C:/dev/Qt/6.8.0/mingw_64/include/QtPrintSupport", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include", + "C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed", + "C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include" + ], + "MOC_MACRO_NAMES" : + [ + "Q_OBJECT", + "Q_GADGET", + "Q_NAMESPACE", + "Q_NAMESPACE_EXPORT", + "Q_GADGET_EXPORT", + "Q_ENUM_NS" + ], + "MOC_OPTIONS" : [ "--output-json" ], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "C:/dev/Qt/Tools/mingw1310_64/bin/g++.exe", + "-dM", + "-E", + "-c", + "C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : [], + "MULTI_CONFIG" : false, + "PARALLEL" : 16, + "PARSE_CACHE_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "C:/dev/Qt/6.8.0/mingw_64/bin/moc.exe", + "QT_UIC_EXECUTABLE" : "C:/dev/Qt/6.8.0/mingw_64/bin/uic.exe", + "QT_VERSION_MAJOR" : 6, + "QT_VERSION_MINOR" : 8, + "SETTINGS_FILE" : "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : [], + "UIC_UI_FILES" : [], + "USE_BETTER_GRAPH" : true, + "VERBOSITY" : 0 +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenUsed.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenUsed.txt new file mode 100644 index 0000000..4faf060 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/AutogenUsed.txt @@ -0,0 +1,2 @@ +moc:e90661df8e44ff04afff82700100961c36c4f0d7e5d518dc9fcae2bb53840732 +uic:a023338540853a12649de41b212e65ec46160df8731ee83438899269ebe844a6 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/ParseCache.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/ParseCache.txt new file mode 100644 index 0000000..d538c0d --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/CMakeFiles/googlefonts_autogen.dir/ParseCache.txt @@ -0,0 +1,345 @@ +# Generated by CMake. Changes will be overwritten. +C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.h + mmc:Q_OBJECT + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/moc_predefs.h + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.h + mdp:C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.json + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QAbstractItemModel + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QJsonDocument + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QJsonValue + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QtPlugin + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20algorithm.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qabstractitemmodel.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcalendar.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborcommon.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborvalue.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatetime.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsondocument.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonobject.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonvalue.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlocale.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qplugin.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qregularexpression.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qurl.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/quuid.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h + mdp:C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h + mdp:C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h + mdp:C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h +C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.cpp diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/cmake_install.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/cmake_install.cmake new file mode 100644 index 0000000..d2ba57f --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/fontManager") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "Debug") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +# Set default install directory permissions. +if(NOT DEFINED CMAKE_OBJDUMP) + set(CMAKE_OBJDUMP "C:/dev/Qt/Tools/mingw1310_64/bin/objdump.exe") +endif() + +if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) + file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/bin/app" TYPE MODULE FILES "C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/app/googlefonts.dll") + if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/app/googlefonts.dll" AND + NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/app/googlefonts.dll") + if(CMAKE_INSTALL_DO_STRIP) + execute_process(COMMAND "C:/dev/Qt/Tools/mingw1310_64/bin/strip.exe" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/bin/app/googlefonts.dll") + endif() + endif() +endif() + diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.d b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.d new file mode 100644 index 0000000..b856205 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.d @@ -0,0 +1,341 @@ +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp: C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/moc_predefs.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.json \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QAbstractItemModel \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QJsonDocument \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QJsonValue \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QtPlugin \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20algorithm.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qabstractitemmodel.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcalendar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborcommon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborvalue.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatetime.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsondocument.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonvalue.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlocale.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qplugin.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qregularexpression.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qurl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/quuid.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.json new file mode 100644 index 0000000..9a22233 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/EWIEGA46WW/moc_googlefonts.cpp.json @@ -0,0 +1,26 @@ +{ + "classes": [ + { + "className": "GoogleFonts", + "interfaces": [ + [ + { + "className": "IFontProvider", + "id": "\"at.windesign.fontManager.IFontProvider/1.0\"" + } + ] + ], + "lineNumber": 15, + "object": true, + "qualifiedClassName": "GoogleFonts", + "superClasses": [ + { + "access": "public", + "name": "IFontProvider" + } + ] + } + ], + "inputFile": "googlefonts.h", + "outputRevision": 68 +} diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/deps b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/deps new file mode 100644 index 0000000..ba4496a --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/deps @@ -0,0 +1,381 @@ +googlefonts_autogen/timestamp: \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/app/ifontprovider.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/moc_predefs.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/CMakeLists.txt \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.cpp \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.h \ + C:/Users/herwi/Documents/GitHub/qt/fontManager/plugins/googlefonts/googlefonts.json \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QAbstractItemModel \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QJsonDocument \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QJsonValue \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/QtPlugin \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20algorithm.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20functional.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20memory.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q20type_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/q23utility.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qabstractitemmodel.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qanystringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydataops.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qarraydatapointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qassert.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qatomic_cxx11.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbasicatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbindingstorage.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearraylist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qbytearrayview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcalendar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborcommon.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcborvalue.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qchar.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompare_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcomparehelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcompilerdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconfig.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qconstructormacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainerinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontainertools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qcontiguouscache.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdarwinhelpers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatastream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdatetime.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qdebug.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qendian.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qexceptionhandling.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qflags.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfloat16.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qforeach.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionaltools_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qfunctionpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qgenericatomic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobal.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qglobalstatic.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhash.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qhashfunctions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiodevicebase.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterable.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qiterator.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsondocument.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qjsonvalue.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlatin1stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlocale.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qlogging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmalloc.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmath.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetacontainer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qmetatype.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qminmax.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnamespace.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qnumeric.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobject_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qobjectdefs_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qoverload.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpair.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qplugin.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qprocessordetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qrefcount.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qregularexpression.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qscopeguard.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qset.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qshareddata_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsharedpointer_impl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstring.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringalgorithms.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringbuilder.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringconverter_base.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringfwd.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringlist.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringliteral.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringmatcher.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringtokenizer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qstringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qswap.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsysinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qsystemdetection.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtaggedpointer.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtclasshelpermacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfiginclude.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtconfigmacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcore-config.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtcoreexports.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationdefinitions.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtdeprecationmarkers.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtenvironmentvariables.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtextstream.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtmetamacros.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtnoop.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtpreprocessorsupport.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtresource.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttranslation.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qttypetraits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversion.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtversionchecks.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypeinfo.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qtypes.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qurl.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qutf8stringview.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/quuid.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvariant.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qvarlengtharray.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qversiontagging.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qxptype_traits.h \ + C:/dev/Qt/6.8.0/mingw_64/include/QtCore/qyieldcpu.h \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Config.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigExtras.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersion.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Dependencies.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6Targets.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/Qt6VersionlessAliasTargets.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeature.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtFeatureCommon.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtInstallPaths.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicAppleHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicExternalProjectHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicGitHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicPluginHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomGenerationHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicSbomHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTargetHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicTestHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicToolHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportAdditionalTargetInfo.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfig.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersion.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportConfigVersionImpl.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportDependencies.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportPlugins.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets-relwithdebinfo.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportTargets.cmake \ + C:/dev/Qt/6.8.0/mingw_64/lib/cmake/Qt6PrintSupport/Qt6PrintSupportVersionlessAliasTargets.cmake \ + C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CMakeFindDependencyMacro.cmake \ + C:/dev/Qt/Tools/CMake_64/share/cmake-3.29/Modules/CheckCXXCompilerFlag.cmake \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/algorithm \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/array \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/atomic \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/auto_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/backward/binders.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bit \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/algorithmfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/align.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocated_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/atomic_lockfree_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/basic_string.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/char_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/charconv.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/chrono.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/concept_check.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cpp_type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_forced.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/cxxabi_init_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/enable_special_members.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/erase_if.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/exception_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functexcept.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/functional_hash.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hash_bytes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/hashtable_policy.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/invoke.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ios_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/list.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/locale_classes.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/localefwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memory_resource.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/memoryfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/move.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/nested_exception.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/new_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/node_handle.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ostream_insert.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/parse_numbers.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/postypes.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/predefined_ops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/ptr_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/range_access.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/refwrap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/requires_hosted.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_atomic.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/shared_ptr_base.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/specfun.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_abs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/std_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algo.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_algobase.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_bvector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_construct.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_function.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_heap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_funcs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_iterator_base_types.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_list.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_multimap.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_numeric.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_pair.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_raw_storage_iter.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_relops.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tempbuf.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_tree.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_uninitialized.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stl_vector.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stream_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/streambuf_iterator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/string_view.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/stringfwd.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uniform_int_dist.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unique_ptr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/unordered_map.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/uses_allocator_args.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/utility.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/bits/vector.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cctype \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cerrno \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/chrono \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/climits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/clocale \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cmath \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/compare \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstddef \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdint \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstdlib \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cstring \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ctime \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/cwchar \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/assertions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/debug/debug.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/exception \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/aligned_buffer.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/alloc_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/atomicity.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/concurrence.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/numeric_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/string_conversions.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ext/type_traits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/functional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/initializer_list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iosfwd \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/iterator \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/limits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/list \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/memory \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/new \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/numeric \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/optional \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/execution_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_algorithm_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_memory_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/pstl/glue_numeric_defs.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/ratio \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdexcept \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/stdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/streambuf \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/string_view \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/system_error \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/bessel_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/beta_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/ell_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/exp_integral.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/gamma.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/hypergeometric.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/legendre_function.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/modified_bessel_func.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_hermite.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/poly_laguerre.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/riemann_zeta.tcc \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tr1/special_function_util.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/tuple \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/type_traits \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/typeinfo \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/unordered_map \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/utility \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/variant \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/vector \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/atomic_word.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++allocator.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++config.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/c++locale.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/cpu_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/error_constants.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr-default.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/gthr.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/c++/x86_64-w64-mingw32/bits/os_defines.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/limits.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdarg.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdbool.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stddef.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/stdint.h \ + C:/dev/Qt/Tools/mingw1310_64/lib/gcc/x86_64-w64-mingw32/13.1.0/include/syslimits.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_mac.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_off_t.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_secapi.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_mingw_stat64.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/_timeval.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/assert.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_startup.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_stdio_config.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/corecrt_wstdlib.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/crtdefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/ctype.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/errno.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/locale.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/process.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_compat.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/pthread_unistd.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sdks/_mingw_ddk.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/stdio_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/string_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/sys/timeb_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sec_api/wchar_s.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/signal.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/stdio.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/string.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/swprintf.inl \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/timeb.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/sys/types.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/time.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/vadefs.h \ + C:/dev/Qt/Tools/mingw1310_64/x86_64-w64-mingw32/include/wchar.h \ + C:/dev/Qt/Tools/CMake_64/bin/cmake.exe diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp new file mode 100644 index 0000000..5e8d1cc --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/mocs_compilation.cpp @@ -0,0 +1,2 @@ +// This file is autogenerated. Changes will be overwritten. +#include "EWIEGA46WW/moc_googlefonts.cpp" diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/timestamp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/timestamp new file mode 100644 index 0000000..e69de29 diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt new file mode 100644 index 0000000..feefca0 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt @@ -0,0 +1 @@ +C:/Users/herwi/Documents/GitHub/qt/fontManager/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/googlefonts_autogen/include/../EWIEGA46WW/moc_googlefonts.cpp.json diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp new file mode 100644 index 0000000..5e16a27 Binary files /dev/null and b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/googlefonts_json_file_list.txt.timestamp differ diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json new file mode 100644 index 0000000..2748b0d --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json @@ -0,0 +1,28 @@ +[ + { + "classes": [ + { + "className": "GoogleFonts", + "interfaces": [ + [ + { + "className": "IFontProvider", + "id": "\"at.windesign.fontManager.IFontProvider/1.0\"" + } + ] + ], + "lineNumber": 15, + "object": true, + "qualifiedClassName": "GoogleFonts", + "superClasses": [ + { + "access": "public", + "name": "IFontProvider" + } + ] + } + ], + "inputFile": "googlefonts.h", + "outputRevision": 68 + } +] diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen new file mode 100644 index 0000000..2748b0d --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/plugins/googlefonts/meta_types/qt6googlefonts_debug_metatypes.json.gen @@ -0,0 +1,28 @@ +[ + { + "classes": [ + { + "className": "GoogleFonts", + "interfaces": [ + [ + { + "className": "IFontProvider", + "id": "\"at.windesign.fontManager.IFontProvider/1.0\"" + } + ] + ], + "lineNumber": 15, + "object": true, + "qualifiedClassName": "GoogleFonts", + "superClasses": [ + { + "access": "public", + "name": "IFontProvider" + } + ] + } + ], + "inputFile": "googlefonts.h", + "outputRevision": 68 + } +] diff --git a/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/qtcsettings.cmake b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/qtcsettings.cmake new file mode 100644 index 0000000..1649748 --- /dev/null +++ b/build/Desktop_Qt_6_8_0_MinGW_64_bit-Debug/qtcsettings.cmake @@ -0,0 +1,2 @@ +# This file is managed by Qt Creator, do not edit! + diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt new file mode 100644 index 0000000..46f6c2a --- /dev/null +++ b/plugins/CMakeLists.txt @@ -0,0 +1,4 @@ +# Copyright (C) 2023 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + +add_subdirectory(googlefonts) diff --git a/plugins/googlefonts/CMakeLists.txt b/plugins/googlefonts/CMakeLists.txt new file mode 100644 index 0000000..b92f658 --- /dev/null +++ b/plugins/googlefonts/CMakeLists.txt @@ -0,0 +1,40 @@ +# Copyright (C) 2023 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + +qt_add_plugin(googlefonts + CLASS_NAME GoogleFonts + googlefonts.cpp googlefonts.h +) + +find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets + OPTIONAL_COMPONENTS PrintSupport) + +set_target_properties(googlefonts PROPERTIES + LIBRARY_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}" +) + +target_include_directories(googlefonts PRIVATE + ../../app +) + +target_link_libraries(googlefonts PRIVATE + Qt6::Core + Qt6::Gui + Qt6::Widgets +) + +if(TARGET Qt6::PrintSupport) + target_link_libraries(googlefonts PRIVATE Qt6::PrintSupport) +endif() + +if(WIN32) + set(install_destination "${CMAKE_INSTALL_BINDIR}") +elseif(APPLE) + set(install_destination ".") +else() + set(install_destination "${CMAKE_INSTALL_BINDIR}") +endif() +install(TARGETS googlefonts + RUNTIME DESTINATION "${install_destination}" + LIBRARY DESTINATION "${install_destination}" +) diff --git a/plugins/googlefonts/googlefonts.cpp b/plugins/googlefonts/googlefonts.cpp new file mode 100644 index 0000000..920d7c6 --- /dev/null +++ b/plugins/googlefonts/googlefonts.cpp @@ -0,0 +1,24 @@ +// Copyright (C) 2023 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + +#include "googlefonts.h" +#include + + +GoogleFonts::GoogleFonts() +{ +} + +GoogleFonts::~GoogleFonts() +{ +} + +QString GoogleFonts::name() +{ + return tr("Google Fonts"); +} + +QString GoogleFonts::version() +{ + return tr("0.1"); +} diff --git a/plugins/googlefonts/googlefonts.h b/plugins/googlefonts/googlefonts.h new file mode 100644 index 0000000..f9e2f93 --- /dev/null +++ b/plugins/googlefonts/googlefonts.h @@ -0,0 +1,24 @@ +// Copyright (C) 2023 The Qt Company Ltd. +// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + +#ifndef GOOGLEFONTS_H +#define GOOGLEFONTS_H + + +#include "ifontprovider.h" + + +class GoogleFonts : public QObject, public IFontProvider +{ + Q_OBJECT + Q_PLUGIN_METADATA(IID "at.windesign.fontManager.IFontProvider/1.0" FILE "googlefonts.json") + Q_INTERFACES(IFontProvider) +public: + GoogleFonts(); + ~GoogleFonts() override; + + QString name() override; + QString version() override; +}; + +#endif //GOOGLEFONTS_H diff --git a/plugins/googlefonts/googlefonts.json b/plugins/googlefonts/googlefonts.json new file mode 100644 index 0000000..111d468 --- /dev/null +++ b/plugins/googlefonts/googlefonts.json @@ -0,0 +1 @@ +{ "Keys": [ "googlefonts" ] }