From 9d78170458418d19f5fee5790167aca6d053dddc Mon Sep 17 00:00:00 2001 From: tianzhendong <1203886034@qq.com> Date: Sat, 20 May 2023 21:42:10 +0800 Subject: [PATCH] add cmakelists.txt --- CMakeLists.txt | 36 + .../.cmake/api/v1/query/cache-v2 | 0 .../.cmake/api/v1/query/cmakeFiles-v1 | 0 .../.cmake/api/v1/query/codemodel-v2 | 0 .../.cmake/api/v1/query/toolchains-v1 | 0 .../reply/cache-v2-34ca524294abe687c8bb.json | 1371 +++++++++++++++++ .../cmakeFiles-v1-be5ffe8c41e6ae1aeba1.json | 936 +++++++++++ .../codemodel-v2-c60ae40ebb8fb14d6ddb.json | 78 + ...ectory-.-Release-d0094a50bb2071803777.json | 14 + .../reply/index-2023-05-20T12-54-23-0998.json | 108 ++ ...chButton-Release-697f8096cd3fb55e4438.json | 265 ++++ ..._autogen-Release-128f2d9fe7d82b30b1bb.json | 71 + ...amp_deps-Release-3e89fc70c057c55fb010.json | 58 + .../toolchains-v1-678c383feeb799deafea.json | 135 ++ cmake-build-release/CMakeCache.txt | 425 +++++ .../CMakeFiles/3.24.2/CMakeCCompiler.cmake | 72 + .../CMakeFiles/3.24.2/CMakeCXXCompiler.cmake | 83 + .../3.24.2/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 53997 bytes .../3.24.2/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 54016 bytes .../CMakeFiles/3.24.2/CMakeRCCompiler.cmake | 6 + .../CMakeFiles/3.24.2/CMakeSystem.cmake | 15 + .../3.24.2/CompilerIdC/CMakeCCompilerId.c | 838 ++++++++++ .../CMakeFiles/3.24.2/CompilerIdC/a.exe | Bin 0 -> 54072 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 826 ++++++++++ .../CMakeFiles/3.24.2/CompilerIdCXX/a.exe | Bin 0 -> 54100 bytes .../CMakeFiles/CMakeOutput.log | 472 ++++++ .../SwitchButton_autogen.dir/AutogenInfo.json | 288 ++++ .../CMakeFiles/TargetDirectories.txt | 5 + .../CMakeFiles/clean_additional.cmake | 10 + .../CMakeFiles/clion-Release-log.txt | 16 + .../CMakeFiles/clion-environment.txt | 4 + .../CMakeFiles/cmake.check_cache | 1 + cmake-build-release/CMakeFiles/rules.ninja | 72 + .../Testing/Temporary/LastTest.log | 3 + cmake-build-release/build.ninja | 203 +++ cmake-build-release/cmake_install.cmake | 49 + SwitchButton.cpp => src/SwitchButton.cpp | 0 SwitchButton.h => src/SwitchButton.h | 35 +- .../SwitchButton_global.h | 0 39 files changed, 6464 insertions(+), 31 deletions(-) create mode 100644 CMakeLists.txt create mode 100644 cmake-build-release/.cmake/api/v1/query/cache-v2 create mode 100644 cmake-build-release/.cmake/api/v1/query/cmakeFiles-v1 create mode 100644 cmake-build-release/.cmake/api/v1/query/codemodel-v2 create mode 100644 cmake-build-release/.cmake/api/v1/query/toolchains-v1 create mode 100644 cmake-build-release/.cmake/api/v1/reply/cache-v2-34ca524294abe687c8bb.json create mode 100644 cmake-build-release/.cmake/api/v1/reply/cmakeFiles-v1-be5ffe8c41e6ae1aeba1.json create mode 100644 cmake-build-release/.cmake/api/v1/reply/codemodel-v2-c60ae40ebb8fb14d6ddb.json create mode 100644 cmake-build-release/.cmake/api/v1/reply/directory-.-Release-d0094a50bb2071803777.json create mode 100644 cmake-build-release/.cmake/api/v1/reply/index-2023-05-20T12-54-23-0998.json create mode 100644 cmake-build-release/.cmake/api/v1/reply/target-SwitchButton-Release-697f8096cd3fb55e4438.json create mode 100644 cmake-build-release/.cmake/api/v1/reply/target-SwitchButton_autogen-Release-128f2d9fe7d82b30b1bb.json create mode 100644 cmake-build-release/.cmake/api/v1/reply/target-SwitchButton_autogen_timestamp_deps-Release-3e89fc70c057c55fb010.json create mode 100644 cmake-build-release/.cmake/api/v1/reply/toolchains-v1-678c383feeb799deafea.json create mode 100644 cmake-build-release/CMakeCache.txt create mode 100644 cmake-build-release/CMakeFiles/3.24.2/CMakeCCompiler.cmake create mode 100644 cmake-build-release/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake create mode 100644 cmake-build-release/CMakeFiles/3.24.2/CMakeDetermineCompilerABI_C.bin create mode 100644 cmake-build-release/CMakeFiles/3.24.2/CMakeDetermineCompilerABI_CXX.bin create mode 100644 cmake-build-release/CMakeFiles/3.24.2/CMakeRCCompiler.cmake create mode 100644 cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake create mode 100644 cmake-build-release/CMakeFiles/3.24.2/CompilerIdC/CMakeCCompilerId.c create mode 100644 cmake-build-release/CMakeFiles/3.24.2/CompilerIdC/a.exe create mode 100644 cmake-build-release/CMakeFiles/3.24.2/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100644 cmake-build-release/CMakeFiles/3.24.2/CompilerIdCXX/a.exe create mode 100644 cmake-build-release/CMakeFiles/CMakeOutput.log create mode 100644 cmake-build-release/CMakeFiles/SwitchButton_autogen.dir/AutogenInfo.json create mode 100644 cmake-build-release/CMakeFiles/TargetDirectories.txt create mode 100644 cmake-build-release/CMakeFiles/clean_additional.cmake create mode 100644 cmake-build-release/CMakeFiles/clion-Release-log.txt create mode 100644 cmake-build-release/CMakeFiles/clion-environment.txt create mode 100644 cmake-build-release/CMakeFiles/cmake.check_cache create mode 100644 cmake-build-release/CMakeFiles/rules.ninja create mode 100644 cmake-build-release/Testing/Temporary/LastTest.log create mode 100644 cmake-build-release/build.ninja create mode 100644 cmake-build-release/cmake_install.cmake rename SwitchButton.cpp => src/SwitchButton.cpp (100%) rename SwitchButton.h => src/SwitchButton.h (66%) rename SwitchButton_global.h => src/SwitchButton_global.h (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..b6c18df --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,36 @@ +cmake_minimum_required(VERSION 3.24) + +PROJECT(SwitchButton) + +set(CMAKE_INCLUDE_CURRENT_DIR ON) + +set(CMAKE_AUTOUIC ON) +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTORCC ON) + +set(CMAKE_CXX_STANDARD 17) + +# 添加用到的qt库 +find_package(Qt5 COMPONENTS + Core + Gui + Widgets + PrintSupport + REQUIRED) + +aux_source_directory(${PROJECT_SOURCE_DIR}/src/ SRC_FILES) + +include_directories(${PROJECT_SOURCE_DIR}/src) + +add_library(${PROJECT_NAME} SHARED + ${SRC_FILES}) + +#target_include_directories(${PROJECT_NAME} +# ${PROJECT_SOURCE_DIR}/src) + +target_link_libraries(${PROJECT_NAME} + Qt5::Core + Qt5::Gui + Qt5::Widgets + Qt5::PrintSupport + ) diff --git a/cmake-build-release/.cmake/api/v1/query/cache-v2 b/cmake-build-release/.cmake/api/v1/query/cache-v2 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-release/.cmake/api/v1/query/cmakeFiles-v1 b/cmake-build-release/.cmake/api/v1/query/cmakeFiles-v1 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-release/.cmake/api/v1/query/codemodel-v2 b/cmake-build-release/.cmake/api/v1/query/codemodel-v2 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-release/.cmake/api/v1/query/toolchains-v1 b/cmake-build-release/.cmake/api/v1/query/toolchains-v1 new file mode 100644 index 0000000..e69de29 diff --git a/cmake-build-release/.cmake/api/v1/reply/cache-v2-34ca524294abe687c8bb.json b/cmake-build-release/.cmake/api/v1/reply/cache-v2-34ca524294abe687c8bb.json new file mode 100644 index 0000000..8006f89 --- /dev/null +++ b/cmake-build-release/.cmake/api/v1/reply/cache-v2-34ca524294abe687c8bb.json @@ -0,0 +1,1371 @@ +{ + "entries" : + [ + { + "name" : "CMAKE_ADDR2LINE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/addr2line.exe" + }, + { + "name" : "CMAKE_AR", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ar.exe" + }, + { + "name" : "CMAKE_BUILD_TYPE", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel ..." + } + ], + "type" : "STRING", + "value" : "Release" + }, + { + "name" : "CMAKE_CACHEFILE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "This is the directory where this CMakeCache.txt was created" + } + ], + "type" : "INTERNAL", + "value" : "d:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release" + }, + { + "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" : "24" + }, + { + "name" : "CMAKE_CACHE_PATCH_VERSION", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Patch version of cmake used to create the current loaded cache" + } + ], + "type" : "INTERNAL", + "value" : "2" + }, + { + "name" : "CMAKE_COLOR_DIAGNOSTICS", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Enable colored diagnostics throughout." + } + ], + "type" : "BOOL", + "value" : "ON" + }, + { + "name" : "CMAKE_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/bin/cmake.exe" + }, + { + "name" : "CMAKE_CPACK_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to cpack program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/bin/cpack.exe" + }, + { + "name" : "CMAKE_CTEST_COMMAND", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to ctest program executable." + } + ], + "type" : "INTERNAL", + "value" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/bin/ctest.exe" + }, + { + "name" : "CMAKE_CXX_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "CXX compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/c++.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:/DevelopEnv/Qt/Tools/mingw810_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:/DevelopEnv/Qt/Tools/mingw810_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" : "" + }, + { + "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_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_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" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "C compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc.exe" + }, + { + "name" : "CMAKE_C_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:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc-ar.exe" + }, + { + "name" : "CMAKE_C_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:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc-ranlib.exe" + }, + { + "name" : "CMAKE_C_FLAGS", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during all build types." + } + ], + "type" : "STRING", + "value" : "" + }, + { + "name" : "CMAKE_C_FLAGS_DEBUG", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during DEBUG builds." + } + ], + "type" : "STRING", + "value" : "-g" + }, + { + "name" : "CMAKE_C_FLAGS_MINSIZEREL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during MINSIZEREL builds." + } + ], + "type" : "STRING", + "value" : "-Os -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELEASE", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELEASE builds." + } + ], + "type" : "STRING", + "value" : "-O3 -DNDEBUG" + }, + { + "name" : "CMAKE_C_FLAGS_RELWITHDEBINFO", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Flags used by the C compiler during RELWITHDEBINFO builds." + } + ], + "type" : "STRING", + "value" : "-O2 -g -DNDEBUG" + }, + { + "name" : "CMAKE_C_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_DLLTOOL", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/dlltool.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_EXTRA_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of external makefile project generator." + } + ], + "type" : "INTERNAL", + "value" : "" + }, + { + "name" : "CMAKE_FIND_PACKAGE_REDIRECTS_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake." + } + ], + "type" : "STATIC", + "value" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/pkgRedirects" + }, + { + "name" : "CMAKE_GENERATOR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Name of generator." + } + ], + "type" : "INTERNAL", + "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_HOME_DIRECTORY", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Source directory with the top level CMakeLists.txt file for this project" + } + ], + "type" : "INTERNAL", + "value" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton" + }, + { + "name" : "CMAKE_INSTALL_PREFIX", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Install path prefix, prepended onto install directories." + } + ], + "type" : "PATH", + "value" : "C:/Program Files (x86)/SwitchButton" + }, + { + "name" : "CMAKE_LINKER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ld.exe" + }, + { + "name" : "CMAKE_MAKE_PROGRAM", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "make program" + } + ], + "type" : "FILEPATH", + "value" : "C:/DevelopEnv/CLion 2022.3/bin/ninja/win/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:/DevelopEnv/Qt/Tools/mingw810_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:/DevelopEnv/Qt/Tools/mingw810_64/bin/objcopy.exe" + }, + { + "name" : "CMAKE_OBJDUMP", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/objdump.exe" + }, + { + "name" : "CMAKE_PLATFORM_INFO_INITIALIZED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Platform information initialized" + } + ], + "type" : "INTERNAL", + "value" : "1" + }, + { + "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_NAME", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "SwitchButton" + }, + { + "name" : "CMAKE_RANLIB", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "Path to a program." + } + ], + "type" : "FILEPATH", + "value" : "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ranlib.exe" + }, + { + "name" : "CMAKE_RC_COMPILER", + "properties" : + [ + { + "name" : "ADVANCED", + "value" : "1" + }, + { + "name" : "HELPSTRING", + "value" : "RC compiler" + } + ], + "type" : "FILEPATH", + "value" : "C:/DevelopEnv/Qt/Tools/mingw810_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:/DevelopEnv/Qt/Tools/mingw810_64/bin/readelf.exe" + }, + { + "name" : "CMAKE_ROOT", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Path to CMake installation." + } + ], + "type" : "INTERNAL", + "value" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24" + }, + { + "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:/DevelopEnv/Qt/Tools/mingw810_64/bin/strip.exe" + }, + { + "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" : "Qt5Core_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5Core." + } + ], + "type" : "PATH", + "value" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core" + }, + { + "name" : "Qt5Gui_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5Gui." + } + ], + "type" : "PATH", + "value" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui" + }, + { + "name" : "Qt5PrintSupport_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5PrintSupport." + } + ], + "type" : "PATH", + "value" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport" + }, + { + "name" : "Qt5Widgets_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5Widgets." + } + ], + "type" : "PATH", + "value" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets" + }, + { + "name" : "Qt5_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "The directory containing a CMake configuration file for Qt5." + } + ], + "type" : "PATH", + "value" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5" + }, + { + "name" : "SwitchButton_BINARY_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release" + }, + { + "name" : "SwitchButton_IS_TOP_LEVEL", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "ON" + }, + { + "name" : "SwitchButton_SOURCE_DIR", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "Value Computed by CMake" + } + ], + "type" : "STATIC", + "value" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton" + }, + { + "name" : "_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED", + "properties" : + [ + { + "name" : "HELPSTRING", + "value" : "linker supports push/pop state" + } + ], + "type" : "INTERNAL", + "value" : "TRUE" + } + ], + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } +} diff --git a/cmake-build-release/.cmake/api/v1/reply/cmakeFiles-v1-be5ffe8c41e6ae1aeba1.json b/cmake-build-release/.cmake/api/v1/reply/cmakeFiles-v1-be5ffe8c41e6ae1aeba1.json new file mode 100644 index 0000000..de6fd04 --- /dev/null +++ b/cmake-build-release/.cmake/api/v1/reply/cmakeFiles-v1-be5ffe8c41e6ae1aeba1.json @@ -0,0 +1,936 @@ +{ + "inputs" : + [ + { + "path" : "CMakeLists.txt" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystem.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/HP-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/LCC-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XL-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/3.24.2/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-Determine-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeGenericSystem.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/WindowsPaths.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-C.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeRCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/3.24.2/CMakeRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeRCInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-windres.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestRCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompilerABI.c" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/3.24.2/CMakeCCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-C-ABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-CXX.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in" + }, + { + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-CXX-ABI.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5ConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5Config.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5ModuleLocation.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseArguments.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake" + }, + { + "isCMake" : true, + "isExternal" : true, + "path" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseArguments.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfigVersion.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfig.cmake" + }, + { + "isExternal" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupport_QWindowsPrinterSupportPlugin.cmake" + } + ], + "kind" : "cmakeFiles", + "paths" : + { + "build" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release", + "source" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton" + }, + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/cmake-build-release/.cmake/api/v1/reply/codemodel-v2-c60ae40ebb8fb14d6ddb.json b/cmake-build-release/.cmake/api/v1/reply/codemodel-v2-c60ae40ebb8fb14d6ddb.json new file mode 100644 index 0000000..5898922 --- /dev/null +++ b/cmake-build-release/.cmake/api/v1/reply/codemodel-v2-c60ae40ebb8fb14d6ddb.json @@ -0,0 +1,78 @@ +{ + "configurations" : + [ + { + "directories" : + [ + { + "build" : ".", + "jsonFile" : "directory-.-Release-d0094a50bb2071803777.json", + "minimumCMakeVersion" : + { + "string" : "3.24" + }, + "projectIndex" : 0, + "source" : ".", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "name" : "Release", + "projects" : + [ + { + "directoryIndexes" : + [ + 0 + ], + "name" : "SwitchButton", + "targetIndexes" : + [ + 0, + 1, + 2 + ] + } + ], + "targets" : + [ + { + "directoryIndex" : 0, + "id" : "SwitchButton::@6890427a1f51a3e7e1df", + "jsonFile" : "target-SwitchButton-Release-697f8096cd3fb55e4438.json", + "name" : "SwitchButton", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "SwitchButton_autogen::@6890427a1f51a3e7e1df", + "jsonFile" : "target-SwitchButton_autogen-Release-128f2d9fe7d82b30b1bb.json", + "name" : "SwitchButton_autogen", + "projectIndex" : 0 + }, + { + "directoryIndex" : 0, + "id" : "SwitchButton_autogen_timestamp_deps::@6890427a1f51a3e7e1df", + "jsonFile" : "target-SwitchButton_autogen_timestamp_deps-Release-3e89fc70c057c55fb010.json", + "name" : "SwitchButton_autogen_timestamp_deps", + "projectIndex" : 0 + } + ] + } + ], + "kind" : "codemodel", + "paths" : + { + "build" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release", + "source" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton" + }, + "version" : + { + "major" : 2, + "minor" : 4 + } +} diff --git a/cmake-build-release/.cmake/api/v1/reply/directory-.-Release-d0094a50bb2071803777.json b/cmake-build-release/.cmake/api/v1/reply/directory-.-Release-d0094a50bb2071803777.json new file mode 100644 index 0000000..3a67af9 --- /dev/null +++ b/cmake-build-release/.cmake/api/v1/reply/directory-.-Release-d0094a50bb2071803777.json @@ -0,0 +1,14 @@ +{ + "backtraceGraph" : + { + "commands" : [], + "files" : [], + "nodes" : [] + }, + "installers" : [], + "paths" : + { + "build" : ".", + "source" : "." + } +} diff --git a/cmake-build-release/.cmake/api/v1/reply/index-2023-05-20T12-54-23-0998.json b/cmake-build-release/.cmake/api/v1/reply/index-2023-05-20T12-54-23-0998.json new file mode 100644 index 0000000..a31fb22 --- /dev/null +++ b/cmake-build-release/.cmake/api/v1/reply/index-2023-05-20T12-54-23-0998.json @@ -0,0 +1,108 @@ +{ + "cmake" : + { + "generator" : + { + "multiConfig" : false, + "name" : "Ninja" + }, + "paths" : + { + "cmake" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/bin/cmake.exe", + "cpack" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/bin/cpack.exe", + "ctest" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/bin/ctest.exe", + "root" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24" + }, + "version" : + { + "isDirty" : false, + "major" : 3, + "minor" : 24, + "patch" : 2, + "string" : "3.24.2", + "suffix" : "" + } + }, + "objects" : + [ + { + "jsonFile" : "codemodel-v2-c60ae40ebb8fb14d6ddb.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 4 + } + }, + { + "jsonFile" : "cache-v2-34ca524294abe687c8bb.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + { + "jsonFile" : "cmakeFiles-v1-be5ffe8c41e6ae1aeba1.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + { + "jsonFile" : "toolchains-v1-678c383feeb799deafea.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + ], + "reply" : + { + "cache-v2" : + { + "jsonFile" : "cache-v2-34ca524294abe687c8bb.json", + "kind" : "cache", + "version" : + { + "major" : 2, + "minor" : 0 + } + }, + "cmakeFiles-v1" : + { + "jsonFile" : "cmakeFiles-v1-be5ffe8c41e6ae1aeba1.json", + "kind" : "cmakeFiles", + "version" : + { + "major" : 1, + "minor" : 0 + } + }, + "codemodel-v2" : + { + "jsonFile" : "codemodel-v2-c60ae40ebb8fb14d6ddb.json", + "kind" : "codemodel", + "version" : + { + "major" : 2, + "minor" : 4 + } + }, + "toolchains-v1" : + { + "jsonFile" : "toolchains-v1-678c383feeb799deafea.json", + "kind" : "toolchains", + "version" : + { + "major" : 1, + "minor" : 0 + } + } + } +} diff --git a/cmake-build-release/.cmake/api/v1/reply/target-SwitchButton-Release-697f8096cd3fb55e4438.json b/cmake-build-release/.cmake/api/v1/reply/target-SwitchButton-Release-697f8096cd3fb55e4438.json new file mode 100644 index 0000000..2d0d442 --- /dev/null +++ b/cmake-build-release/.cmake/api/v1/reply/target-SwitchButton-Release-697f8096cd3fb55e4438.json @@ -0,0 +1,265 @@ +{ + "artifacts" : + [ + { + "path" : "libSwitchButton.dll" + }, + { + "path" : "libSwitchButton.dll.a" + }, + { + "path" : "libSwitchButton.pdb" + } + ], + "backtrace" : 1, + "backtraceGraph" : + { + "commands" : + [ + "add_library", + "target_link_libraries", + "include_directories" + ], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + }, + { + "command" : 0, + "file" : 0, + "line" : 29, + "parent" : 0 + }, + { + "command" : 1, + "file" : 0, + "line" : 35, + "parent" : 0 + }, + { + "command" : 2, + "file" : 0, + "line" : 27, + "parent" : 0 + } + ] + }, + "compileGroups" : + [ + { + "compileCommandFragments" : + [ + { + "fragment" : "-O3 -DNDEBUG -fdiagnostics-color=always" + }, + { + "fragment" : "-std=gnu++17" + } + ], + "defines" : + [ + { + "backtrace" : 2, + "define" : "QT_CORE_LIB" + }, + { + "backtrace" : 2, + "define" : "QT_GUI_LIB" + }, + { + "backtrace" : 2, + "define" : "QT_NO_DEBUG" + }, + { + "backtrace" : 2, + "define" : "QT_PRINTSUPPORT_LIB" + }, + { + "backtrace" : 2, + "define" : "QT_WIDGETS_LIB" + }, + { + "define" : "SwitchButton_EXPORTS" + } + ], + "includes" : + [ + { + "path" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release" + }, + { + "path" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton" + }, + { + "backtrace" : 0, + "path" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/SwitchButton_autogen/include" + }, + { + "backtrace" : 3, + "path" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/src" + }, + { + "backtrace" : 2, + "isSystem" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include" + }, + { + "backtrace" : 2, + "isSystem" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtCore" + }, + { + "backtrace" : 2, + "isSystem" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/./mkspecs/win32-g++" + }, + { + "backtrace" : 2, + "isSystem" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtGui" + }, + { + "backtrace" : 2, + "isSystem" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtANGLE" + }, + { + "backtrace" : 2, + "isSystem" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtWidgets" + }, + { + "backtrace" : 2, + "isSystem" : true, + "path" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtPrintSupport" + } + ], + "language" : "CXX", + "languageStandard" : + { + "backtraces" : + [ + 2 + ], + "standard" : "17" + }, + "sourceIndexes" : + [ + 0, + 1 + ] + } + ], + "dependencies" : + [ + { + "id" : "SwitchButton_autogen_timestamp_deps::@6890427a1f51a3e7e1df" + }, + { + "backtrace" : 0, + "id" : "SwitchButton_autogen::@6890427a1f51a3e7e1df" + } + ], + "id" : "SwitchButton::@6890427a1f51a3e7e1df", + "link" : + { + "commandFragments" : + [ + { + "fragment" : "", + "role" : "flags" + }, + { + "backtrace" : 2, + "fragment" : "C:\\DevelopEnv\\Qt\\5.15.2\\mingw81_64\\lib\\libQt5PrintSupport.a", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "C:\\DevelopEnv\\Qt\\5.15.2\\mingw81_64\\lib\\libQt5Widgets.a", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "C:\\DevelopEnv\\Qt\\5.15.2\\mingw81_64\\lib\\libQt5Gui.a", + "role" : "libraries" + }, + { + "backtrace" : 2, + "fragment" : "C:\\DevelopEnv\\Qt\\5.15.2\\mingw81_64\\lib\\libQt5Core.a", + "role" : "libraries" + }, + { + "fragment" : "-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32", + "role" : "libraries" + } + ], + "language" : "CXX" + }, + "name" : "SwitchButton", + "nameOnDisk" : "libSwitchButton.dll", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "Source Files", + "sourceIndexes" : + [ + 0, + 1 + ] + }, + { + "name" : "", + "sourceIndexes" : + [ + 2 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 3 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "compileGroupIndex" : 0, + "isGenerated" : true, + "path" : "cmake-build-release/SwitchButton_autogen/mocs_compilation.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 1, + "compileGroupIndex" : 0, + "path" : "src/SwitchButton.cpp", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "cmake-build-release/SwitchButton_autogen/timestamp", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "cmake-build-release/SwitchButton_autogen/timestamp.rule", + "sourceGroupIndex" : 2 + } + ], + "type" : "SHARED_LIBRARY" +} diff --git a/cmake-build-release/.cmake/api/v1/reply/target-SwitchButton_autogen-Release-128f2d9fe7d82b30b1bb.json b/cmake-build-release/.cmake/api/v1/reply/target-SwitchButton_autogen-Release-128f2d9fe7d82b30b1bb.json new file mode 100644 index 0000000..4ffc954 --- /dev/null +++ b/cmake-build-release/.cmake/api/v1/reply/target-SwitchButton_autogen-Release-128f2d9fe7d82b30b1bb.json @@ -0,0 +1,71 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "dependencies" : + [ + { + "id" : "SwitchButton_autogen_timestamp_deps::@6890427a1f51a3e7e1df" + } + ], + "id" : "SwitchButton_autogen::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "SwitchButton_autogen", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1, + 2 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/SwitchButton_autogen", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/SwitchButton_autogen.rule", + "sourceGroupIndex" : 1 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "cmake-build-release/SwitchButton_autogen/timestamp.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/cmake-build-release/.cmake/api/v1/reply/target-SwitchButton_autogen_timestamp_deps-Release-3e89fc70c057c55fb010.json b/cmake-build-release/.cmake/api/v1/reply/target-SwitchButton_autogen_timestamp_deps-Release-3e89fc70c057c55fb010.json new file mode 100644 index 0000000..0e80ce0 --- /dev/null +++ b/cmake-build-release/.cmake/api/v1/reply/target-SwitchButton_autogen_timestamp_deps-Release-3e89fc70c057c55fb010.json @@ -0,0 +1,58 @@ +{ + "backtrace" : 0, + "backtraceGraph" : + { + "commands" : [], + "files" : + [ + "CMakeLists.txt" + ], + "nodes" : + [ + { + "file" : 0 + } + ] + }, + "id" : "SwitchButton_autogen_timestamp_deps::@6890427a1f51a3e7e1df", + "isGeneratorProvided" : true, + "name" : "SwitchButton_autogen_timestamp_deps", + "paths" : + { + "build" : ".", + "source" : "." + }, + "sourceGroups" : + [ + { + "name" : "", + "sourceIndexes" : + [ + 0 + ] + }, + { + "name" : "CMake Rules", + "sourceIndexes" : + [ + 1 + ] + } + ], + "sources" : + [ + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/SwitchButton_autogen_timestamp_deps", + "sourceGroupIndex" : 0 + }, + { + "backtrace" : 0, + "isGenerated" : true, + "path" : "cmake-build-release/CMakeFiles/SwitchButton_autogen_timestamp_deps.rule", + "sourceGroupIndex" : 1 + } + ], + "type" : "UTILITY" +} diff --git a/cmake-build-release/.cmake/api/v1/reply/toolchains-v1-678c383feeb799deafea.json b/cmake-build-release/.cmake/api/v1/reply/toolchains-v1-678c383feeb799deafea.json new file mode 100644 index 0000000..af6fc0a --- /dev/null +++ b/cmake-build-release/.cmake/api/v1/reply/toolchains-v1-678c383feeb799deafea.json @@ -0,0 +1,135 @@ +{ + "kind" : "toolchains", + "toolchains" : + [ + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed", + "C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include" + ], + "linkDirectories" : + [ + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc", + "C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib" + ], + "linkFrameworkDirectories" : [], + "linkLibraries" : + [ + "mingw32", + "gcc", + "moldname", + "mingwex", + "pthread", + "advapi32", + "shell32", + "user32", + "kernel32", + "iconv", + "mingw32", + "gcc", + "moldname", + "mingwex" + ] + }, + "path" : "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc.exe", + "version" : "8.1.0" + }, + "language" : "C", + "sourceFileExtensions" : + [ + "c", + "m" + ] + }, + { + "compiler" : + { + "id" : "GNU", + "implicit" : + { + "includeDirectories" : + [ + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed", + "C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include" + ], + "linkDirectories" : + [ + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc", + "C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib" + ], + "linkFrameworkDirectories" : [], + "linkLibraries" : + [ + "stdc++", + "mingw32", + "gcc_s", + "gcc", + "moldname", + "mingwex", + "pthread", + "advapi32", + "shell32", + "user32", + "kernel32", + "iconv", + "mingw32", + "gcc_s", + "gcc", + "moldname", + "mingwex" + ] + }, + "path" : "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/c++.exe", + "version" : "8.1.0" + }, + "language" : "CXX", + "sourceFileExtensions" : + [ + "C", + "M", + "c++", + "cc", + "cpp", + "cxx", + "mm", + "mpp", + "CPP", + "ixx", + "cppm" + ] + }, + { + "compiler" : + { + "implicit" : {}, + "path" : "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/windres.exe" + }, + "language" : "RC", + "sourceFileExtensions" : + [ + "rc", + "RC" + ] + } + ], + "version" : + { + "major" : 1, + "minor" : 0 + } +} diff --git a/cmake-build-release/CMakeCache.txt b/cmake-build-release/CMakeCache.txt new file mode 100644 index 0000000..ef6db67 --- /dev/null +++ b/cmake-build-release/CMakeCache.txt @@ -0,0 +1,425 @@ +# This is the CMakeCache file. +# For build in directory: d:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release +# It was generated by CMake: C:/DevelopEnv/CLion 2022.3/bin/cmake/win/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:/DevelopEnv/Qt/Tools/mingw810_64/bin/addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ar.exe + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING=Release + +//Enable colored diagnostics throughout. +CMAKE_COLOR_DIAGNOSTICS:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/c++.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C++ applications. +CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//C compiler +CMAKE_C_COMPILER:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc-ranlib.exe + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Libraries linked by default with all C applications. +CMAKE_C_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_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=D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/pkgRedirects + +//Convert GNU import libraries to MS format (requires Visual Studio) +CMAKE_GNUtoMS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/SwitchButton + +//Path to a program. +CMAKE_LINKER:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ld.exe + +//make program +CMAKE_MAKE_PROGRAM:FILEPATH=C:/DevelopEnv/CLion 2022.3/bin/ninja/win/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:/DevelopEnv/Qt/Tools/mingw810_64/bin/nm.exe + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/objcopy.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=SwitchButton + +//Path to a program. +CMAKE_RANLIB:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ranlib.exe + +//RC compiler +CMAKE_RC_COMPILER:FILEPATH=C:/DevelopEnv/Qt/Tools/mingw810_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:/DevelopEnv/Qt/Tools/mingw810_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:/DevelopEnv/Qt/Tools/mingw810_64/bin/strip.exe + +//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 + +//The directory containing a CMake configuration file for Qt5Core. +Qt5Core_DIR:PATH=C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core + +//The directory containing a CMake configuration file for Qt5Gui. +Qt5Gui_DIR:PATH=C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui + +//The directory containing a CMake configuration file for Qt5PrintSupport. +Qt5PrintSupport_DIR:PATH=C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport + +//The directory containing a CMake configuration file for Qt5Widgets. +Qt5Widgets_DIR:PATH=C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets + +//The directory containing a CMake configuration file for Qt5. +Qt5_DIR:PATH=C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5 + +//Value Computed by CMake +SwitchButton_BINARY_DIR:STATIC=D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release + +//Value Computed by CMake +SwitchButton_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +SwitchButton_SOURCE_DIR:STATIC=D:/4_Code/FlightDataAnalysis/Libs/SwitchButton + + +######################## +# 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=d:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release +//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=24 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/DevelopEnv/CLion 2022.3/bin/cmake/win/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/DevelopEnv/CLion 2022.3/bin/cmake/win/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/DevelopEnv/CLion 2022.3/bin/cmake/win/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_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES +CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//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 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=D:/4_Code/FlightDataAnalysis/Libs/SwitchButton +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-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:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24 +//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_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//linker supports push/pop state +_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE + diff --git a/cmake-build-release/CMakeFiles/3.24.2/CMakeCCompiler.cmake b/cmake-build-release/CMakeFiles/3.24.2/CMakeCCompiler.cmake new file mode 100644 index 0000000..42ff45c --- /dev/null +++ b/cmake-build-release/CMakeFiles/3.24.2/CMakeCCompiler.cmake @@ -0,0 +1,72 @@ +set(CMAKE_C_COMPILER "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc.exe") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "8.1.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17") +set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") +set(CMAKE_C17_COMPILE_FEATURES "c_std_17") +set(CMAKE_C23_COMPILE_FEATURES "") + +set(CMAKE_C_PLATFORM_ID "MinGW") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ar.exe") +set(CMAKE_C_COMPILER_AR "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc-ar.exe") +set(CMAKE_RANLIB "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ranlib.exe") +set(CMAKE_C_COMPILER_RANLIB "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc-ranlib.exe") +set(CMAKE_LINKER "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ld.exe") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "") +set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") +set(CMAKE_C_LIBRARY_ARCHITECTURE "") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed;C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "mingw32;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc;moldname;mingwex") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc;C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib;C:/DevelopEnv/Qt/Tools/mingw810_64/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-release/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake b/cmake-build-release/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..1100a7f --- /dev/null +++ b/cmake-build-release/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake @@ -0,0 +1,83 @@ +set(CMAKE_CXX_COMPILER "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/c++.exe") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "8.1.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +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") +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 "") + +set(CMAKE_CXX_PLATFORM_ID "MinGW") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + + +set(CMAKE_AR "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ar.exe") +set(CMAKE_CXX_COMPILER_AR "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc-ar.exe") +set(CMAKE_RANLIB "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ranlib.exe") +set(CMAKE_CXX_COMPILER_RANLIB "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc-ranlib.exe") +set(CMAKE_LINKER "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/ld.exe") +set(CMAKE_MT "") +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) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang 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) + +# 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:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed;C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;mingw32;gcc_s;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc;C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib;C:/DevelopEnv/Qt/Tools/mingw810_64/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/cmake-build-release/CMakeFiles/3.24.2/CMakeDetermineCompilerABI_C.bin b/cmake-build-release/CMakeFiles/3.24.2/CMakeDetermineCompilerABI_C.bin new file mode 100644 index 0000000000000000000000000000000000000000..c369d91dfe803f40d674c08dc31e678693283733 GIT binary patch literal 53997 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 literal 0 HcmV?d00001 diff --git a/cmake-build-release/CMakeFiles/3.24.2/CMakeDetermineCompilerABI_CXX.bin b/cmake-build-release/CMakeFiles/3.24.2/CMakeDetermineCompilerABI_CXX.bin new file mode 100644 index 0000000000000000000000000000000000000000..00dbeb1737ad44e8f009ea17c7b2824fc504eefd GIT binary patch literal 54016 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

@BwCE^0HpmQrTT!= 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 & 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_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 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(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 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(_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(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#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 % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# 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 + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# 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(__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" + +#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(__STDC__) && !defined(__clang__) +# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) +# define C_VERSION "90" +# else +# define C_VERSION +# endif +#elif __STDC_VERSION__ > 201710L +# define C_VERSION "23" +#elif __STDC_VERSION__ >= 201710L +# define C_VERSION "17" +#elif __STDC_VERSION__ >= 201000L +# define C_VERSION "11" +#elif __STDC_VERSION__ >= 199901L +# define C_VERSION "99" +#else +# define C_VERSION "90" +#endif +const char* info_language_standard_default = + "INFO" ":" "standard_default[" C_VERSION "]"; + +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 +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + 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; +} +#endif diff --git a/cmake-build-release/CMakeFiles/3.24.2/CompilerIdC/a.exe b/cmake-build-release/CMakeFiles/3.24.2/CompilerIdC/a.exe new file mode 100644 index 0000000000000000000000000000000000000000..325df50faf2cfb46111822473a9275d7e0c5968a GIT binary patch literal 54072 zcmeHw3w&Hhb@!~Kl~=aql^x5G6Ps*|oXEkJC0llE$A(>NSH6o^kLck?;^ca@T0QV; zwb_R)2Nx7%C)sX9RbGXX78g>!Kxu2*kT?{moH((81e}o404XRT4Qm|0gb++H(f2&AD!aXs;*l~n(x%vO;{|zB~ z-c?_o#~vto^6KNZz>`Z=n7Yt zmd>t}q+5K9b=~P?Z#>f5#d;YVg&^nIwQNp7!Q0r|fV2VkY{teHA}pgqZu%$U1ww90 z+8GjbxojNR(`MuK0)T@>S&DKZdXNJVcteb}%o0)lzlE`wB%K4DI_hDpYLeV1?m*oj z+EiC{GCY_>=B}mqMSQ& zj9XJWqI9|0UUzj&;PE=5uAJv}JX``68wwh zWadPN*xs?~K0%M`dI*^g+*F^O3-rdS>s#9i1k->5aT8y%iJZ&L++)?r2apzoaR_fs{T%}~}c1TsaExD0` zg4A8Z$EhOooOj+nF)@+3`vMZRPapZZ^P`WP?FB>`DJ_9%W?zN9NiM^KNuX~>rZ+Q` z<@mlMV^rXJz^wY&07<_DNdqJHZ=t1?k@9czp!5ua3`^VZ=SlnDP>}Xkx`6KkzBl8@ z{(3R279D|zXD;pno9a<{rbe2>;v%8(CzP?7)Hu}H9%P94T{JbrBEjI*Zc+BQ}ux#jc*ZW@bq)&T>&)bGx zU*>UoPoI0So43^Ar&IIKU18WWP~SgC7DL{7C2j8mKW}Ch+BmuBHE-n}+i}RwoJW3% z|7rWVCD6xGJG9^(3E3J$FZxfsSQtn@pZ&(=(8LeW9MA8eYCZP8?IZOQwLb`qtb7dB zVX{4y%-pN8cL7xyiP@C&FS8#;+@A(t?^4ux;Z;idgfjf7Bby-j#{Wot>)j*X+c)Ar%;fN+ zAeJeAJEfjZ&B^Wnvy6QSlFA(?$!X+%d20`}hA~Kaz#bguCBi{xBI@n!>XCFfh#HD{p zKQ&Q4+|StA^#mRTjm0Q@s+brmnbM1^LFrSVboRZ-PoKyp5Fa(#Q~D<#mEqngy9xZV zU%EIkF-jeaoQB)#&&oMISg`DD!ap({e)e+kgo!&pGUj}6>^IMHvZLZ6{{bpzpW&{- z%^sC-E$C3v{|Omu(v4+Gx}zey2lYDTyGWc-)xU-x%lOKak1Mt_&Ig(EYhyOwMZiBe z1^j)J!3BYl@*sw3=YvIMI+b0MVS~Cd89W2V!zXKQ$*X|W?{XB8{e0=f8JOZi0*tgc zl#JVjDPMl#7T43=Fh}M1S}FLsZyNgPK!b3Lj4A1FLBo+<qNq=vm{2c_Qq2M#9GBU>f=@b6+v!sO$qy>~;iSkOiy|M<`StX6i z!)qgrNkhl86Xn0`Lw3gg2CxXe?oT+n{U!1|$4iRX81Lq3`(p&i*l(>MYQFP`hD7wj zMERG9#z^V1Dw6ax5)$ap@ zN51)1-u_D$A0YPY7ErM9hshr)nL-*L3(#-i=mARoEVoQ{cP>W|ft4HWm2aPrpXO5B z--GDNSDa;sD~He)qGy$=c7&Ve^2EG{P$M6C(e*N+$DO2L0?IimO%Gs+vn4e zxp~@Doa|H&3;f=-4yPg7<3_5K2X0(J7D*6DN*2K6nvea=c(wW;F zuXvqh9v37!Sb=}Hm5B-7b)bwK$WY@?{}Sc{c@DuoM#@i9x%3I7(NVG=Dnqw)R)KNt zn6rwrt^#WaJ;;?J$BU7r$FISx=Fhb8b!6$+kv@9}ZOrF`BTH9+?AeHs{w3w_G13oH zI$)$%6aHqT$wq$gW3xX{(x=g?x%xV7LeTw1ixOJ*TK5fO#vGNe5~w zCdxnA%_%w$zl7Y3x6(V(a&h>D-z6QxS@-bxzot5e?Npd{6qrXQ zl4Z^ZeGHI-y9=F1{(@)^pKOs%FMVP77d9o+ZohzXu)e|z@#lwsa-nt%4t@*+M4+5) zyr87#UKaoPxzkGFx)bm+p5tyJ0)bs9S-An0p`@EodPmtr`O9JQ;Lamaw8=#Itw^E! z-;7pEKa!mbE6Mm+dLmtz@ou@8_TF&uYz%0%ubn-O5h6W-3Cxx^x&eRV>@L8efE&42 zD}7-(X{fyt6Ju{pMfOq5OhNVwfGX+lXCFXv6g{uQv(vMKCgC&(AAWg*GV+DWA&8n; zS^zRfevq86jD(M)<}_RK-0D$pdGwV1$M7=bGP3jLfZE5Ek)k2okG%~bWqAC2_Ifl9 zrsFYG;gtQ$K&A^bs{sI%6(^MuS`=WNfSdq^ffeVK;S00g_c8pRlUd~a;AvnVdD?mS zK7@gdFFA(~qGExO{SN=|$ytHSDuu|5{K@@|D_-@Vc)74?r0XTex!Gd=<{y6Ck!dRO z94{i4>DM#Gf%Izu+u1@}+IN5UotRTKZhR^Ay^Q@@Ft2?LQbxPD_CL4~OlUr4pN||E zn>WK~iabxrw3PYNzg04d18a%lM`5#%SKYAmCp#HC^wilOq7lH4mL@lXKxT&n6V9cX z9dm&-7y3m#j%=Weh9YX>RRRZ&)OlnzREXN#PAvjt|Gz?F>_JggQ}?6Zapmj~O#<#b z4*2lvF6ZI*^N8DdWE>GpE?ls?MQvr>wL%te3WlYKjOdR8^paEb#8PjkN8)NHQG)Gpft~Mn$Tto zLG;|`MlN~#s`tl_4o;q|0MEx?>qY_V)}UD%KrH* zuuMOev7c$D9+z6K9Qj$&g(h_@BR}yVpd@_ub7&&c+Cr^%F6nsXc=x#u)R6pr?Q0lR zKZ#;W`bXF)2#hTMIr{g*E@X+l1OJMb5jj`=_^cB22Xx#==X%pUMHyvodi$$|3f%7n zW%!gsS&>cGUrcXD;tf}F4Xs*J#axEeW6F`&(yw4|fU5)ggSace-=EIHZ>tzccar*u z<+&G0K60XP@$)kU7#7nf?sy*At~-8PU%w6gmwLD`)m~w$hoq?Zd45 zrkc7+Gt*6IH({nXN;5s;q)5g-*v5r*9;SUTjHDQ=TsJEd<0Mb6z3$@nnrslZ`nYDR z&r`c_`~MNRlIH(T+Us!$PwNra&ANTPwzUYZi#CRGGKE3^oEx9lD_WE{Ya5`t(P;gZCS^@EpBx7ec zA<*dMSo&GCarWYCa5uF;$T8$I$QV97akfAQ3;UPgb1-XddOgbbu4u(KQu;+$;zarT zZ-EXoOAnJ-V)$IEWL90|pe;ubjArIc{F{<~eB$5H0p`KDk|j!}9)|c!T4ml`h9arw zKr2ke`9e^=1xvU%ii+_~V2efKKl|=68P7=Rs}!V{KFNc6OiCt@okR0$(8a{LzZ~WEow5Ht@WA?; zDJS=j+(3rFl}LRKc@yOa1o=Zm5GHj+rflPPQghBVXXbDGesTq-nHW$}-LI#9jw1Vc zk$X_YAa|I^L6tXRBcY`%doy{3k;&eyXShGW=uBHm>GB20Irl7=kA~O7@Xah< zL+h3+u>eY4nXzAJC83k^v)j;u=VtTuWA=Bi!j#GH2s_W%pXON3BOd@PV?T)$`UV;$ zQ+f<>NQ@~_W_MZk8!!qq7y4W37ZB{9Df5*5ZUl6lvfn9V6XjhuL$Xhb_RHAgfJ2H! zr|eyb5$7ECSWlPs0Sx_7p&yK9KM9w1HVNg+@h;@S{_ly}u{$=>4sg=;Xzf_{9S1As z6kxZ8X6|=v#P)LumQjM=xo?q{41cYN^3I1m3o#9|RX88=7o$omhRw1vZ{e{g^1{tPjMr(S^lz_RkARi5DCP_F>QEz9qC3 zzNzu1)GbQ-sjLqbK&5X~Lhpw7PYL#Wh`k4UugQ&kXQXII89DT5)j2rpN2`>Lze_F? z6C5S|3at-TfIi>B#fqGK(yb~asYL_mNzAusK7jqf<;31YTk%Tz8>yYBO7;;nI#_M@ zhuoVXQeedizirIpe5j=u|J)0YJnbLxvWnz8hJOl8Ec_5Oai*$!lyni;cmn$_aYrGx ze>Of9&(#I>Ig>t!KdS$?S2BiO1+IbQ9B+DzBa(bj#s(qDStYb}Gv;94vSJMZ^G_jv z808K5TS@)`QL4d@CjbH4iToCw=HL>ffnQ&CrYrnlUSjEO=L9lK%c*{zJ8o#a$&>ziYF7Z}^iP=3 z!X5(tP(AedY-W@%{hm(VfM+V`8vzH5(@n;Coo<}o6X+W^!XBP(OrMFDcndv_z{W@7 z5a*tPxVPGF#_@;^@&5lr9DKRZ`fxIO zV~etdo`2HTMn!zFa>rSo8ZKeVDjwsx2Y#ZgIH3TzYqx22J~}$FeE%+*8&53nmf;Q= zHpp;ZWY{3XYh<{Hhg$n` zf1Unj7Q+(5%w=SuUpetY5q4Uj7mO;j9{XG)WBUAq29CSzA0rS~8uE8nKwX(B(i6+S zwu9=U@tatFCr?99GVGS&4jDGcaJ>w#k>Mg47R&H8Oar-|WcXbfJ}$!tW%yYceoTgU z%5c97yJfgTh7B@YFT-nisL8Lb(!G_tFu~+IPP73Ai^kqj0GndH^vJC$dmp@o=QzBG zn89OM`A|7cTTf(XBZszXtHgHIdnuXzKE_ZyrOAF3T{T+!^3vL7zDDFpxm&KK|9=ntO%2VPLIeG=zDPKJ^R}iA%(QbaQ@*-C98dHO zL~pJU*M@2tsnsGiw=iBJ76~T12jcxVH}*xh?UcY^Jk)!$j3<)8Xjd@arFMn8gQ-aJ z=GyCJ4&H+aM~O>9&uebVlgg0LopSTU-k1oD91$y9JULv)J1X)WGQ241xkoQiP7?6M zds6-3Xwua+&>zG*PT_cbAnvO2HaB|wO)Hq5o#>19q$0t1U-F=c+SlEOcdJ5SS5-@(xvh;; zY9B~WiPf%SG1lIT*RjG0XxxQYwUPq^u0($@5_ug(R%~)DPte<4%M(@0dse!Z_pETas^a0~{$OMa5^ym0JUcP*=Em&B5N{b5&kurHE|hc^k&Ol!T2imup8~JedkcZcK&a2YF%04%2fj?{ak>OokJ#VA2)TsmNwC%C*D? zlAxuPJkXcyb%pSfnyY4T`5*(HR`*yUoa!2Y@*)GFAn~Rb-I4>Lfrv|X3$U!#{ONS% zI{T7n$J@iX_?leW`&e3fsK%{Dc{rMvuF3PiqrN=+y!3dU|E9Nza<6+oU{0UROFx&F zcJDXi4<0n9V|i(o*RRU*(iM5>n!NPh8Z-TxJpL`q%=zpJb9!9%Zziv@yz=gt8UI2a z{;PTE^LgoQ_4S)vRf8MWtLy7l#Rd|6gD}$cWNabg#}Gb^y9#l7 zC$j*vDh2T}ge!3OB3^@VGwvATZiF7(NyJ+a7A#_Hknj=ua33Z(!Uu8RgZLQ2AL0Hu z;^PQ^g8N>?&m;U5?xTpa%NhGF?)wM_;js!Mdo}8fIE8^_&=2A*2(Pci`<;lp5q=)`Uc`?fT)iB+Lc9jy8QepNQ~3F7 z7`vNr5Pl2yD8UiFfcqnepGR1CEp&yr8{w0K({>qi)Xdsj9J99+ zjTM|JkvK85FO_)!eg6sEWY-kt=f4QpMVU{b&V%^T?I^T6T8j#8Ejf9`g{*jML5*#% z#L;kP7qi)|#WnW5MX|z`f-&1{yM6Z4#f6161$(D0Pcna6(ppr)7TsOU$_DLhPHzz_ zeqjVtoHV^4hcIHmB zsMWzM(|cqXk>Q{W@08)kWO%;}zaqoOW%!H? ze<;JO3}2Pu8!{}0e(5TcVTBBr$?!TE*2(alGE`*PD#JZ8?3SUR%Ge*u>ixeB!qPjTWp2-yV%kkXnSuw z9P9#+brLiXOeB4@2*o^&(rrnsAX71aw0pqA&T+`WL^9mpjD#0&c?ju-WU|?S=rXfRF@q>*09p%WyUPtsmAHBCy zZ*L1HJEFbVONfNKe1oBIj8Y_vcefM@>Ym+aqc1?9x1hQc64qpG=cYk7k zD4x_f64yVxt7g7?QlZPr1blqa6#0u~e#PYZ?2p$UHSk9b{IAsjmg%g3OXuMKN3V19 za1H-&{f8|N;L{I31-=#IkB~nk4PdKBYkyjnGp+p}k#<0^jkx~|w{7UVc*VJhEkxX5 z!?Pk+eeLyPr2Ru2ntSUo*0_yE{6ts;>((UDvAa zPV9?z;X%NvNMC19CMaB z{iZ#b^7S0pP+PM{ZpR{;yCs`c_pj$0vwJxIJvuQBA5SG#aT;sa>=E=a(So{c#i8C{ zoE6dwwgrw^k%4Frp3mT43eT;2qImv*i4$_{Mh*drQurTB#?>UVZC|+ng^LalAxd{v zs6?z_R-za4u{=UWb}C+&B8(zIlmK=I31D|L^Zz1umRW=%A)Fa#bLeSakAkuyE@;<4 zie}{njv_5qRD?%U!6YljT(v)@s%n3y8cN0S>}QY_B+5R)8PhLBXE{a?Ux8Q&)eFBi zR}%*lDxMET`VvsZ7p_^1JOPXX$_oCzk_4Wu5yt#D#0nPMIL%z>epay5cG)46wmUw+ z{}U%2;{XZ*D)U6g^^8Ls&ueg;~*`EZjml12L=udzk(0 z^GJJ?q~(*nb}lsnC8-8ic%)W^y?T%956#feJDptFK2P1twy|9Se7xAKMS0dTj z7fi6?_g;Pn(NgId-tAaku;N1;!Y!k|NLq%CFm8_qvEnTLlf`QRo^8-vWaC6<8zdIn zIE~p_kt=K!RHmT7F8T@YR(LMhi-(QqMzgM4M2aZtO$Ix$3`_K~S*y$GU2MDKYxqCs zBl!0u?z!|2!0#X^71-h1*sS%=7Xh$4ev1EdsCsW8!f{1`Vx6uU8vtuG>#ToS@L3>< zobYW1{A*>;06q^3AUL6cm>P`quvtaiE|wPm(2fTc(E(MjfZ0@p2Bwb z4XU*&J;7uJxv)9`E6jy$5U?U=WB{yWDLYTGVrMEEABbRitWqwU<=oHxsYp4T5$qRm z=}K5(4dinC7A^gAM9Nsz~UA8MITf+An8UG+M=4-X094xte4zjr= z|53KDn6U-qI7)u#JOtgc1*DRaA1x(i6fKAjV5^}g%1XvdNb?R>Scw7#Eg&aYUCH+y zUm!Xu@jP0kr>LytxhshVTOd-;+rI*oBIY2D6y+|dkQGwN%P^kMzRExxT_llAu)A#~ zFFF2W4vEv%#Y%osDrAd&T^1Lf-t_E68C=-kKPU?^8!vU3gG4c#t#k>P-OWL= zV4;AGE*$LdmnH3@q$rVv-zyx?#2G+$E(###gB%)j2oMDe^8X?BUxnP!U=r z#7fEp{9?I;$HH+n9DxCp*_LqIvXv+B{s5eZUSxqNQe@=lg%;SBQXz+}JW{KMf}!59 zwE2ai%v@xwF=dpCj51p}IgxNO)T?%4uVx=BStN26f=wTpYA_leNF}(hA+&IUm0T`R zDs1JQcpn8tsgtmh#R9ysgh*^vcXmkj@Sn+dAk5?wv~e=0V)N+EdVh43tnfD)ka{`?qWE0I?T#3T%Ip=0&1&oo9gwo`0(OVQ~hp? zrADbXpE?Crff=ipL1d0-koC+T78;t=ZqSP4%>b#2f>srL{TGysg8hcC=A8YU^Wjjci|w z-;!NwWK&fGJ`c*wGk`4}ZHn5+)x?|znCJ)4TF7N(2H4x&u~h@lH^3Tpa|>HwKs97Q zFEgMm9TB<4ZE9oX2DqWQqg8!(2ihs%Z}hjbMMf4h z-M-V)3Rzoy4L&q7X=bah$=BeohdHv#4b(t=i?o0W1K8?=K#k2_f5UFJ*Z`BV{7v;< zUp>3Rfcl%-ecODks<#0pe7phL*p)_pb4$DG+1A097$DD%X1|y8t~NBcsvfVml`S=L z+wgv&>PNfdU*p;})DrA%Q)F*oR~b2iEYQ{F7ML#4uIKjPGH_(Gw6(WFCuoJMjV$yC zPXI4K`l#+Z(4jdFbl9wFR@BCp8Th1*HjmQ4-fo7~2im=?(hS?$&XyYxA!vgq019vm zT+*$Les)a`iuc_eZS87D6U;lnt~D~6;cEO1YJGFl4m3tv6RR@vNFv40o1wvv%B?VG zwdG`8XU=M9X!ZG8*gFiUZ&$mzp=Rxd>xmV7L{obkTWMr(gEh4Z&(@~4ktWd50&JCm zLBNhCO{0Nkm=sLG-w6Awo(ik2y%|=kp{+KfwRq~cqitjhQr&gT8Z&15?iOFb*9O6e zUK^`5XOk>7>ek(A%dX~Dw#LXLQ*MRO@UvtAZEAb7x&zj}b{dq1*5*czR5vLSwUe*4 z4PCm8turu$GdG!PLkn+IUn>;7-oT_bg$$^Onu~G$q!@x52y8I2d3S1QQ#u;9vW*5< z*kIk(-EgktCj7ggs7*#b@!jTWSA4DP1_LTe)vnpl(CAU?6}(E^#y00>?^?5N{Z!4q zWg0|t%fHiv33hr*zsr5qr0hqfHTL z5+Vls?KzoJ#v8eBU;%56;un*SMk7mBh}6fL46rcjK(ic%+gP)aN9MGvUfH&lwU~jZ zQ4PD%fKfe!y^|kftwxTpJ=qs92vK&Mku7H`P^j0>$57~^*ou7^G7t{jMfNV{hdjNt zZKtP2P6s)Fi;Y*mNNf*S%IUP20CUj{u~!x>BB^E%g1WwF!$OFa+)%KH2wbjq;q?d= z5C7F9p2e$p@jk2y{QmAR-m_pOy9-MH1~lxB1Ngrv9_~>?*xAvi(bw6F@5h_2&ZcHz zWz30r3suugL4mWLf2l{*L9-1r zI!xt_oXee!jZ)AGO%}b_;v9i=;1yCT9dM-tpkoMbOHloGgT>OEe7(@yoQK4ZW!lIn@b$NO3lzEB$@jBI7^j#u*k+G}B-&PSDo!G1^ei_dT zo#^=Wm?mIo6H^KaCH>`&t8c6;+019#dSkSfmI~rl122#MY9V>^Xc37(cl!ySp zcrD;M?1dV@re;``2PSQR>M@I1gXNV0Y4Rza0OrLdIj}aY*LH7h^?SGZu!u5n6;Inv zALeFra$sAVoA5SD04pT}ugxF8RE5i4ngib66oBm;Xxp0_Vg5$CZToJjGrE8Urh0bl zT35S<&CkiI_cWnL@)8Sj!2Wt4!C)$WC>4t%gP4}p=4*v~SQ+JHVZs)`qR4=3^U<)d zC&(iP^=;cw0#3sIXM`O-Ud%&Z4DMV25_qvylb(p$pfvyx+V{_7K@oY zP#qR9IiPk<>#BUv8s^FY-9!_|S}ahEg0xG$EN6saCAN|!m*d9)hWBPA1-T&Zwc~N@ zvGb>vYA0Tz!>`*8vXYXLa=z)$H#qvD_@y152UxIX3oHlu=mGqiKe`d(JO}7 zi|S-^F4`6m4&b54?E+L#z(GayW}He-;^tmgwg3;@9Q%NH7w$58(#2=$0Y6;7%I2<~ ze+Y0uy)=K=ITvvCe3?M@(2 zq_{2z{;tLJt>0PY>{*e?`G&}w&>A!qPvUpaiRxZbRU+AivLY^CtQB!NsS*jiM~sK^h{F@o^Kk*CXWa0k z0!&W{SMf)Z!Dy0b<3TPp3}Sc`O|exVK^aI2Y1beDOYiB7tfF^pC=W?3FT}8y|Hte9 zX${c3T=dNabjU&1+*yvJFi5&qia>uKOnV>DGq3Ce1)g~oLxs_KWn-Rsjz=WoAA>(g z4ZI0=mFxdj>puR!=lwc*snFBrT2sBY<_}Vxe{e!qcjFg8kh&4~8xt4`Y#5uugJHZu zX}WHdDI0UKLg^z+2uR$9y9_tS;hBf<--QtcBN0l`8^cCX3}pQJ4F1!LN7Lba9XRew z;QRtOWtYIA4@A=FHyy8P!np*U0C1=_G(Hk7#&!ZSb_vS;z&Qr=>A2H7l{L5x9ex(6 z^V3kqdyFxXfHW`U;qOEuMblCp5<-HxbO@!s2Fi39wKxsPv1xb__K$%xgxiqt*GRQo zqSO^=?!A}5aRUb^Ir6+4kn@+&*loaZUxM-{fKxUN4*f(6pDbZ`Q6YyrefW21no^{V zZviKE37i*!bMz88uLEcF5;$eh#4+HI=7ElD86XdE2+3U?QNz)$1MCSMLO3gdGp?5c z4z?)bNqW-}&8C;auYPq1UfScoBctAA@VWtX&Hx9&lzllUc};~=El;^3xrlqAZ3TF2 zr=))ACtLwSwJfxOY2H;WPnjYxw_aOi9tIAlk|$PC2AF^jbrbFTECdCPJpGE|#HG;I zj{o>fMc#D~6{7x5cfKFfP=|rzng&Pnw0nRfJ?+6BTIH;Q$L++9Y*hH%5zrxj$Td$& zn&kR4aL6Bu*3q;oN|A*4U0^c?qFaBTtKITCD*oRQ|5&5cNtb(W2FK5^ZR87dTY+e?o~_R7}6D zb+1AmNpD;R@cRJXVq>OKc2rTfD5kZSkca4e8zm=iFE?_yJb5z*fSI+uNR#GEYm37Gi?*VpCN#Se$4rl(rk?E zaLP87`Z)@mOX=r+;7q9>X{)D!BkJChP!p+G3_o+qsXn`k2%x#A@=?fT>wz;E<03;zq>{$o+tfA&+}My)A^y)E3X8#qh`@ z=Xxt`u@~h;Ti^pVd6(wL?gL!3g)0vOZ7OZ`0pvhX$TP{9E61-f%I7#`_)nTLF3ncY z03_N=jfM~KQ(HqCmS%_JXaX|R>3rP~@-JnFl)o9RjWc@1=gJUHkR_LFNn$YNhb zrG-4MN#!9NnirSBwToF3L4E+pQK&*_gDlGEb|kf`4tA+Qe6OV*Y!i~Wxh1qI0>+@jj6}DCx8P%p`S|p&l}^o9}9RD8{uq5>yyQw!qL(+PMs zOos!Ls=Vo@n}`N!Ma=LK$+@)iWeGGTjOE9?dK~{vHJ8Tmko8STN9t#>uAhGV?l8Y6Lw7Jzp&u8X zbCYD&YayAGR(GDg43P6&t0=`V73JS2r3Ihp?^ez40quDv(lgUM)z^G!z4AGLMX#hD zXTCI#eIDQ`d!_76Zb&M66UAs&WL%oZu0oEmIyAf59jmP|G>asC*EPxToO7xXRzuNo zj4_UvB3mUH%-37d7|r>ov{h}jj#>zfkxtB)rm=;<5gMChJ|=DKdR-g*K_Xt6i{M99 z30)-{!K7>&Z4hTaa9kRWt_@L&v_a2K%-77cF-c9OHi~p@Ok!hl#CPf1puR`?H7?CI zcIes=U$Mo{-tn6-T^VdQYIf00PL0%tu!HvjLch}FZOYKy==aBoDjhMhu7_G%?A6))qu8@6zP?3tb*UcsKNHTyI65Q4}LX zp3F9^@>on>x5IzX<%wY$6UtQ&7wlF@DD>l+loufllC^Lh()^IF3?S!CkiP`PjaS|b z8~aBpWr92bNDG{&f%76DqbA620AYAZ%)priTXvfum4J-v5UW;c{}oM@b7`&oX0+Ne zT`SA+Via1X;kj@!3zxHtW55xfWDuBmZ!+i7tmP5Cb-J;IpMxNy4X7zym^^?NeLITO zW4>A?4j5wQ!q&)OYsnABf z+iJn@l{gqKf%8fHw_bNj99oNrwlLGt^!&80XX6bmjha^XGkV>%93%X%tUI+SwWMg% z@53;x9*5eL=E$N=*O?njibXmk%?Ta45VN9DyHjh6cK<&X1Wi9ls7=gU#GGF)0l6=o znSQKw(!AER{Y&oC>TSU^%^yWAsBH_4Jy@-uvg*FBU@};Fy&Ii_`Uh|XWL*HBzyzuL z3UpwCtnbDMDj|~lvzjHmCGK?2q>1u6uZ8;q7Vdj2+{b6ceS?MjW()T(Sh%-ZxMyd? zz0ShD&cgjZ3wN4BN{wmz^E2XJW8qFu?j>bm33c~cxWCiF{lbj6ue5Nlv~d53g?pWa zJDr^XG_qbYXT*-;zLd>ZS-3B;aKFdG{W=SG$BejFTDUK?a6fF}zRbd%&Wd>Jb$3~~ z&$VzrWZ_<6;a)K#?n^A(i!9ue7Vfl@gM!q`(&p)GjJIC*3Jdp(FcnEz+I+;qz1YIN zYDU}_TDZSz;ofE8{syK@=DO2aAaA|yWftx)Te#CY&ZLd?uUfcom=X867Vh+xl8IMc zyM=q!!reV1?nM^v&sezAPK8OH_0L$iD>LFwWKERUJz?R#*~0yC3-^{8alc?#uN>dM zV&T5h!u@^=_gypM{;Gxh0~YR;7VaOjaNj#4?&mGszhL3M#KQef3-{g`anD+~-)rGM z*TOyWU&Q@I3-^y$xEEQt@3C-?&8Y6<7Vh_0xL<@vH}#A4UW2>bi=$6siaB)c89S7qI)y+qxK$O`k~9FWg|{83r=$#y)ng8_7zxh$u0N`V2cmjF4Y z(czHU;H5$E^<_Ec3SLw%Am^<;H60$4IfZ;5ThQku@z1)JnM6NQhvRQThjqFRr`}t> zPuC%S3aZNU3v}zjnP8~t*fjP-vfl_C7a9u_71^eSp-~Mr{RldQL#tE+2MK+4I)*rv zne44jO+S0V58Vei_?LHSJAqkUKa;E(B9E5o5 z=zUqYRc-g+`imCNf6~x~oMYFaboiyx`h_*^bVB7k-qo+ zP@Cu%)^^wW`}zO5Hmy6U$voMZBIkAO+Dd9_oa?=)Ca)>?QHEVm%u=tnr1>W-ny0U5 zn>GJ3xR@a8>kQ4ycE6x$^(}EfZQ-7@aDUOlo!;S)@<{HCKb1y5eM{U=TDV6n+@G^> zFSc-Z%!vD#g?pEU`!g2q7vQnYbuXI{clzY9sZH1Iv2cIF!kvB(V&+~kBksp7+}kbO zPg=M?XW{Oe5%&iy+-b};X`}8d7Vh+IaC6nz-N&4~NQE!-DcxF5D~uds06J0tENv2dSj z;eN=%-C^P0J0tF+7VbqB?nw*xpKG%MeSDA2i2FSj?iaN=i8lAEi&(fnXW>3LBkp%w zxW8)Q-euwbgoXRijJO}RaHsW!+1u=~aDULk{q7lYAF^g?rM%{pgIiCoSBcuyEgO;l9V{yHfK0WT&{mNK z9c>kv!%NOik7>1l6#19712c{cxP{4g59BVEzG|C{j$B0&eQx2?tRfAWwN+$}%(CwE z+tI1&uB|x!2kTY$s$Q>2cAw-*>agZlr&&pz(QLy;?+KVMOTFIGYQh1vn|#Z<=QMeA zPaDX$!}W9~i7X{G|A4M}d__b1U73m}G8wX7n5W0kf6#FDW&|n7S0YJpgn@iU8UjaD@wuTO$x+PxWj+B&nW>e(2MAq49_?)1^ZbntO=B+tM;k8$uQvc0H_>sz z1&*6)u?`S7JS6_4=9>U{8J*0~d=KI1ZK|E|E8Zv3xZepJZPo-G(oanq+u4w$D&+Y~ z;5baZ;In{~nII1VLYE=WV}RUa(%3j4h8+@iAzqQIG10k#UYax6*cw2zxu}rG2gos# zes%+*z2hNpx&Ya1;(iAp+TNGI83m-wq{B}EvI_zjmheSDmYC=~0Z5ez=lg)fJ31s7Q|U_pM&2qXzxb} zNChA@rqSveKt7^#M^Uy35W0;1-VVqRT#cwZ#*{u9VQYY6aHro)xJ;Hg1jt@fEk*!o zK`BGRzXgP>&Y<%pK-{KMU#C*0y8i?aZ8ah4Re)bwTm*L^p?1Q!c)QOfwNVP3m|hDo zWtD)?WpG~)hzk%yLN_4Vs;vN@U=-(+i+3h9$~OV$3nm@*1G2{iISh!lhc9IQ8$ir$ zaSV|2CJR3UNF5+XTl@zgB%xueKLvy?qgVbOkV+HxEAd6r%_cfkfM{>-33=85LKme3 zqzMogQigtR287z(z&QlS8B^7!zH<&1!R}W z5(*c>x0q@%50HQfvXpQjfWe&}tKAE>h7Pv^V$1=6%vu0>#)NYVAQ2tH=TWeEvRls((q-a)5|B|{W}@?5Kw3ko!!f?gV5U`J^?%gZ%(P1}z}kHx|ZCl)nU=4SLly+*pmNULOOFF~W-Pk)fxUaP9}rG01Gx;z>X#Wz^y< zAaofJ8wREafMjTF5g-?I&8zf5b$q-ghEfLQYT(3l9b&wQgrjIv)69GeaE|IY#5DlO zF|>}+?za(+UU$N|3y?aKJf8x@s5{}D07Tp6BbgZc9w0*|URgkPAxGH!emN--zd>;E znxK}zpB)s3@6h?c{o)nfc6Xut)$W0K2*mjh8mB-z7=061iPXTQu%uDsGo$mXgE*nJ zGl;WU)cjl_aWEEB`M3G|gHhmiA)SvXeP~`yaCl(THk{E$=Yrvc60dJ-2TtDOhefpt zJ%RFMn$p|}<~8`#pJ*tvl5n7m_RT1?NRqzWg{52@p{K0UsrcSi9}b=6ncIH>vk{-X88^{RhnDO^UTIEi^~5JoxNLlQSFz_a5IE?sc!gM4!4`I_HHcIg^ssEU21CAvT%P& z6>m>cOuUP#PTr9uJ^V_YRHW_;9~8!}=`trjlwex68o^0OXhZb?&OYLeO$2b}uued0 zV1kE)qAmDwv>N=QMpP@J;v6j9vE_bwV-<15w!gZA#z6QQ6Kc zM9D;hosqCVTA#vcH_;?V(CLPwseX)yy!YZ4s&O2EgF&JHtxg&8<{30;Fij@tt>K(k z&zYzc4oE;J;ByKUy+=$c3}c%(;IV&uRNR&2VC54sBv`;K#I&Mk0cW zO-L1es1v;h|M!LC(QpKZ$p)cFVUP4Kt(Z8#(|}j*5j}#6ocxGHYcjH<50j8!q$7&M zM7mg8IN1>u-l0o(`VD;%Oc|vV)WZfy$y`IEYM~`Cqv-{&H1~318mUe`QBhUH+ELp; zFp-3Jhj*o_AH->C{q69&o&;EjDJIR1ycedU#tf2XTWSO|*`bO&+f zI;4c@#uD6lOW9x&lTC2-nXA~Mr3q*-gj&OM^uZ62GWkK;1Kq?Ww2ubSe$1pOL;G2V zrWD=0%q8fXP;vMzD$*Z(&j603Pjx1EW!3%oS`y7uc%xB&!xJY>l|t3ta0C(xXo9O~=t z3mJ}ay529Q2k4RkOzTpy2As%6a}i%O$s0&BrrvNcX0krvFpMswYt6LkpjPBdP$AwF zY@|`3VoA(|WUtegR9b7t^6DB02lr26nxdU!)M=rjNz|c9Di8@zTlncs*WMS}C&o<; zS+gHYa~lX#TZ_;!_ZqQCFo`8?ziz`Zxf#hBpmz==Ox=$fNJp+2 z^W`o!rFWmK4g5I#Q}k=m9`X_CbVkhmAv6VvF%i;ixSi%PdbiUT%+f$YG0jH!@RiF^ zZo`>9mk$!K@W&VPq5_i}jaZ{&`3=GIHUi*3vBuXrVMyOcZ5&99chDrPq^Z_aOK&w)xHBTMn zJ0(JCQ#t^VJ>3LQ(~#&rIimuJsckHq=bY#p<_V@oLvWM7NJQ0W29rloJj9iVIdl3c zMjI{!(J}1{=(9FHZ01hE#DpiAqbp-N1}~O7$APO&!2uk^usg7?4?Cv08z{s#cXj|D zV(xvSc4n!lkoF*3)G%-4MK32$Al%mUeIjon$MrzwfFY^hJa48>Dt2+rJCZ_mIn&t5 zdvk8v(R5pG!*bi>%tTGlN28(sSiVcnaVEw{psgK*1m=~dX76HT%$*_QC{*mgsojwv zK5s6j%)R>($$e@+ExYr)ru4YNXf+?v>yM(3&{^JSuD0B@meG9rbkXdq&?I2O1xAlX z<)>T)(?oa5S-!}#)=g-_)E$KA)THLo%4iR~tw$TH+LDXETA(MVn}$rcs+erjajBV= iP>i8NZHBB1BX)+hF)S$!oI7XgRdBJi(9G*_?EeDpIBP)w literal 0 HcmV?d00001 diff --git a/cmake-build-release/CMakeFiles/3.24.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/cmake-build-release/CMakeFiles/3.24.2/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..486becd --- /dev/null +++ b/cmake-build-release/CMakeFiles/3.24.2/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,826 @@ +/* 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(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif 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(_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(__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 % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_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(1) +# if defined(__LCC__) +# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) +# endif +# 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(__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" + +#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]; +#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/cmake-build-release/CMakeFiles/3.24.2/CompilerIdCXX/a.exe b/cmake-build-release/CMakeFiles/3.24.2/CompilerIdCXX/a.exe new file mode 100644 index 0000000000000000000000000000000000000000..cd3ce56ec77bc9aa1a44188ad0ee4f092aa55d2a GIT binary patch literal 54100 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 literal 0 HcmV?d00001 diff --git a/cmake-build-release/CMakeFiles/CMakeOutput.log b/cmake-build-release/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..f763c25 --- /dev/null +++ b/cmake-build-release/CMakeFiles/CMakeOutput.log @@ -0,0 +1,472 @@ +The system is: Windows - 10.0.22621 - AMD64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc.exe +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.exe" + +The C compiler identification is GNU, found in "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/3.24.2/CompilerIdC/a.exe" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: C:/DevelopEnv/Qt/Tools/mingw810_64/bin/c++.exe +Build flags: +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 "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/3.24.2/CompilerIdCXX/a.exe" + +Detecting C compiler ABI info compiled with the following output: +Change Dir: D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/DevelopEnv/CLion 2022.3/bin/ninja/win/ninja.exe cmTC_2a1fd && [1/2] Building C object CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj +Using built-in specs. +COLLECT_GCC=C:\DevelopEnv\Qt\Tools\mingw810_64\bin\gcc.exe +Target: x86_64-w64-mingw32 +Configured with: ../../../src/gcc-8.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 --enable-shared --enable-static --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 --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/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/lib -L/c/mingw810/prerequisites/x86_64-zlib-static/lib -L/c/mingw810/prerequisites/x86_64-w64-mingw32-static/lib ' +Thread model: posix +gcc version 8.1.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona' + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/cc1.exe -quiet -v -iprefix C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/ -D_REENTRANT C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=core2 -march=nocona -auxbase-strip CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\Users\XFD\AppData\Local\Temp\cccYDtek.s +GNU C17 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 8.1.0 (x86_64-w64-mingw32) + compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include" +ignoring nonexistent directory "C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../include" +ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed" +ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include" +ignoring nonexistent directory "C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/mingw/include" +#include "..." search starts here: +#include <...> search starts here: + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include +End of search list. +GNU C17 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 8.1.0 (x86_64-w64-mingw32) + compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 985ce7ae6dd3a696cd146ca9896b0035 +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona' + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj C:\Users\XFD\AppData\Local\Temp\cccYDtek.s +GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30 +COMPILER_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/ +LIBRARY_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../ +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona' +[2/2] Linking C executable cmTC_2a1fd.exe +Using built-in specs. +COLLECT_GCC=C:\DevelopEnv\Qt\Tools\mingw810_64\bin\gcc.exe +COLLECT_LTO_WRAPPER=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/lto-wrapper.exe +Target: x86_64-w64-mingw32 +Configured with: ../../../src/gcc-8.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 --enable-shared --enable-static --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 --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/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/lib -L/c/mingw810/prerequisites/x86_64-zlib-static/lib -L/c/mingw810/prerequisites/x86_64-w64-mingw32-static/lib ' +Thread model: posix +gcc version 8.1.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) +COMPILER_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/ +LIBRARY_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_2a1fd.exe' '-mtune=core2' '-march=nocona' + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/collect2.exe -plugin C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/liblto_plugin-0.dll -plugin-opt=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\XFD\AppData\Local\Temp\ccTTbOVg.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -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 -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_2a1fd.exe C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0 -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../.. CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_2a1fd.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_2a1fd.exe' '-mtune=core2' '-march=nocona' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include] + add: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed] + add: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include] + end of search list found + collapse include dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include] + collapse include dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed] + collapse include dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include] + implicit include dirs: [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed;C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):C:/DevelopEnv/CLion 2022.3/bin/ninja/win/ninja.exe cmTC_2a1fd && [1/2] Building C object CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\DevelopEnv\Qt\Tools\mingw810_64\bin\gcc.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-8.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 --enable-shared --enable-static --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 --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/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/lib -L/c/mingw810/prerequisites/x86_64-zlib-static/lib -L/c/mingw810/prerequisites/x86_64-w64-mingw32-static/lib '] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.1.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/cc1.exe -quiet -v -iprefix C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/ -D_REENTRANT C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=core2 -march=nocona -auxbase-strip CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj -version -fdiagnostics-color=always -o C:\Users\XFD\AppData\Local\Temp\cccYDtek.s] + ignore line: [GNU C17 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 8.1.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 8.1.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include"] + ignore line: [ignoring nonexistent directory "C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include] + ignore line: [End of search list.] + ignore line: [GNU C17 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 8.1.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 8.1.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 985ce7ae6dd3a696cd146ca9896b0035] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj C:\Users\XFD\AppData\Local\Temp\cccYDtek.s] + ignore line: [GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30] + ignore line: [COMPILER_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj' '-c' '-mtune=core2' '-march=nocona'] + ignore line: [[2/2] Linking C executable cmTC_2a1fd.exe] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\DevelopEnv\Qt\Tools\mingw810_64\bin\gcc.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/lto-wrapper.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-8.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 --enable-shared --enable-static --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 --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/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/lib -L/c/mingw810/prerequisites/x86_64-zlib-static/lib -L/c/mingw810/prerequisites/x86_64-w64-mingw32-static/lib '] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.1.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ] + ignore line: [COMPILER_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_2a1fd.exe' '-mtune=core2' '-march=nocona'] + link line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/collect2.exe -plugin C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/liblto_plugin-0.dll -plugin-opt=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\XFD\AppData\Local\Temp\ccTTbOVg.res -plugin-opt=-pass-through=-lmingw32 -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt -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 -plugin-opt=-pass-through=-lgcc_eh -plugin-opt=-pass-through=-lmoldname -plugin-opt=-pass-through=-lmingwex -plugin-opt=-pass-through=-lmsvcrt --sysroot=C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_2a1fd.exe C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0 -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../.. CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj --out-implib libcmTC_2a1fd.dll.a --major-image-version 0 --minor-image-version 0 -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc -lgcc_eh -lmoldname -lmingwex -lmsvcrt C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] + arg [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/liblto_plugin-0.dll] ==> ignore + arg [-plugin-opt=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\XFD\AppData\Local\Temp\ccTTbOVg.res] ==> ignore + arg [-plugin-opt=-pass-through=-lmingw32] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_eh] ==> 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=-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] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_eh] ==> ignore + arg [-plugin-opt=-pass-through=-lmoldname] ==> ignore + arg [-plugin-opt=-pass-through=-lmingwex] ==> ignore + arg [-plugin-opt=-pass-through=-lmsvcrt] ==> ignore + arg [--sysroot=C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64] ==> ignore + arg [-m] ==> ignore + arg [i386pep] ==> ignore + arg [-Bdynamic] ==> search dynamic + arg [-o] ==> ignore + arg [cmTC_2a1fd.exe] ==> ignore + arg [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] + arg [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o] ==> obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../..] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../..] + arg [CMakeFiles/cmTC_2a1fd.dir/CMakeCCompilerABI.c.obj] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTC_2a1fd.dll.a] ==> ignore + arg [--major-image-version] ==> ignore + arg [0] ==> ignore + arg [--minor-image-version] ==> ignore + arg [0] ==> ignore + arg [-lmingw32] ==> lib [mingw32] + arg [-lgcc] ==> lib [gcc] + arg [-lgcc_eh] ==> lib [gcc_eh] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + 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] ==> lib [gcc] + arg [-lgcc_eh] ==> lib [gcc_eh] + arg [-lmoldname] ==> lib [moldname] + arg [-lmingwex] ==> lib [mingwex] + arg [-lmsvcrt] ==> lib [msvcrt] + arg [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] ==> obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] + remove lib [gcc_eh] + remove lib [msvcrt] + remove lib [gcc_eh] + remove lib [msvcrt] + collapse obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib/crt2.o] + collapse obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o] + collapse obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../..] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib] + implicit libs: [mingw32;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc;moldname;mingwex] + implicit objs: [C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib/crt2.o;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] + implicit dirs: [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc;C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib;C:/DevelopEnv/Qt/Tools/mingw810_64/lib] + implicit fwks: [] + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/CMakeTmp + +Run Build Command(s):C:/DevelopEnv/CLion 2022.3/bin/ninja/win/ninja.exe cmTC_e2fca && [1/2] Building CXX object CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj +Using built-in specs. +COLLECT_GCC=C:\DevelopEnv\Qt\Tools\mingw810_64\bin\c++.exe +Target: x86_64-w64-mingw32 +Configured with: ../../../src/gcc-8.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 --enable-shared --enable-static --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 --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/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/lib -L/c/mingw810/prerequisites/x86_64-zlib-static/lib -L/c/mingw810/prerequisites/x86_64-w64-mingw32-static/lib ' +Thread model: posix +gcc version 8.1.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/cc1plus.exe -quiet -v -iprefix C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/ -D_REENTRANT C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=core2 -march=nocona -auxbase-strip CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\Users\XFD\AppData\Local\Temp\ccZ0lO4D.s +GNU C++14 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 8.1.0 (x86_64-w64-mingw32) + compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++" +ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32" +ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward" +ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include" +ignoring nonexistent directory "C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../include" +ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed" +ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include" +ignoring nonexistent directory "C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/mingw/include" +#include "..." search starts here: +#include <...> search starts here: + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++ + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32 + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include +End of search list. +GNU C++14 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) version 8.1.0 (x86_64-w64-mingw32) + compiled by GNU C version 8.1.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.18-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 82f0c9785fd37a38ba7b7f8357369a82 +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\XFD\AppData\Local\Temp\ccZ0lO4D.s +GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30 +COMPILER_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/ +LIBRARY_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../ +COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona' +[2/2] Linking CXX executable cmTC_e2fca.exe +Using built-in specs. +COLLECT_GCC=C:\DevelopEnv\Qt\Tools\mingw810_64\bin\c++.exe +COLLECT_LTO_WRAPPER=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/lto-wrapper.exe +Target: x86_64-w64-mingw32 +Configured with: ../../../src/gcc-8.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 --enable-shared --enable-static --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 --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/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/lib -L/c/mingw810/prerequisites/x86_64-zlib-static/lib -L/c/mingw810/prerequisites/x86_64-w64-mingw32-static/lib ' +Thread model: posix +gcc version 8.1.0 (x86_64-posix-seh-rev0, Built by MinGW-W64 project) +COMPILER_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/ +LIBRARY_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/;C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e2fca.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' + C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/collect2.exe -plugin C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/liblto_plugin-0.dll -plugin-opt=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\XFD\AppData\Local\Temp\cc7Wiv0I.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=-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 --sysroot=C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_e2fca.exe C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0 -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../.. CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_e2fca.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e2fca.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++] + add: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32] + add: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward] + add: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include] + add: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed] + add: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include] + end of search list found + collapse include dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++] + collapse include dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32] + collapse include dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward] + collapse include dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include] + collapse include dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed] + collapse include dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include] + implicit include dirs: [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed;C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):C:/DevelopEnv/CLion 2022.3/bin/ninja/win/ninja.exe cmTC_e2fca && [1/2] Building CXX object CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\DevelopEnv\Qt\Tools\mingw810_64\bin\c++.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-8.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 --enable-shared --enable-static --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 --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/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/lib -L/c/mingw810/prerequisites/x86_64-zlib-static/lib -L/c/mingw810/prerequisites/x86_64-w64-mingw32-static/lib '] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.1.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/cc1plus.exe -quiet -v -iprefix C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/ -D_REENTRANT C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=core2 -march=nocona -auxbase-strip CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj -version -fdiagnostics-color=always -o C:\Users\XFD\AppData\Local\Temp\ccZ0lO4D.s] + ignore line: [GNU C++14 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 8.1.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 8.1.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++"] + ignore line: [ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32"] + ignore line: [ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward"] + ignore line: [ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include"] + ignore line: [ignoring nonexistent directory "C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64C:/msys64/mingw64/lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../include"] + ignore line: [ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed"] + ignore line: [ignoring duplicate directory "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include"] + ignore line: [ignoring nonexistent directory "C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/mingw/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/include] + ignore line: [End of search list.] + ignore line: [GNU C++14 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) version 8.1.0 (x86_64-w64-mingw32)] + ignore line: [ compiled by GNU C version 8.1.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 82f0c9785fd37a38ba7b7f8357369a82] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'] + ignore line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/as.exe -v -o CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\XFD\AppData\Local\Temp\ccZ0lO4D.s] + ignore line: [GNU assembler version 2.30 (x86_64-w64-mingw32) using BFD version (GNU Binutils) 2.30] + ignore line: [COMPILER_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-fdiagnostics-color=always' '-v' '-o' 'CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-shared-libgcc' '-mtune=core2' '-march=nocona'] + ignore line: [[2/2] Linking CXX executable cmTC_e2fca.exe] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=C:\DevelopEnv\Qt\Tools\mingw810_64\bin\c++.exe] + ignore line: [COLLECT_LTO_WRAPPER=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/lto-wrapper.exe] + ignore line: [Target: x86_64-w64-mingw32] + ignore line: [Configured with: ../../../src/gcc-8.1.0/configure --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --target=x86_64-w64-mingw32 --prefix=/mingw64 --with-sysroot=/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 --enable-shared --enable-static --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 --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/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpfr=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-mpc=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-isl=/c/mingw810/prerequisites/x86_64-w64-mingw32-static --with-pkgversion='x86_64-posix-seh-rev0, Built by MinGW-W64 project' --with-bugurl=https://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -fno-ident -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' CPPFLAGS=' -I/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/include -I/c/mingw810/prerequisites/x86_64-zlib-static/include -I/c/mingw810/prerequisites/x86_64-w64-mingw32-static/include' LDFLAGS='-pipe -fno-ident -L/c/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64/opt/lib -L/c/mingw810/prerequisites/x86_64-zlib-static/lib -L/c/mingw810/prerequisites/x86_64-w64-mingw32-static/lib '] + ignore line: [Thread model: posix] + ignore line: [gcc version 8.1.0 (x86_64-posix-seh-rev0 Built by MinGW-W64 project) ] + ignore line: [COMPILER_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/bin/] + ignore line: [LIBRARY_PATH=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/] + ignore line: [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_e2fca.exe' '-shared-libgcc' '-mtune=core2' '-march=nocona'] + link line: [ C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/collect2.exe -plugin C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/liblto_plugin-0.dll -plugin-opt=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\XFD\AppData\Local\Temp\cc7Wiv0I.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=-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 --sysroot=C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64 -m i386pep -Bdynamic -o cmTC_e2fca.exe C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0 -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib -LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../.. CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj --out-implib libcmTC_e2fca.dll.a --major-image-version 0 --minor-image-version 0 -lstdc++ -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt -lpthread -ladvapi32 -lshell32 -luser32 -lkernel32 -liconv -lmingw32 -lgcc_s -lgcc -lmoldname -lmingwex -lmsvcrt C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] + arg [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/collect2.exe] ==> ignore + arg [-plugin] ==> ignore + arg [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/liblto_plugin-0.dll] ==> ignore + arg [-plugin-opt=C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../libexec/gcc/x86_64-w64-mingw32/8.1.0/lto-wrapper.exe] ==> ignore + arg [-plugin-opt=-fresolution=C:\Users\XFD\AppData\Local\Temp\cc7Wiv0I.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=-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 [--sysroot=C:/mingw810/x86_64-810-posix-seh-rt_v6-rev0/mingw64] ==> ignore + arg [-m] ==> ignore + arg [i386pep] ==> ignore + arg [-Bdynamic] ==> search dynamic + arg [-o] ==> ignore + arg [cmTC_e2fca.exe] ==> ignore + arg [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] + arg [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o] ==> obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib] + arg [-LC:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../..] ==> dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../..] + arg [CMakeFiles/cmTC_e2fca.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore + arg [--out-implib] ==> ignore + arg [libcmTC_e2fca.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 [-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 [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] ==> obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] + remove lib [msvcrt] + remove lib [msvcrt] + collapse obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib/crt2.o] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib/crt2.o] + collapse obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o] + collapse obj [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib/../lib] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../lib] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../../../x86_64-w64-mingw32/lib] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib] + collapse library dir [C:/DevelopEnv/Qt/Tools/mingw810_64/bin/../lib/gcc/x86_64-w64-mingw32/8.1.0/../../..] ==> [C:/DevelopEnv/Qt/Tools/mingw810_64/lib] + implicit libs: [stdc++;mingw32;gcc_s;gcc;moldname;mingwex;pthread;advapi32;shell32;user32;kernel32;iconv;mingw32;gcc_s;gcc;moldname;mingwex] + implicit objs: [C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib/crt2.o;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/crtbegin.o;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/crtend.o] + implicit dirs: [C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0;C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc;C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/lib;C:/DevelopEnv/Qt/Tools/mingw810_64/lib] + implicit fwks: [] + + diff --git a/cmake-build-release/CMakeFiles/SwitchButton_autogen.dir/AutogenInfo.json b/cmake-build-release/CMakeFiles/SwitchButton_autogen.dir/AutogenInfo.json new file mode 100644 index 0000000..aa6b437 --- /dev/null +++ b/cmake-build-release/CMakeFiles/SwitchButton_autogen.dir/AutogenInfo.json @@ -0,0 +1,288 @@ +{ + "BUILD_DIR" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/SwitchButton_autogen", + "CMAKE_BINARY_DIR" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release", + "CMAKE_CURRENT_BINARY_DIR" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release", + "CMAKE_CURRENT_SOURCE_DIR" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton", + "CMAKE_EXECUTABLE" : "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/bin/cmake.exe", + "CMAKE_LIST_FILES" : + [ + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/CMakeLists.txt", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineSystem.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystem.cmake.in", + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/3.24.2/CMakeSystem.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Bruce-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Compaq-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/HP-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/LCC-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SDCC-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SunPro-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XL-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XLClang-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/zOS-C-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in", + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/3.24.2/CMakeCCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCXXCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-Determine-CXX.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/HP-CXX-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XL-CXX-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in", + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeGenericSystem.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/WindowsPaths.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCInformation.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-C.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-C.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineRCCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeRCCompiler.cmake.in", + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/3.24.2/CMakeRCCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeRCInformation.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-windres.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestRCCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompilerABI.c", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in", + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/3.24.2/CMakeCCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-C-ABI.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXInformation.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-CXX.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCXXCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in", + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/3.24.2/CMakeCXXCompiler.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-CXX-ABI.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5ConfigVersion.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5Config.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5ModuleLocation.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfig.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreMacros.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseArguments.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseArguments.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfigVersion.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfig.cmake", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupport_QWindowsPrinterSupportPlugin.cmake" + ], + "CMAKE_SOURCE_DIR" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton", + "DEP_FILE" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/SwitchButton_autogen/deps", + "DEP_FILE_RULE_NAME" : "SwitchButton_autogen/timestamp", + "HEADERS" : + [ + [ + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/src/SwitchButton.h", + "MU", + "UVLADIE3JM/moc_SwitchButton.cpp", + null + ] + ], + "HEADER_EXTENSIONS" : [ "h", "hh", "h++", "hm", "hpp", "hxx", "in", "txx" ], + "INCLUDE_DIR" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/SwitchButton_autogen/include", + "MOC_COMPILATION_FILE" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/SwitchButton_autogen/mocs_compilation.cpp", + "MOC_DEFINITIONS" : + [ + "QT_CORE_LIB", + "QT_GUI_LIB", + "QT_NO_DEBUG", + "QT_PRINTSUPPORT_LIB", + "QT_WIDGETS_LIB", + "SwitchButton_EXPORTS" + ], + "MOC_DEPEND_FILTERS" : + [ + [ + "Q_PLUGIN_METADATA", + "[\n][ \t]*Q_PLUGIN_METADATA[ \t]*\\([^\\)]*FILE[ \t]*\"([^\"]+)\"" + ] + ], + "MOC_INCLUDES" : + [ + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release", + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton", + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/src", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtCore", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/mkspecs/win32-g++", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtGui", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtANGLE", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtWidgets", + "C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtPrintSupport", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include", + "C:/DevelopEnv/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed", + "C:/DevelopEnv/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include" + ], + "MOC_MACRO_NAMES" : [ "Q_OBJECT", "Q_GADGET", "Q_NAMESPACE", "Q_NAMESPACE_EXPORT" ], + "MOC_OPTIONS" : [], + "MOC_PATH_PREFIX" : false, + "MOC_PREDEFS_CMD" : + [ + "C:/DevelopEnv/Qt/Tools/mingw810_64/bin/c++.exe", + "-dM", + "-E", + "-c", + "C:/DevelopEnv/CLion 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp" + ], + "MOC_PREDEFS_FILE" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/SwitchButton_autogen/moc_predefs.h", + "MOC_RELAXED_MODE" : false, + "MOC_SKIP" : [], + "MULTI_CONFIG" : false, + "PARALLEL" : 8, + "PARSE_CACHE_FILE" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/SwitchButton_autogen.dir/ParseCache.txt", + "QT_MOC_EXECUTABLE" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/bin/moc.exe", + "QT_UIC_EXECUTABLE" : "C:/DevelopEnv/Qt/5.15.2/mingw81_64/bin/uic.exe", + "QT_VERSION_MAJOR" : 5, + "QT_VERSION_MINOR" : 15, + "SETTINGS_FILE" : "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/SwitchButton_autogen.dir/AutogenUsed.txt", + "SOURCES" : + [ + [ + "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/src/SwitchButton.cpp", + "MU", + null + ] + ], + "UIC_OPTIONS" : [], + "UIC_SEARCH_PATHS" : [], + "UIC_SKIP" : [], + "UIC_UI_FILES" : [], + "VERBOSITY" : 0 +} diff --git a/cmake-build-release/CMakeFiles/TargetDirectories.txt b/cmake-build-release/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..2a90b07 --- /dev/null +++ b/cmake-build-release/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,5 @@ +D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/SwitchButton.dir +D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/edit_cache.dir +D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/rebuild_cache.dir +D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/SwitchButton_autogen_timestamp_deps.dir +D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/SwitchButton_autogen.dir diff --git a/cmake-build-release/CMakeFiles/clean_additional.cmake b/cmake-build-release/CMakeFiles/clean_additional.cmake new file mode 100644 index 0000000..4b1badf --- /dev/null +++ b/cmake-build-release/CMakeFiles/clean_additional.cmake @@ -0,0 +1,10 @@ +# Additional clean files +cmake_minimum_required(VERSION 3.16) + +if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "Release") + file(REMOVE_RECURSE + "CMakeFiles\\SwitchButton_autogen.dir\\AutogenUsed.txt" + "CMakeFiles\\SwitchButton_autogen.dir\\ParseCache.txt" + "SwitchButton_autogen" + ) +endif() diff --git a/cmake-build-release/CMakeFiles/clion-Release-log.txt b/cmake-build-release/CMakeFiles/clion-Release-log.txt new file mode 100644 index 0000000..b82251e --- /dev/null +++ b/cmake-build-release/CMakeFiles/clion-Release-log.txt @@ -0,0 +1,16 @@ +"C:\DevelopEnv\CLion 2022.3\bin\cmake\win\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Release "-DCMAKE_MAKE_PROGRAM=C:/DevelopEnv/CLion 2022.3/bin/ninja/win/ninja.exe" -G Ninja -S D:\4_Code\FlightDataAnalysis\Libs\SwitchButton -B D:\4_Code\FlightDataAnalysis\Libs\SwitchButton\cmake-build-release +-- The C compiler identification is GNU 8.1.0 +-- The CXX compiler identification is GNU 8.1.0 +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Check for working C compiler: C:/DevelopEnv/Qt/Tools/mingw810_64/bin/gcc.exe - skipped +-- Detecting C compile features +-- Detecting C compile features - done +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Check for working CXX compiler: C:/DevelopEnv/Qt/Tools/mingw810_64/bin/c++.exe - skipped +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Configuring done +-- Generating done +-- Build files have been written to: D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release diff --git a/cmake-build-release/CMakeFiles/clion-environment.txt b/cmake-build-release/CMakeFiles/clion-environment.txt new file mode 100644 index 0000000..e958439 --- /dev/null +++ b/cmake-build-release/CMakeFiles/clion-environment.txt @@ -0,0 +1,4 @@ +ToolSet: w64 6.0 (local)@C:\DevelopEnv\Qt\Tools\mingw810_64 +Options: + +Options:-DCMAKE_MAKE_PROGRAM=C:/DevelopEnv/CLion 2022.3/bin/ninja/win/ninja.exe \ No newline at end of file diff --git a/cmake-build-release/CMakeFiles/cmake.check_cache b/cmake-build-release/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/cmake-build-release/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/cmake-build-release/CMakeFiles/rules.ninja b/cmake-build-release/CMakeFiles/rules.ninja new file mode 100644 index 0000000..351ec96 --- /dev/null +++ b/cmake-build-release/CMakeFiles/rules.ninja @@ -0,0 +1,72 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.24 + +# 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: SwitchButton +# Configurations: Release +# ============================================================================= +# ============================================================================= + +############################################# +# Rule for compiling CXX files. + +rule CXX_COMPILER__SwitchButton_Release + depfile = $DEP_FILE + deps = gcc + command = C:\DevelopEnv\Qt\Tools\mingw810_64\bin\c++.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in + description = Building CXX object $out + + +############################################# +# Rule for linking CXX shared library. + +rule CXX_SHARED_LIBRARY_LINKER__SwitchButton_Release + command = cmd.exe /C "$PRE_LINK && C:\DevelopEnv\Qt\Tools\mingw810_64\bin\c++.exe $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared -o $TARGET_FILE -Wl,--out-implib,$TARGET_IMPLIB -Wl,--major-image-version,0,--minor-image-version,0 $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD" + description = Linking CXX shared library $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:\DevelopEnv\CLion 2022.3\bin\cmake\win\bin\cmake.exe" --regenerate-during-build -SD:\4_Code\FlightDataAnalysis\Libs\SwitchButton -BD:\4_Code\FlightDataAnalysis\Libs\SwitchButton\cmake-build-release + description = Re-running CMake... + generator = 1 + + +############################################# +# Rule for cleaning additional files. + +rule CLEAN_ADDITIONAL + command = "C:\DevelopEnv\CLion 2022.3\bin\cmake\win\bin\cmake.exe" -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake + description = Cleaning additional files... + + +############################################# +# Rule for cleaning all built files. + +rule CLEAN + command = "C:\DevelopEnv\CLion 2022.3\bin\ninja\win\ninja.exe" $FILE_ARG -t clean $TARGETS + description = Cleaning all built files... + + +############################################# +# Rule for printing all primary targets available. + +rule HELP + command = "C:\DevelopEnv\CLion 2022.3\bin\ninja\win\ninja.exe" -t targets + description = All primary targets available: + diff --git a/cmake-build-release/Testing/Temporary/LastTest.log b/cmake-build-release/Testing/Temporary/LastTest.log new file mode 100644 index 0000000..25cc8ef --- /dev/null +++ b/cmake-build-release/Testing/Temporary/LastTest.log @@ -0,0 +1,3 @@ +Start testing: May 20 20:54 Öйú±ê׼ʱ¼ä +---------------------------------------------------------- +End testing: May 20 20:54 Öйú±ê׼ʱ¼ä diff --git a/cmake-build-release/build.ninja b/cmake-build-release/build.ninja new file mode 100644 index 0000000..0c65527 --- /dev/null +++ b/cmake-build-release/build.ninja @@ -0,0 +1,203 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Ninja" Generator, CMake Version 3.24 + +# This file contains all the build statements describing the +# compilation DAG. + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# +# Which is the root file. +# ============================================================================= + +# ============================================================================= +# Project: SwitchButton +# Configurations: Release +# ============================================================================= + +############################################# +# Minimal version of Ninja required by this file + +ninja_required_version = 1.5 + + +############################################# +# Set configuration variable for custom commands. + +CONFIGURATION = Release +# ============================================================================= +# Include auxiliary files. + + +############################################# +# Include rules file. + +include CMakeFiles/rules.ninja + +# ============================================================================= + +############################################# +# Logical path to working directory; prefix for absolute paths. + +cmake_ninja_workdir = D$:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/ +# ============================================================================= +# Object build statements for SHARED_LIBRARY target SwitchButton + + +############################################# +# Order-only phony target for SwitchButton + +build cmake_object_order_depends_target_SwitchButton: phony || SwitchButton_autogen SwitchButton_autogen/mocs_compilation.cpp SwitchButton_autogen/timestamp SwitchButton_autogen_timestamp_deps + +build CMakeFiles/SwitchButton.dir/SwitchButton_autogen/mocs_compilation.cpp.obj: CXX_COMPILER__SwitchButton_Release D$:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/SwitchButton_autogen/mocs_compilation.cpp || cmake_object_order_depends_target_SwitchButton + DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB -DSwitchButton_EXPORTS + DEP_FILE = CMakeFiles\SwitchButton.dir\SwitchButton_autogen\mocs_compilation.cpp.obj.d + FLAGS = -O3 -DNDEBUG -fdiagnostics-color=always -std=gnu++17 + INCLUDES = -ID:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release -ID:/4_Code/FlightDataAnalysis/Libs/SwitchButton -ID:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/SwitchButton_autogen/include -ID:/4_Code/FlightDataAnalysis/Libs/SwitchButton/src -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtCore -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/./mkspecs/win32-g++ -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtGui -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtANGLE -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtWidgets -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtPrintSupport + OBJECT_DIR = CMakeFiles\SwitchButton.dir + OBJECT_FILE_DIR = CMakeFiles\SwitchButton.dir\SwitchButton_autogen + TARGET_COMPILE_PDB = CMakeFiles\SwitchButton.dir\ + TARGET_PDB = libSwitchButton.pdb + +build CMakeFiles/SwitchButton.dir/src/SwitchButton.cpp.obj: CXX_COMPILER__SwitchButton_Release D$:/4_Code/FlightDataAnalysis/Libs/SwitchButton/src/SwitchButton.cpp || cmake_object_order_depends_target_SwitchButton + DEFINES = -DQT_CORE_LIB -DQT_GUI_LIB -DQT_NO_DEBUG -DQT_PRINTSUPPORT_LIB -DQT_WIDGETS_LIB -DSwitchButton_EXPORTS + DEP_FILE = CMakeFiles\SwitchButton.dir\src\SwitchButton.cpp.obj.d + FLAGS = -O3 -DNDEBUG -fdiagnostics-color=always -std=gnu++17 + INCLUDES = -ID:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release -ID:/4_Code/FlightDataAnalysis/Libs/SwitchButton -ID:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/SwitchButton_autogen/include -ID:/4_Code/FlightDataAnalysis/Libs/SwitchButton/src -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtCore -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/./mkspecs/win32-g++ -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtGui -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtANGLE -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtWidgets -isystem C:/DevelopEnv/Qt/5.15.2/mingw81_64/include/QtPrintSupport + OBJECT_DIR = CMakeFiles\SwitchButton.dir + OBJECT_FILE_DIR = CMakeFiles\SwitchButton.dir\src + TARGET_COMPILE_PDB = CMakeFiles\SwitchButton.dir\ + TARGET_PDB = libSwitchButton.pdb + + +# ============================================================================= +# Link build statements for SHARED_LIBRARY target SwitchButton + + +############################################# +# Link the shared library libSwitchButton.dll + +build libSwitchButton.dll libSwitchButton.dll.a: CXX_SHARED_LIBRARY_LINKER__SwitchButton_Release CMakeFiles/SwitchButton.dir/SwitchButton_autogen/mocs_compilation.cpp.obj CMakeFiles/SwitchButton.dir/src/SwitchButton.cpp.obj | C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5PrintSupport.a C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5Widgets.a C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5Gui.a C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5Core.a || SwitchButton_autogen SwitchButton_autogen_timestamp_deps + LANGUAGE_COMPILE_FLAGS = -O3 -DNDEBUG + LINK_LIBRARIES = C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5PrintSupport.a C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5Widgets.a C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5Gui.a C:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5Core.a -lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32 + OBJECT_DIR = CMakeFiles\SwitchButton.dir + POST_BUILD = cd . + PRE_LINK = cd . + RESTAT = 1 + TARGET_COMPILE_PDB = CMakeFiles\SwitchButton.dir\ + TARGET_FILE = libSwitchButton.dll + TARGET_IMPLIB = libSwitchButton.dll.a + TARGET_PDB = libSwitchButton.pdb + + +############################################# +# Utility command for edit_cache + +build CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D D:\4_Code\FlightDataAnalysis\Libs\SwitchButton\cmake-build-release && "C:\DevelopEnv\CLion 2022.3\bin\cmake\win\bin\cmake.exe" -E echo "No interactive CMake dialog available."" + DESC = No interactive CMake dialog available... + restat = 1 + +build edit_cache: phony CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = cmd.exe /C "cd /D D:\4_Code\FlightDataAnalysis\Libs\SwitchButton\cmake-build-release && "C:\DevelopEnv\CLion 2022.3\bin\cmake\win\bin\cmake.exe" --regenerate-during-build -SD:\4_Code\FlightDataAnalysis\Libs\SwitchButton -BD:\4_Code\FlightDataAnalysis\Libs\SwitchButton\cmake-build-release" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build rebuild_cache: phony CMakeFiles/rebuild_cache.util + + +############################################# +# Utility command for SwitchButton_autogen_timestamp_deps + +build SwitchButton_autogen_timestamp_deps: phony CMakeFiles/SwitchButton_autogen_timestamp_deps + + +############################################# +# Utility command for SwitchButton_autogen + +build SwitchButton_autogen: phony CMakeFiles/SwitchButton_autogen SwitchButton_autogen/timestamp SwitchButton_autogen/mocs_compilation.cpp SwitchButton_autogen_timestamp_deps + + +############################################# +# Custom command for SwitchButton_autogen\timestamp + +build SwitchButton_autogen/timestamp SwitchButton_autogen/mocs_compilation.cpp | ${cmake_ninja_workdir}SwitchButton_autogen/timestamp ${cmake_ninja_workdir}SwitchButton_autogen/mocs_compilation.cpp: CUSTOM_COMMAND C$:/DevelopEnv/Qt/5.15.2/mingw81_64/bin/moc.exe C$:/DevelopEnv/Qt/5.15.2/mingw81_64/bin/uic.exe || SwitchButton_autogen_timestamp_deps + COMMAND = cmd.exe /C "cd /D D:\4_Code\FlightDataAnalysis\Libs\SwitchButton\cmake-build-release && "C:\DevelopEnv\CLion 2022.3\bin\cmake\win\bin\cmake.exe" -E cmake_autogen D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/SwitchButton_autogen.dir/AutogenInfo.json Release && "C:\DevelopEnv\CLion 2022.3\bin\cmake\win\bin\cmake.exe" -E touch D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/SwitchButton_autogen/timestamp && "C:\DevelopEnv\CLion 2022.3\bin\cmake\win\bin\cmake.exe" -E cmake_transform_depfile Ninja gccdepfile D:/4_Code/FlightDataAnalysis/Libs/SwitchButton D:/4_Code/FlightDataAnalysis/Libs/SwitchButton D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/SwitchButton_autogen/deps D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/d/a88f9b3f820b7fb2f2711cd992f7337a7d0c1774182c86fc620edb15a92145b9.d" + DESC = Automatic MOC and UIC for target SwitchButton + depfile = D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/CMakeFiles/d/a88f9b3f820b7fb2f2711cd992f7337a7d0c1774182c86fc620edb15a92145b9.d + restat = 1 + + +############################################# +# Phony custom command for CMakeFiles\SwitchButton_autogen_timestamp_deps + +build CMakeFiles/SwitchButton_autogen_timestamp_deps | ${cmake_ninja_workdir}CMakeFiles/SwitchButton_autogen_timestamp_deps: phony C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5PrintSupport.a C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5Gui.a C$:/DevelopEnv/Qt/5.15.2/mingw81_64/bin/moc.exe C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5Widgets.a C$:/DevelopEnv/Qt/5.15.2/mingw81_64/bin/uic.exe C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/libQt5Core.a + + +############################################# +# Phony custom command for CMakeFiles\SwitchButton_autogen + +build CMakeFiles/SwitchButton_autogen | ${cmake_ninja_workdir}CMakeFiles/SwitchButton_autogen: phony SwitchButton_autogen/timestamp || SwitchButton_autogen_timestamp_deps + +# ============================================================================= +# Target aliases. + +build SwitchButton: phony libSwitchButton.dll + +# ============================================================================= +# Folder targets. + +# ============================================================================= + +############################################# +# Folder: D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release + +build all: phony libSwitchButton.dll + +# ============================================================================= +# Built-in targets + + +############################################# +# Re-run CMake if any of its inputs changed. + +build build.ninja: RERUN_CMAKE | C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompilerABI.c C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCInformation.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXInformation.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCXXCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineRCCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineSystem.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeGenericSystem.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseArguments.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeRCCompiler.cmake.in C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeRCInformation.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystem.cmake.in C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCXXCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestRCCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-C.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-Determine-CXX.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-C.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-CXX.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-windres.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/WindowsPaths.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfig.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreMacros.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfig.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfigVersion.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupport_QWindowsPrinterSupportPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5Config.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5ConfigVersion.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5ModuleLocation.cmake CMakeCache.txt CMakeFiles/3.24.2/CMakeCCompiler.cmake CMakeFiles/3.24.2/CMakeCXXCompiler.cmake CMakeFiles/3.24.2/CMakeRCCompiler.cmake CMakeFiles/3.24.2/CMakeSystem.cmake D$:/4_Code/FlightDataAnalysis/Libs/SwitchButton/CMakeLists.txt + pool = console + + +############################################# +# A missing CMake input file is not an error. + +build C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompiler.cmake.in C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCCompilerABI.c C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCInformation.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompiler.cmake.in C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCXXInformation.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCommonLanguageInclude.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeCompilerIdDetection.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCXXCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompileFeatures.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerABI.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineCompilerId.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineRCCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeDetermineSystem.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeFindBinUtils.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeGenericSystem.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeInitializeConfigs.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeLanguageInformation.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseArguments.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseImplicitLinkInfo.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeParseLibraryArchitecture.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeRCCompiler.cmake.in C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeRCInformation.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystem.cmake.in C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystemSpecificInformation.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeSystemSpecificInitialize.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCXXCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestCompilerCommon.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/CMakeTestRCCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-C.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-CXX.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU-FindBinUtils.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/GNU.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/TI-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Internal/FeatureTesting.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-Determine-CXX.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-C-ABI.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-C.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-CXX-ABI.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU-CXX.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-GNU.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows-windres.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/Windows.cmake C$:/DevelopEnv/CLion$ 2022.3/bin/cmake/win/share/cmake-3.24/Modules/Platform/WindowsPaths.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfig.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Core/Qt5CoreMacros.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfig.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QSvgIconPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QSvgPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QVirtualKeyboardPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWebGLIntegrationPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsDirect2DIntegrationPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QWindowsIntegrationPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Gui/Qt5Gui_QXdgDesktopPortalThemePlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfig.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfigVersion.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5PrintSupport/Qt5PrintSupport_QWindowsPrinterSupportPlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5Widgets/Qt5Widgets_QWindowsVistaStylePlugin.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5Config.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5ConfigVersion.cmake C$:/DevelopEnv/Qt/5.15.2/mingw81_64/lib/cmake/Qt5/Qt5ModuleLocation.cmake CMakeCache.txt CMakeFiles/3.24.2/CMakeCCompiler.cmake CMakeFiles/3.24.2/CMakeCXXCompiler.cmake CMakeFiles/3.24.2/CMakeRCCompiler.cmake CMakeFiles/3.24.2/CMakeSystem.cmake D$:/4_Code/FlightDataAnalysis/Libs/SwitchButton/CMakeLists.txt: phony + + +############################################# +# Clean additional files. + +build CMakeFiles/clean.additional: CLEAN_ADDITIONAL + CONFIG = Release + + +############################################# +# 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/cmake-build-release/cmake_install.cmake b/cmake-build-release/cmake_install.cmake new file mode 100644 index 0000000..01095a1 --- /dev/null +++ b/cmake-build-release/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: D:/4_Code/FlightDataAnalysis/Libs/SwitchButton + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/SwitchButton") +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 "Release") + 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:/DevelopEnv/Qt/Tools/mingw810_64/bin/objdump.exe") +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 "D:/4_Code/FlightDataAnalysis/Libs/SwitchButton/cmake-build-release/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/SwitchButton.cpp b/src/SwitchButton.cpp similarity index 100% rename from SwitchButton.cpp rename to src/SwitchButton.cpp diff --git a/SwitchButton.h b/src/SwitchButton.h similarity index 66% rename from SwitchButton.h rename to src/SwitchButton.h index d388a0a..31d5770 100644 --- a/SwitchButton.h +++ b/src/SwitchButton.h @@ -1,45 +1,24 @@ #ifndef SWITCHBUTTON_H #define SWITCHBUTTON_H -#include "SwitchButton_global.h" +//#include "SwitchButton_global.h" #include #include #include #include +#include -class SWITCHBUTTON_EXPORT SwitchButton : public QWidget +class Q_DECL_EXPORT SwitchButton : public QWidget { Q_OBJECT -// Q_PROPERTY(int m_space READ space WRITE setSpace) -// Q_PROPERTY(int m_radius READ radius WRITE setRadius) -// Q_PROPERTY(bool m_checked READ checked WRITE setChecked) -// Q_PROPERTY(bool m_showText READ showText WRITE setShowText) -// Q_PROPERTY(bool m_showCircle READ showCircel WRITE setShowCircle) -// Q_PROPERTY(bool m_animation READ animation WRITE setAnimation) - -// Q_PROPERTY(QColor m_bgColorOn READ bgColorOn WRITE setBgColorOn) -// Q_PROPERTY(QColor m_bgColorOff READ bgColorOff WRITE setBgColorOff) -// Q_PROPERTY(QColor m_sliderColorOn READ sliderColorOn WRITE setSliderColorOn) -// Q_PROPERTY(QColor m_sliderColorOff READ sliderColorOff WRITE setSliderColorOff) -// Q_PROPERTY(QColor m_textColor READ textColor WRITE setTextColor) - -// Q_PROPERTY(QString m_textOn READ textOn WRITE setTextOn) -// Q_PROPERTY(QString m_textOff READ textOff WRITE setTextOff) - -// Q_PROPERTY(int m_step READ step WRITE setStep) -// Q_PROPERTY(int m_startX READ startX WRITE setStartX) -// Q_PROPERTY(int m_endX READ endX WRITE setEndX) - public: - explicit SwitchButton(QWidget *parent = 0); + explicit SwitchButton(QWidget *parent = nullptr); signals: // void statusChanged(bool checked); void checkedChanged(bool checked); -public slots: - private slots: void updateValue(); @@ -113,12 +92,6 @@ public Q_SLOTS: void setTextOn(const QString &text); void setTextOff(const QString &text); - -// void setStep(int step); -// void setStartX(int startX); -// void setEndX(int endX); - - }; diff --git a/SwitchButton_global.h b/src/SwitchButton_global.h similarity index 100% rename from SwitchButton_global.h rename to src/SwitchButton_global.h