microsoft / vscode-cpptools

Official repository for the Microsoft C/C++ extension for VS Code.
Other
5.45k stars 1.53k forks source link

Indexing wrong compiler include paths when compiler defined with CMake Tools provider #12516

Open vis4rd opened 1 month ago

vis4rd commented 1 month ago

Environment

Bug Summary and Steps to Reproduce

Bug Summary: Cpp Tools indexes MSVC compiler from Visual Studio 2022 even though it is not specified anywhere in configuration, resulting in multiple errors like below:

Error while processing S:\Code\CPP\monoshot\src\render_interface_test\main.cpp.
C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.33.31629\include\cassert:9:10: error: 'assert.h' file not found [clang-diagnostic-error]
    9 | #include <assert.h>
      |          ^~~~~~~~~~

Steps to reproduce:

  1. Install Cpp Tools, CMake Tools, use configuration below.
  2. Open some random C++ file or project.
  3. Watch intellisense provide errors like above.

Expected behavior: Intellisense does not show errors like:

Error while processingC/C++(clang-diagnostic-error)
cassert(9, 10): 'assert.h' file not found 

error

Configuration and Logs

`c_cpp_properties.json`:

{
    "configurations": [
        {
            "name": "CMake",
            "compileCommands": "${config:cmake.buildDirectory}/compile_commands.json",
            "configurationProvider": "ms-vscode.cmake-tools",
            "cppStandard": "c++20"
        }
    ],
    "version": 4
}

debug output from C/C++ extension: (in comment, because I reached 65536 character limit)

(appears in project: https://github.com/vis4rd/monoshot/tree/renderer-refactor, but imo shoult be reproducible in any c++ code)

settings.json:

    "C_Cpp.autoAddFileAssociations": false,
    "C_Cpp.codeAnalysis.clangTidy.enabled": true,
    "C_Cpp.codeAnalysis.clangTidy.useBuildPath": true,
    "C_Cpp.debugShortcut": false,
    "C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
    "C_Cpp.default.cppStandard": "c++20",
    "C_Cpp.intelliSenseCachePath": "${workspaceFolder}/.cache/vscode-cpptools",
    "C_Cpp.intelliSenseEngine": "default",
    "C_Cpp.intelliSenseEngineFallback": "enabled",
    "C_Cpp.loggingLevel": "Debug",
    "C_Cpp.markdownInComments": "enabled",
    "C_Cpp.preferredPathSeparator": "Forward Slash",
    "C_Cpp.refactoring.includeHeader": "never",
    "cmake.buildBeforeRun": false,
    "cmake.configureOnEdit": false,
    "cmake.configureOnOpen": false,
    "cmake.languageSupport.enableFileAPI": true,

Issue is reproducible even when no c_cpp_properties.json exists, however I created it just to check if it changes anything (it does not) and for the sake of this issue.

Used compiler in CMake is different than default Visual Studio one:

PS S:\Code\CPP\monoshot> S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe --version  
g++.exe (MinGW-W64 x86_64-msvcrt-posix-seh, built by Brecht Sanders) 13.1.0
Copyright (C) 2023 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

But for some reason these includes are indexed (snippet from above LSP log):

  Folder: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\VC\TOOLS\MSVC\14.33.31629\ATLMFC\INCLUDE\* will be indexed
  Folder: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\VC\TOOLS\MSVC\14.33.31629\INCLUDE\* will be indexed

..I think they are causing this issue of "clang-diagnostic-error" - they have precedence over correct include paths from selected compiler.

Other Extensions

ms-dotnettools.vscode-dotnet-runtime ms-vscode.cpptools ms-vscode.cmake-tools

...and many others that I don't think they could influence this behavior

Additional context

No response

vis4rd commented 1 month ago
Full log (click to expand): ``` loggingLevel: Debug LSP: (received) cpptools/initialize (id: 1) LSP: (invoked) cpptools/initialize (id: 1) cpptools version (TypeScript): 1.21.3 cpptools version (native): 1.21.3.0 Autocomplete is enabled. Error squiggles are enabled if all header dependencies are resolved. Hover is enabled. The extension will use the Tag Parser for IntelliSense when #includes don't resolve. IntelliSense Engine = default. LSP: Sending response (id: 1) LSP: Message ignored due to no registered handler: $/setTrace LSP: (received) cpptools/queryCompilerDefaults (id: 2) LSP: (invoked) cpptools/queryCompilerDefaults (id: 2) LSP: Sending response (id: 2) LSP: (received) cpptools/didChangeCppProperties (id: 3) LSP: (invoked) cpptools/didChangeCppProperties (id: 3) LSP: (received - deferred) cpptools/didChangeVisibleTextEditors LSP: (received) cpptools/didChangeSettings LSP: (received - deferred) textDocument/didOpen: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp LSP: (received - deferred) cpptools/didChangeVisibleTextEditors LSP: (received) cpptools/didChangeSettings Code browsing service initialized LSP: (received - deferred) cpptools/didChangeVisibleTextEditors LSP: (received - deferred) cpptools/didChangeVisibleTextEditors LSP: (received - deferred) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 4) Querying compiler for default C++ language standard using command line: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe -x c++ -E -dM nul Detected language standard version: gnu++17 Querying compiler's default target using command line: "S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe" -dumpmachine Compiler returned default target value: x86_64-w64-mingw32 Compiler query command line: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe -O3 -std=gnu++20 -m64 -Wp,-v -E -dM -x c++ nul Attempting to get defaults from C++ compiler in compile_commands.json file: 'S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe' Querying compiler for default C++ language standard using command line: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\gcc.exe -x c++ -E -dM nul LSP: Message ignored due to no registered handler: $/setTrace LSP: (received) cpptools/didChangeSettings LSP: (received) cpptools/queryCompilerDefaults (id: 5) Detected language standard version: gnu++17 Querying compiler's default target using command line: "S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\gcc.exe" -dumpmachine Compiler returned default target value: x86_64-w64-mingw32 Compiler query command line: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\gcc.exe -O3 -std=gnu99 -m64 -Wp,-v -E -dM -x c nul Attempting to get defaults from C compiler in compile_commands.json file: 'S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\gcc.exe' Compiler query command line: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\gcc.exe -O3 -std=c17 -m64 -Wp,-v -E -dM -x c nul LSP: (received - deferred) cpptools/getFoldingRanges: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 6) LSP: (received) cpptools/queryCompilerDefaults (id: 7) Attempting to get defaults from C compiler in compile_commands.json file: 'S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\gcc.exe' Compiler query command line: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe -O3 -std=c++20 -m64 -Wp,-v -E -dM -x c++ nul Attempting to get defaults from C++ compiler in compile_commands.json file: 'S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe' LSP: (received - deferred) cpptools/getDocumentSymbols: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 8) Folder: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\VC\TOOLS\MSVC\14.33.31629\ATLMFC\INCLUDE\* will be indexed Folder: C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\VC\TOOLS\MSVC\14.33.31629\INCLUDE\* will be indexed Folder: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\X86_64-W64-MINGW32\INCLUDE\ will be indexed Folder: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\LIB\GCC\X86_64-W64-MINGW32\13.1.0\INCLUDE-FIXED\ will be indexed Folder: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\LIB\GCC\X86_64-W64-MINGW32\13.1.0\INCLUDE\ will be indexed Folder: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\RENDER_INTERFACE_TEST\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UTIL\PACKED_VARIABLE\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UTIL\INDEX_OF\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UI\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UI\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TRAITS\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TIME\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TIME\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\SECTION\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\SECTION\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RESOURCE\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RESOURCE\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\TEXTURE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\TARGET\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\SHADER\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\RENDERER\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\GLFW\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\GL\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\LOG\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\LOG\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\INPUT\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\INPUT\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CSTRING\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CONFIG\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CONFIG\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CAMERA\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CAMERA\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\TINYFILEDIALOGS\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\STB_IMAGE\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\SPDLOG\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\SPDLOG\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\INIFILE-CPP\INIFILE-CPP\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\IMGUI\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLM\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLFW\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLFW\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\LIB\GLFW\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\GLADSOURCES\GLAD\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\GLADSOURCES\GLAD\INCLUDE\ will be indexed LSP: (queued) cpptools/didChangeVisibleTextEditors LSP: (queued) textDocument/didOpen: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp LSP: (queued) cpptools/didChangeVisibleTextEditors LSP: (queued) cpptools/didChangeVisibleTextEditors LSP: (queued) cpptools/didChangeVisibleTextEditors LSP: (queued) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 4) LSP: (queued) cpptools/getFoldingRanges: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 6) LSP: (queued) cpptools/getDocumentSymbols: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 8) LSP: Sending response (id: 3) Custom browse configuration received: { "browsePath": [ "s:/code/cpp/monoshot/src/engine/module/input/include", "s:/code/cpp/monoshot/src/engine/lib/glfw/include", "s:/code/cpp/monoshot/src/engine/module/renderer/include", "s:/code/cpp/monoshot/src/engine/lib/glm", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/include", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/gladsources/glad/include", "s:/code/cpp/monoshot/src/engine/lib/imgui/imgui", "s:/code/cpp/monoshot/src/engine/lib/imgui/imgui/backends", "s:/code/cpp/monoshot/src/engine/lib/imgui", "s:/code/cpp/monoshot/src/engine/lib/stb_image/include", "s:/code/cpp/monoshot/src/engine/module/traits/include", "s:/code/cpp/monoshot/src/engine/module/config/include", "s:/code/cpp/monoshot/src/engine/lib/inifile-cpp/inifile-cpp/include", "s:/code/cpp/monoshot/src/engine/module/section/include", "s:/code/cpp/monoshot/src/engine/module/resource/include", "s:/code/cpp/monoshot/src/engine/module/time/include", "s:/code/cpp/monoshot/src/engine/module/ui/include", "s:/code/cpp/monoshot/src/engine/module/log/include", "s:/code/cpp/monoshot/src/engine/module/cstring/include", "s:/code/cpp/monoshot/src/engine/module/util/packed_variable/include", "s:/code/cpp/monoshot/src/engine/module/util/index_of/include", "s:/code/cpp/monoshot/src/engine/module/camera/include", "s:/code/cpp/monoshot/src/engine/lib/tinyfiledialogs", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include", "s:/code/cpp/monoshot/src/render_interface_test", "s:/code/cpp/monoshot/src/engine/module/renderer/src", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/gladsources/glad/src", "s:/code/cpp/monoshot/src/engine/module/camera/src", "s:/code/cpp/monoshot/src/engine/module/config/src", "s:/code/cpp/monoshot/src/engine/module/input/src", "s:/code/cpp/monoshot/src/engine/module/log/src", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/gl", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/glfw", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/renderer", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/shader", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/target", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/texture", "s:/code/cpp/monoshot/src/engine/module/resource/src", "s:/code/cpp/monoshot/src/engine/module/section/src", "s:/code/cpp/monoshot/src/engine/module/time/src", "s:/code/cpp/monoshot/src/engine/module/ui/src", "s:/code/cpp/monoshot/src/engine/module/ui/src/external", "s:/code/cpp/monoshot/src/engine/lib/glfw/src", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "s:/code/cpp/monoshot/src/engine/lib/glfw/include/glfw", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/lib/glfw/cmakefiles", "s:/code/cpp/monoshot/src/engine/lib/glfw/cmake", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/lib/glfw/src/cmakefiles", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include/spdlog", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include/spdlog/cfg", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include/spdlog/details", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include/spdlog/fmt", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include/spdlog/sinks", "s:/code/cpp/monoshot/src/engine/lib/spdlog/src", "s:/code/cpp/monoshot/src/engine/lib/spdlog/src/cfg", "s:/code/cpp/monoshot/src/engine/lib/spdlog/src/details", "s:/code/cpp/monoshot/src/engine/lib/spdlog/src/sinks", "s:/code/cpp/monoshot/src/engine/lib/stb_image/include/stbi", "s:/code/cpp/monoshot/src/engine/lib/tinyfiledialogs/tinyfiledialogs" ], "compilerPath": "s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/gcc.exe", "compilerArgs": [], "compilerFragments": [ "-O3 -DNDEBUG" ] } LSP: (invoked) cpptools/getDocumentSymbols: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 8) LSP: (invoked) cpptools/didChangeSettings Discovering files... Autocomplete is enabled. Error squiggles are enabled if all header dependencies are resolved. Hover is enabled. The extension will use the Tag Parser for IntelliSense when #includes don't resolve. IntelliSense Engine = default. Enhanced Colorization is enabled. LSP: (invoked) cpptools/didChangeSettings Autocomplete is enabled. Error squiggles are enabled if all header dependencies are resolved. Hover is enabled. The extension will use the Tag Parser for IntelliSense when #includes don't resolve. IntelliSense Engine = default. Enhanced Colorization is enabled. LSP: (invoked) cpptools/didChangeSettings Autocomplete is enabled. Error squiggles are enabled if all header dependencies are resolved. Hover is enabled. The extension will use the Tag Parser for IntelliSense when #includes don't resolve. IntelliSense Engine = default. Enhanced Colorization is enabled. LSP: (invoked) cpptools/queryCompilerDefaults (id: 5) Compiler query command line: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe -std=c17 -m64 -Wp,-v -E -dM -x c nul Processing folder (non-recursive): C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\VC\TOOLS\MSVC\14.33.31629\ATLMFC\INCLUDE Processing folder (non-recursive): C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\VC\TOOLS\MSVC\14.33.31629\INCLUDE Attempting to get defaults from C compiler in "compilerPath" property: 'S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe' Compiler query command line: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe -std=gnu++17 -m64 -Wp,-v -E -dM -x c++ nul Processing folder (recursive): S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\X86_64-W64-MINGW32\INCLUDE\ LSP: (received) cpptools/queryCompilerDefaults (id: 9) LSP: Sending response (id: 8) LSP: (received) cpptools/didChangeCustomBrowseConfiguration LSP: (received) cpptools/clearCustomConfigurations Processing folder (recursive): S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\LIB\GCC\X86_64-W64-MINGW32\13.1.0\INCLUDE-FIXED\ Processing folder (recursive): S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\LIB\GCC\X86_64-W64-MINGW32\13.1.0\INCLUDE\ Processing folder (recursive): S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\INCLUDE\ Attempting to get defaults from C++ compiler in "compilerPath" property: 'S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe' LSP: Sending response (id: 5) LSP: (invoked) cpptools/queryCompilerDefaults (id: 7) Compiler query command line: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\gcc.exe -std=c17 -m64 -Wp,-v -E -dM -x c nul Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\RENDER_INTERFACE_TEST\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UTIL\PACKED_VARIABLE\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UTIL\INDEX_OF\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UI\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UI\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TRAITS\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TIME\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TIME\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\SECTION\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\SECTION\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RESOURCE\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RESOURCE\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\TEXTURE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\TARGET\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\SHADER\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\RENDERER\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\GLFW\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\GL\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\LOG\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\LOG\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\INPUT\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\INPUT\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CSTRING\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CONFIG\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CONFIG\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CAMERA\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CAMERA\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\TINYFILEDIALOGS\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\STB_IMAGE\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\SPDLOG\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\SPDLOG\INCLUDE\ Attempting to get defaults from C compiler in "compilerPath" property: 'S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\gcc.exe' Compiler query command line: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\gcc.exe -std=gnu++17 -m64 -Wp,-v -E -dM -x c++ nul Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\INIFILE-CPP\INIFILE-CPP\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\IMGUI\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLM\ Attempting to get defaults from C++ compiler in "compilerPath" property: 'S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\gcc.exe' LSP: Sending response (id: 7) LSP: (invoked) textDocument/didOpen: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp LSP: (invoked) cpptools/didChangeVisibleTextEditors Populating file name cache... Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLFW\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLFW\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\LIB\GLFW\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\GLADSOURCES\GLAD\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\GLADSOURCES\GLAD\INCLUDE\ Discovering files: 5453 file(s) processed 20 file(s) removed from database Done discovering files. Populating include completion cache. Parsing remaining files... Done populating filename cache. Elapsed time: 175 ms Requesting a custom configuration for: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\RENDERER\RENDERPASS.CPP Intellisense update pending for: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp LSP: (invoked) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 4) LSP: Sending response (id: 4) LSP: (invoked) cpptools/getFoldingRanges: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 6) LSP: (invoked) cpptools/queryCompilerDefaults (id: 9) LSP: Sending response (id: 9) LSP: (invoked) cpptools/didChangeCustomBrowseConfiguration LSP: Sending response (id: 6) LSP: (received) cpptools/finishedRequestCustomConfig: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\RENDERER\RENDERPASS.CPP LSP: (invoked) cpptools/finishedRequestCustomConfig: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\RENDERER\RENDERPASS.CPP tag parsing file: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.33.31629\include\cstdint Querying compiler for default C++ language standard using command line: s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/gcc.exe -x c++ -E -dM nul tag parsing file: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.33.31629\include\string tag parsing file: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.33.31629\include\string_view tag parsing file: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.33.31629\include\stdint.h tag parsing file: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.33.31629\include\yvals_core.h Detected language standard version: gnu++17 Querying compiler's default target using command line: "s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/gcc.exe" -dumpmachine Custom configuration provider 'CMake Tools' registered Custom browse configuration received: { "browsePath": [ "s:/code/cpp/monoshot/src/engine/module/input/include", "s:/code/cpp/monoshot/src/engine/lib/glfw/include", "s:/code/cpp/monoshot/src/engine/module/renderer/include", "s:/code/cpp/monoshot/src/engine/lib/glm", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/include", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/gladsources/glad/include", "s:/code/cpp/monoshot/src/engine/lib/imgui/imgui", "s:/code/cpp/monoshot/src/engine/lib/imgui/imgui/backends", "s:/code/cpp/monoshot/src/engine/lib/imgui", "s:/code/cpp/monoshot/src/engine/lib/stb_image/include", "s:/code/cpp/monoshot/src/engine/module/traits/include", "s:/code/cpp/monoshot/src/engine/module/config/include", "s:/code/cpp/monoshot/src/engine/lib/inifile-cpp/inifile-cpp/include", "s:/code/cpp/monoshot/src/engine/module/section/include", "s:/code/cpp/monoshot/src/engine/module/resource/include", "s:/code/cpp/monoshot/src/engine/module/time/include", "s:/code/cpp/monoshot/src/engine/module/ui/include", "s:/code/cpp/monoshot/src/engine/module/log/include", "s:/code/cpp/monoshot/src/engine/module/cstring/include", "s:/code/cpp/monoshot/src/engine/module/util/packed_variable/include", "s:/code/cpp/monoshot/src/engine/module/util/index_of/include", "s:/code/cpp/monoshot/src/engine/module/camera/include", "s:/code/cpp/monoshot/src/engine/lib/tinyfiledialogs", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include", "s:/code/cpp/monoshot/src/render_interface_test", "s:/code/cpp/monoshot/src/engine/module/renderer/src", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/gladsources/glad/src", "s:/code/cpp/monoshot/src/engine/module/camera/src", "s:/code/cpp/monoshot/src/engine/module/config/src", "s:/code/cpp/monoshot/src/engine/module/input/src", "s:/code/cpp/monoshot/src/engine/module/log/src", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/gl", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/glfw", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/renderer", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/shader", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/target", "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/src/texture", "s:/code/cpp/monoshot/src/engine/module/resource/src", "s:/code/cpp/monoshot/src/engine/module/section/src", "s:/code/cpp/monoshot/src/engine/module/time/src", "s:/code/cpp/monoshot/src/engine/module/ui/src", "s:/code/cpp/monoshot/src/engine/module/ui/src/external", "s:/code/cpp/monoshot/src/engine/lib/glfw/src", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "s:/code/cpp/monoshot/src/engine/lib/glfw/include/glfw", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/lib/glfw/cmakefiles", "s:/code/cpp/monoshot/src/engine/lib/glfw/cmake", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/lib/glfw/src/cmakefiles", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include/spdlog", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include/spdlog/cfg", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include/spdlog/details", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include/spdlog/fmt", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include/spdlog/sinks", "s:/code/cpp/monoshot/src/engine/lib/spdlog/src", "s:/code/cpp/monoshot/src/engine/lib/spdlog/src/cfg", "s:/code/cpp/monoshot/src/engine/lib/spdlog/src/details", "s:/code/cpp/monoshot/src/engine/lib/spdlog/src/sinks", "s:/code/cpp/monoshot/src/engine/lib/stb_image/include/stbi", "s:/code/cpp/monoshot/src/engine/lib/tinyfiledialogs/tinyfiledialogs" ], "compilerPath": "s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/gcc.exe", "compilerArgs": [], "compilerFragments": [ "-O3 -DNDEBUG" ] } Compiler returned default target value: x86_64-w64-mingw32 Compiler query command line: s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/gcc.exe -O3 -std=c++17 -m64 -Wp,-v -E -dM -x c++ nul LSP: (received) cpptools/didChangeCppProperties (id: 10) tag parsing file: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.33.31629\include\algorithm LSP: (received) cpptools/didChangeCustomBrowseConfiguration LSP: (received) cpptools/pauseParsing LSP: (received) cpptools/clearCustomConfigurations LSP: (received) cpptools/resumeParsing LSP: (received) cpptools/queryTranslationUnitSource: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 11) LSP: (invoked) cpptools/queryTranslationUnitSource: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 11) LSP: Sending response (id: 11) Custom configurations received: uri: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/renderer/RenderPass.cpp config: { "includePath": [ "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/include", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/gladsources/glad/include", "s:/code/cpp/monoshot/src/engine/lib/glfw/include", "s:/code/cpp/monoshot/src/engine/lib/glm", "s:/code/cpp/monoshot/src/engine/lib/imgui/imgui", "s:/code/cpp/monoshot/src/engine/lib/imgui/imgui/backends", "s:/code/cpp/monoshot/src/engine/lib/imgui", "s:/code/cpp/monoshot/src/engine/lib/stb_image/include", "s:/code/cpp/monoshot/src/engine/module/traits/include", "s:/code/cpp/monoshot/src/engine/module/config/include", "s:/code/cpp/monoshot/src/engine/lib/inifile-cpp/inifile-cpp/include", "s:/code/cpp/monoshot/src/engine/module/section/include", "s:/code/cpp/monoshot/src/engine/module/resource/include", "s:/code/cpp/monoshot/src/engine/module/renderer/include", "s:/code/cpp/monoshot/src/engine/module/time/include", "s:/code/cpp/monoshot/src/engine/module/log/include", "s:/code/cpp/monoshot/src/engine/module/input/include", "s:/code/cpp/monoshot/src/engine/module/cstring/include", "s:/code/cpp/monoshot/src/engine/module/util/packed_variable/include", "s:/code/cpp/monoshot/src/engine/module/util/index_of/include", "s:/code/cpp/monoshot/src/engine/module/ui/include", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include" ], "defines": [ "GLFW_INCLUDE_NONE", "SPDLOG_SOURCE_LOCATION", "SPDLOG_USE_STD_FORMAT" ], "compilerPath": "s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/g++.exe", "compilerArgs": [], "compilerFragments": [ "-O3 -DNDEBUG -std=gnu++20" ] } uri: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/renderer/Renderer.cpp config: { "includePath": [ "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/include", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/gladsources/glad/include", "s:/code/cpp/monoshot/src/engine/lib/glfw/include", "s:/code/cpp/monoshot/src/engine/lib/glm", "s:/code/cpp/monoshot/src/engine/lib/imgui/imgui", "s:/code/cpp/monoshot/src/engine/lib/imgui/imgui/backends", "s:/code/cpp/monoshot/src/engine/lib/imgui", "s:/code/cpp/monoshot/src/engine/lib/stb_image/include", "s:/code/cpp/monoshot/src/engine/module/traits/include", "s:/code/cpp/monoshot/src/engine/module/config/include", "s:/code/cpp/monoshot/src/engine/lib/inifile-cpp/inifile-cpp/include", "s:/code/cpp/monoshot/src/engine/module/section/include", "s:/code/cpp/monoshot/src/engine/module/resource/include", "s:/code/cpp/monoshot/src/engine/module/renderer/include", "s:/code/cpp/monoshot/src/engine/module/time/include", "s:/code/cpp/monoshot/src/engine/module/log/include", "s:/code/cpp/monoshot/src/engine/module/input/include", "s:/code/cpp/monoshot/src/engine/module/cstring/include", "s:/code/cpp/monoshot/src/engine/module/util/packed_variable/include", "s:/code/cpp/monoshot/src/engine/module/util/index_of/include", "s:/code/cpp/monoshot/src/engine/module/ui/include", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include" ], "defines": [ "GLFW_INCLUDE_NONE", "SPDLOG_SOURCE_LOCATION", "SPDLOG_USE_STD_FORMAT" ], "compilerPath": "s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/g++.exe", "compilerArgs": [], "compilerFragments": [ "-O3 -DNDEBUG -std=gnu++20" ] } uri: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/renderer/RenderPipeline.cpp config: { "includePath": [ "s:/code/cpp/monoshot/src/engine/module/renderer/opengl/include", "s:/code/cpp/monoshot/build/src/render_interface_test/engine/gladsources/glad/include", "s:/code/cpp/monoshot/src/engine/lib/glfw/include", "s:/code/cpp/monoshot/src/engine/lib/glm", "s:/code/cpp/monoshot/src/engine/lib/imgui/imgui", "s:/code/cpp/monoshot/src/engine/lib/imgui/imgui/backends", "s:/code/cpp/monoshot/src/engine/lib/imgui", "s:/code/cpp/monoshot/src/engine/lib/stb_image/include", "s:/code/cpp/monoshot/src/engine/module/traits/include", "s:/code/cpp/monoshot/src/engine/module/config/include", "s:/code/cpp/monoshot/src/engine/lib/inifile-cpp/inifile-cpp/include", "s:/code/cpp/monoshot/src/engine/module/section/include", "s:/code/cpp/monoshot/src/engine/module/resource/include", "s:/code/cpp/monoshot/src/engine/module/renderer/include", "s:/code/cpp/monoshot/src/engine/module/time/include", "s:/code/cpp/monoshot/src/engine/module/log/include", "s:/code/cpp/monoshot/src/engine/module/input/include", "s:/code/cpp/monoshot/src/engine/module/cstring/include", "s:/code/cpp/monoshot/src/engine/module/util/packed_variable/include", "s:/code/cpp/monoshot/src/engine/module/util/index_of/include", "s:/code/cpp/monoshot/src/engine/module/ui/include", "s:/code/cpp/monoshot/src/engine/lib/spdlog/include" ], "defines": [ "GLFW_INCLUDE_NONE", "SPDLOG_SOURCE_LOCATION", "SPDLOG_USE_STD_FORMAT" ], "compilerPath": "s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/g++.exe", "compilerArgs": [], "compilerFragments": [ "-O3 -DNDEBUG -std=gnu++20" ] } LSP: (received) cpptools/queryCompilerDefaults (id: 12) LSP: (received) cpptools/didChangeCustomConfiguration Attempting to get defaults from C++ compiler in "compilerPath" property: 's:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/gcc.exe' Folder: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\LIB\GCC\X86_64-W64-MINGW32\13.1.0\INCLUDE\ will be indexed Folder: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\INCLUDE\ will be indexed Folder: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\LIB\GCC\X86_64-W64-MINGW32\13.1.0\INCLUDE-FIXED\ will be indexed Folder: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\X86_64-W64-MINGW32\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\INPUT\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLFW\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLM\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\GLADSOURCES\GLAD\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\IMGUI\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\STB_IMAGE\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TRAITS\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CONFIG\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\INIFILE-CPP\INIFILE-CPP\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\SECTION\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RESOURCE\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TIME\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UI\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\LOG\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CSTRING\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UTIL\PACKED_VARIABLE\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UTIL\INDEX_OF\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CAMERA\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\TINYFILEDIALOGS\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\SPDLOG\INCLUDE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\RENDER_INTERFACE_TEST\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\GLADSOURCES\GLAD\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CAMERA\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CONFIG\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\INPUT\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\LOG\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\GL\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\GLFW\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\RENDERER\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\SHADER\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\TARGET\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\TEXTURE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RESOURCE\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\SECTION\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TIME\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UI\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLFW\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\LIB\GLFW\SRC\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\LIB\GLFW\CMAKEFILES\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLFW\CMAKE\ will be indexed Folder: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\SPDLOG\SRC\ will be indexed Aborting tag parse of S:\Code\CPP\monoshot\src\engine\module\renderer\opengl\include\opengl\renderer\RenderPass.hpp and dependencies LSP: (invoked) cpptools/clearCustomConfigurations LSP: (invoked) cpptools/didChangeCppProperties (id: 10) Discovering files... LSP: Sending response (id: 10) LSP: (invoked) cpptools/didChangeCustomBrowseConfiguration LSP: (invoked) cpptools/pauseParsing LSP: (invoked) cpptools/clearCustomConfigurations LSP: (invoked) cpptools/resumeParsing LSP: (invoked) cpptools/queryCompilerDefaults (id: 12) LSP: Sending response (id: 12) LSP: (invoked) cpptools/didChangeCustomConfiguration Querying compiler for default C++ language standard using command line: s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/g++.exe -x c++ -E -dM nul Processing folder (recursive): S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\LIB\GCC\X86_64-W64-MINGW32\13.1.0\INCLUDE\ Processing folder (recursive): S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\INCLUDE\ Processing folder (recursive): S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\LIB\GCC\X86_64-W64-MINGW32\13.1.0\INCLUDE-FIXED\ Processing folder (recursive): S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\X86_64-W64-MINGW32\INCLUDE\ Detected language standard version: gnu++17 Querying compiler's default target using command line: "s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/g++.exe" -dumpmachine Compiler returned default target value: x86_64-w64-mingw32 Compiler query command line: s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/g++.exe -O3 -std=gnu++20 -m64 -Wp,-v -E -dM -x c++ nul Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\INPUT\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLFW\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLM\ Attempting to get defaults from C++ compiler in "compilerPath" property: 's:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/g++.exe' Received a custom configuration for: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/renderer/RenderPass.cpp Received a custom configuration for: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/renderer/Renderer.cpp Received a custom configuration for: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/renderer/RenderPipeline.cpp Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\GLADSOURCES\GLAD\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\IMGUI\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\STB_IMAGE\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TRAITS\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CONFIG\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\INIFILE-CPP\INIFILE-CPP\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\SECTION\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RESOURCE\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TIME\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UI\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\LOG\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CSTRING\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UTIL\PACKED_VARIABLE\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UTIL\INDEX_OF\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CAMERA\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\TINYFILEDIALOGS\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\SPDLOG\INCLUDE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\RENDER_INTERFACE_TEST\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\GLADSOURCES\GLAD\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CAMERA\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CONFIG\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\INPUT\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\LOG\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\GL\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\GLFW\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\RENDERER\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\SHADER\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\TARGET\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\SRC\TEXTURE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RESOURCE\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\SECTION\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TIME\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UI\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLFW\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\LIB\GLFW\SRC\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\LIB\GLFW\CMAKEFILES\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLFW\CMAKE\ Processing folder (recursive): S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\SPDLOG\SRC\ Discovering files: 5168 file(s) processed 305 file(s) removed from database Done discovering files. Populating include completion cache. Parsing remaining files... Parsing: 0 files(s) processed Done parsing remaining files. IntelliSense update scheduled and TU acquisition started for: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp Populating file name cache... Done populating filename cache. Elapsed time: 51 ms sending compilation args for S:\Code\CPP\monoshot\src\engine\module\renderer\opengl\src\renderer\RenderPass.cpp include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\OPENGL\INCLUDE include: S:\CODE\CPP\MONOSHOT\BUILD\SRC\RENDER_INTERFACE_TEST\ENGINE\GLADSOURCES\GLAD\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLFW\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\GLM include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\IMGUI\IMGUI include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\IMGUI\IMGUI\BACKENDS include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\IMGUI include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\STB_IMAGE\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TRAITS\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CONFIG\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\INIFILE-CPP\INIFILE-CPP\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\SECTION\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RESOURCE\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\RENDERER\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\TIME\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\LOG\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\INPUT\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\CSTRING\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UTIL\PACKED_VARIABLE\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UTIL\INDEX_OF\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\MODULE\UI\INCLUDE include: S:\CODE\CPP\MONOSHOT\SRC\ENGINE\LIB\SPDLOG\INCLUDE system include: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\INCLUDE\C++\13.1.0 system include: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\INCLUDE\C++\13.1.0\X86_64-W64-MINGW32 system include: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\INCLUDE\C++\13.1.0\BACKWARD system include: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\LIB\GCC\X86_64-W64-MINGW32\13.1.0\INCLUDE system include: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\INCLUDE system include: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\LIB\GCC\X86_64-W64-MINGW32\13.1.0\INCLUDE-FIXED system include: S:\ENVIRONMENT\COMPILERS\MINGW64_11.0.0_GCC_13.1.0_CLANG_16.0.5_MSVCRT\X86_64-W64-MINGW32\INCLUDE define: __DBL_MIN_EXP__=(-1021) define: __UINT_LEAST16_MAX__=0xffff define: __FLT16_HAS_QUIET_NAN__=1 define: __ATOMIC_ACQUIRE=2 define: __FLT128_MAX_10_EXP__=4932 define: __FLT_MIN__=1.17549435082228750796873653722224568e-38F define: __GCC_IEC_559_COMPLEX=2 define: __UINT_LEAST8_TYPE__=unsigned char define: __SIZEOF_FLOAT80__=16 define: __BFLT16_DENORM_MIN__=9.18354961579912115600575419704879436e-41BF16 define: __INTMAX_C(c)=c ## LL define: __CHAR_BIT__=8 define: __MINGW32__=1 define: __UINT8_MAX__=0xff define: __SCHAR_WIDTH__=8 define: _WIN64=1 define: __WINT_MAX__=0xffff define: __FLT32_MIN_EXP__=(-125) define: __BFLT16_MIN_10_EXP__=(-37) define: __ORDER_LITTLE_ENDIAN__=1234 define: __WCHAR_MAX__=0xffff define: __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2=1 define: __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4=1 define: __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8=1 define: __GCC_ATOMIC_CHAR_LOCK_FREE=2 define: __GCC_IEC_559=2 define: __FLT32X_DECIMAL_DIG__=17 define: __FLT_EVAL_METHOD__=0 define: __FLT64_DECIMAL_DIG__=17 define: __GCC_ATOMIC_CHAR32_T_LOCK_FREE=2 define: __UINT_FAST64_MAX__=0xffffffffffffffffULL define: __SIG_ATOMIC_TYPE__=int define: __DBL_MIN_10_EXP__=(-307) define: __FINITE_MATH_ONLY__=0 define: __FLT32X_MAX_EXP__=1024 define: __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1=1 define: __FLT32_HAS_DENORM__=1 define: __UINT_FAST8_MAX__=0xff define: _stdcall=__attribute__((__stdcall__)) define: __DEC64_MAX_EXP__=385 define: __INT8_C(c)=c define: __LDBL_HAS_INFINITY__=1 define: __INT_LEAST8_WIDTH__=8 define: __UINT_LEAST64_MAX__=0xffffffffffffffffULL define: __INT_LEAST8_MAX__=0x7f define: __SHRT_MAX__=0x7fff define: __LDBL_MAX__=1.18973149535723176502126385303097021e+4932L define: __FLT64X_MAX_10_EXP__=4932 define: __BFLT16_MAX_10_EXP__=38 define: __BFLT16_MAX_EXP__=128 define: __LDBL_IS_IEC_60559__=1 define: __FLT64X_HAS_QUIET_NAN__=1 define: __UINT_LEAST8_MAX__=0xff define: __GCC_ATOMIC_BOOL_LOCK_FREE=2 define: __FLT128_DENORM_MIN__=6.47517511943802511092443895822764655e-4966F128 define: __UINTMAX_TYPE__=long long unsigned int define: __BFLT16_DECIMAL_DIG__=4 define: __DEC32_EPSILON__=1E-6DF define: __FLT_EVAL_METHOD_TS_18661_3__=0 define: __OPTIMIZE__=1 define: __UINT32_MAX__=0xffffffffU define: __GXX_EXPERIMENTAL_CXX0X__=1 define: __DBL_DENORM_MIN__=double(4.94065645841246544176568792868221372e-324L) define: __FLT128_MIN_EXP__=(-16381) define: __WINT_MIN__=0 define: __FLT128_MIN_10_EXP__=(-4931) define: __FLT32X_IS_IEC_60559__=1 define: __INT_LEAST16_WIDTH__=16 define: __SCHAR_MAX__=0x7f define: __FLT128_MANT_DIG__=113 define: __WCHAR_MIN__=0 define: __INT64_C(c)=c ## LL define: __GCC_ATOMIC_POINTER_LOCK_FREE=2 define: __ATOMIC_SEQ_CST=5 define: __INT_LEAST64_MAX__=0x7fffffffffffffffLL define: __FLT32X_MANT_DIG__=53 define: __GCC_ATOMIC_CHAR16_T_LOCK_FREE=2 define: __FLT32_MAX_10_EXP__=38 define: __FLT64X_EPSILON__=1.08420217248550443400745280086994171e-19F64x define: __STDC_HOSTED__=1 define: __DEC64_MIN_EXP__=(-382) define: __WIN64=1 define: __DBL_DIG__=15 define: __FLT_EPSILON__=1.19209289550781250000000000000000000e-7F define: __GXX_WEAK__=1 define: __SHRT_WIDTH__=16 define: __FLT32_IS_IEC_60559__=1 define: __LDBL_MIN__=3.36210314311209350626267781732175260e-4932L define: __DBL_IS_IEC_60559__=1 define: __DEC32_MAX__=9.999999E96DF define: __CHAR8_TYPE__=unsigned char define: __FLT64X_DENORM_MIN__=3.64519953188247460252840593361941982e-4951F64x define: __FLT32X_HAS_INFINITY__=1 define: __INT_WIDTH__=32 define: __GCC_ATOMIC_CHAR8_T_LOCK_FREE=2 define: __DECIMAL_DIG__=21 define: __FLT64_EPSILON__=2.22044604925031308084726333618164062e-16F64 define: __INT16_MAX__=0x7fff define: __FLT64_MIN_EXP__=(-1021) define: __FLT64X_MIN_10_EXP__=(-4931) define: __LDBL_HAS_QUIET_NAN__=1 define: __FLT16_MIN_EXP__=(-13) define: __FLT64_MANT_DIG__=53 define: _REENTRANT=1 define: __FLT64X_MANT_DIG__=64 define: __BFLT16_DIG__=2 define: __GNUC__=13 define: _cdecl=__attribute__((__cdecl__)) define: __GXX_RTTI=1 define: __MMX__=1 define: __FLT_HAS_DENORM__=1 define: __SIZEOF_LONG_DOUBLE__=16 define: __BIGGEST_ALIGNMENT__=16 define: __STDC_UTF_16__=1 define: __SIZE_TYPE__=long long unsigned int define: __FLT64_MAX_10_EXP__=308 define: __BFLT16_IS_IEC_60559__=0 define: __FLT16_MAX_10_EXP__=4 define: __DBL_MAX__=double(1.79769313486231570814527423731704357e+308L) define: _thiscall=__attribute__((__thiscall__)) define: __INT_FAST32_MAX__=0x7fffffff define: __DBL_HAS_INFINITY__=1 define: __INT64_MAX__=0x7fffffffffffffffLL define: __SIZEOF_FLOAT__=4 define: __WINNT__=1 define: __HAVE_SPECULATION_SAFE_VALUE=1 define: __DEC32_MIN_EXP__=(-94) define: __INTPTR_WIDTH__=64 define: __UINT_LEAST32_MAX__=0xffffffffU define: __FLT32X_HAS_DENORM__=1 define: __INT_FAST16_TYPE__=short int define: __MMX_WITH_SSE__=1 define: _fastcall=__attribute__((__fastcall__)) define: __LDBL_HAS_DENORM__=1 define: __SEG_GS=1 define: __BFLT16_EPSILON__=7.81250000000000000000000000000000000e-3BF16 define: __cplusplus=202002L define: __DEC32_MIN__=1E-95DF define: __DEPRECATED=1 define: __DBL_MAX_EXP__=1024 define: __WCHAR_WIDTH__=16 define: __FLT32_MAX__=3.40282346638528859811704183484516925e+38F32 define: __DEC128_EPSILON__=1E-33DL define: __FLT16_DECIMAL_DIG__=5 define: __SSE2_MATH__=1 define: __ATOMIC_HLE_RELEASE=131072 define: __WIN32__=1 define: __PTRDIFF_MAX__=0x7fffffffffffffffLL define: __amd64=1 define: __ATOMIC_HLE_ACQUIRE=65536 define: __GNUG__=13 define: __LONG_LONG_MAX__=0x7fffffffffffffffLL define: __SIZEOF_SIZE_T__=8 define: __BFLT16_HAS_INFINITY__=1 define: __FLT64X_MIN_EXP__=(-16381) define: __SIZEOF_WINT_T__=2 define: __FLT32X_DIG__=15 define: __LONG_LONG_WIDTH__=64 define: __FLT32_MAX_EXP__=128 define: __GXX_ABI_VERSION=1018 define: __FLT_MIN_EXP__=(-125) define: __x86_64=1 define: __INT_FAST64_TYPE__=long long int define: __BFLT16_MAX__=3.38953138925153547590470800371487867e+38BF16 define: __FLT64_DENORM_MIN__=4.94065645841246544176568792868221372e-324F64 define: __FLT16_DENORM_MIN__=5.96046447753906250000000000000000000e-8F16 define: __FLT128_EPSILON__=1.92592994438723585305597794258492732e-34F128 define: __FLT64X_NORM_MAX__=1.18973149535723176502126385303097021e+4932F64x define: __SIZEOF_POINTER__=8 define: __DBL_HAS_QUIET_NAN__=1 define: __FLT32X_EPSILON__=2.22044604925031308084726333618164062e-16F32x define: __LDBL_MAX_EXP__=16384 define: __DECIMAL_BID_FORMAT__=1 define: __GXX_TYPEINFO_EQUALITY_INLINE=0 define: __FLT64_MIN_10_EXP__=(-307) define: __FLT16_MIN_10_EXP__=(-4) define: __FLT64X_DECIMAL_DIG__=21 define: __DEC128_MIN__=1E-6143DL define: __REGISTER_PREFIX__= define: __UINT16_MAX__=0xffff define: __cdecl=__attribute__((__cdecl__)) define: __FLT128_HAS_INFINITY__=1 define: __FLT32_MIN__=1.17549435082228750796873653722224568e-38F32 define: __UINT8_TYPE__=unsigned char define: __FLT_DIG__=6 define: __DEC_EVAL_METHOD__=2 define: __FLT_MANT_DIG__=24 define: __LDBL_DECIMAL_DIG__=21 define: __VERSION__="13.1.0" define: __UINT64_C(c)=c ## ULL define: _WIN32=1 define: __SEH__=1 define: __INT_LEAST32_MAX__=0x7fffffff define: __GCC_ATOMIC_INT_LOCK_FREE=2 define: __FLT128_MAX_EXP__=16384 define: __FLT32_MANT_DIG__=24 define: __FLOAT_WORD_ORDER__=__ORDER_LITTLE_ENDIAN__ define: __FLT32X_MIN_EXP__=(-1021) define: __BFLT16_MIN__=1.17549435082228750796873653722224568e-38BF16 define: __FLT128_HAS_DENORM__=1 define: __FLT32_DECIMAL_DIG__=9 define: __FLT128_DIG__=33 define: _INTEGRAL_MAX_BITS=64 define: __INT32_C(c)=c define: __DEC64_EPSILON__=1E-15DD define: __ORDER_PDP_ENDIAN__=3412 define: __DEC128_MIN_EXP__=(-6142) define: __DEC128_MAX__=9.999999999999999999999999999999999E6144DL define: __INT_FAST32_TYPE__=int define: __UINT_LEAST16_TYPE__=short unsigned int define: __DEC128_MAX_EXP__=6145 define: __DBL_HAS_DENORM__=1 define: __UINT64_MAX__=0xffffffffffffffffULL define: __FLT_IS_IEC_60559__=1 define: __GNUC_WIDE_EXECUTION_CHARSET_NAME="UTF-16LE" define: __FLT64X_DIG__=18 define: __INT8_TYPE__=signed char define: __GCC_ASM_FLAG_OUTPUTS__=1 define: __UINT32_TYPE__=unsigned int define: __BFLT16_HAS_QUIET_NAN__=1 define: __FLT_RADIX__=2 define: __INT_LEAST16_TYPE__=short int define: __LDBL_EPSILON__=1.08420217248550443400745280086994171e-19L define: __UINTMAX_C(c)=c ## ULL define: __FLT16_DIG__=3 define: __k8=1 define: __FLT32X_MIN__=2.22507385850720138309023271733240406e-308F32x define: __SIG_ATOMIC_MAX__=0x7fffffff define: __GCC_ATOMIC_WCHAR_T_LOCK_FREE=2 define: __USER_LABEL_PREFIX__= define: __SIZEOF_PTRDIFF_T__=8 define: __FLT64X_HAS_INFINITY__=1 define: __SIZEOF_LONG__=4 define: __LDBL_DIG__=18 define: __FLT64_IS_IEC_60559__=1 define: __x86_64__=1 define: __FLT16_IS_IEC_60559__=1 define: __FLT16_MAX_EXP__=16 define: __DEC32_SUBNORMAL_MIN__=0.000001E-95DF define: __MSVCRT__=1 define: __INT_FAST16_MAX__=0x7fff define: __GCC_CONSTRUCTIVE_SIZE=64 define: __FLT64_DIG__=15 define: __UINT_FAST32_MAX__=0xffffffffU define: __UINT_LEAST64_TYPE__=long long unsigned int define: __FLT16_EPSILON__=9.76562500000000000000000000000000000e-4F16 define: __FLT_HAS_QUIET_NAN__=1 define: __FLT_MAX_10_EXP__=38 define: __LONG_MAX__=0x7fffffffL define: __FLT64X_HAS_DENORM__=1 define: __DEC128_SUBNORMAL_MIN__=0.000000000000000000000000000000001E-6143DL define: __FLT_HAS_INFINITY__=1 define: __GNUC_EXECUTION_CHARSET_NAME="UTF-8" define: __UINT_FAST16_TYPE__=short unsigned int define: __DEC64_MAX__=9.999999999999999E384DD define: __INT_FAST32_WIDTH__=32 define: __CHAR16_TYPE__=short unsigned int define: __PRAGMA_REDEFINE_EXTNAME=1 define: __SIZE_WIDTH__=64 define: __SEG_FS=1 define: __INT_LEAST16_MAX__=0x7fff define: __FLT16_NORM_MAX__=6.55040000000000000000000000000000000e+4F16 define: __DEC64_MANT_DIG__=16 define: __FLT32_DENORM_MIN__=1.40129846432481707092372958328991613e-45F32 define: __SIG_ATOMIC_WIDTH__=32 define: __INT_LEAST64_TYPE__=long long int define: __INT16_TYPE__=short int define: __INT_LEAST8_TYPE__=signed char define: __FLT16_MAX__=6.55040000000000000000000000000000000e+4F16 define: __FLT128_MIN__=3.36210314311209350626267781732175260e-4932F128 define: __SIZEOF_INT__=4 define: __DEC32_MAX_EXP__=97 define: __INT_FAST8_MAX__=0x7f define: __FLT128_MAX__=1.18973149535723176508575932662800702e+4932F128 define: __INTPTR_MAX__=0x7fffffffffffffffLL define: __WIN64__=1 define: __FLT64_HAS_QUIET_NAN__=1 define: __stdcall=__attribute__((__stdcall__)) define: __FLT32_MIN_10_EXP__=(-37) define: __EXCEPTIONS=1 define: __GXX_MERGED_TYPEINFO_NAMES=0 define: __UINT16_C(c)=c define: __PTRDIFF_WIDTH__=64 define: __LDBL_MANT_DIG__=64 define: __INT_FAST16_WIDTH__=16 define: __FLT64_HAS_INFINITY__=1 define: __FLT64X_MAX__=1.18973149535723176502126385303097021e+4932F64x define: __FLT16_HAS_INFINITY__=1 define: __STDCPP_DEFAULT_NEW_ALIGNMENT__=16 define: __SIG_ATOMIC_MIN__=(-__SIG_ATOMIC_MAX__ - 1) define: __GCC_ATOMIC_LONG_LOCK_FREE=2 define: __DEC32_MANT_DIG__=7 define: __k8__=1 define: __INTPTR_TYPE__=long long int define: __UINT16_TYPE__=short unsigned int define: __WCHAR_TYPE__=short unsigned int define: __pic__=1 define: __UINTPTR_MAX__=0xffffffffffffffffULL define: __INT_FAST64_WIDTH__=64 define: __INT_FAST64_MAX__=0x7fffffffffffffffLL define: __GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1 define: __FLT_NORM_MAX__=3.40282346638528859811704183484516925e+38F define: __FLT32_HAS_INFINITY__=1 define: __FLT64X_MAX_EXP__=16384 define: __UINT_FAST64_TYPE__=long long unsigned int define: __BFLT16_MIN_EXP__=(-125) define: __INT_MAX__=0x7fffffff define: WIN32=1 define: __code_model_medium__=1 define: __INT64_TYPE__=long long int define: __FLT_MAX_EXP__=128 define: WIN64=1 define: __ORDER_BIG_ENDIAN__=4321 define: __DBL_MANT_DIG__=53 define: __SIZEOF_FLOAT128__=16 define: __BFLT16_MANT_DIG__=8 define: __DEC64_MIN__=1E-383DD define: __WINT_TYPE__=short unsigned int define: __UINT_LEAST32_TYPE__=unsigned int define: __SIZEOF_SHORT__=2 define: __FLT32_NORM_MAX__=3.40282346638528859811704183484516925e+38F32 define: __SSE__=1 define: __LDBL_MIN_EXP__=(-16381) define: __FLT64_MAX__=1.79769313486231570814527423731704357e+308F64 define: __amd64__=1 define: __WINT_WIDTH__=16 define: __INT_LEAST64_WIDTH__=64 define: __FLT32X_MAX_10_EXP__=308 define: __WIN32=1 define: __SIZEOF_INT128__=16 define: __FLT16_MIN__=6.10351562500000000000000000000000000e-5F16 define: __FLT64X_IS_IEC_60559__=1 define: __WCHAR_UNSIGNED__=1 define: __LDBL_MAX_10_EXP__=4932 define: __ATOMIC_RELAXED=0 define: __DBL_EPSILON__=double(2.22044604925031308084726333618164062e-16L) define: __INT_LEAST32_TYPE__=int define: __thiscall=__attribute__((__thiscall__)) define: __UINT8_C(c)=c define: __FLT64_MAX_EXP__=1024 define: __SIZEOF_WCHAR_T__=2 define: __GNUC_PATCHLEVEL__=0 define: __WINNT=1 define: __FLT128_NORM_MAX__=1.18973149535723176508575932662800702e+4932F128 define: __FLT64_NORM_MAX__=1.79769313486231570814527423731704357e+308F64 define: __FLT128_HAS_QUIET_NAN__=1 define: __INTMAX_MAX__=0x7fffffffffffffffLL define: __INT_FAST8_TYPE__=signed char define: __fastcall=__attribute__((__fastcall__)) define: __FLT64X_MIN__=3.36210314311209350626267781732175260e-4932F64x define: __STDCPP_THREADS__=1 define: __BFLT16_HAS_DENORM__=1 define: __GNUC_STDC_INLINE__=1 define: __FLT64_HAS_DENORM__=1 define: __FLT32_EPSILON__=1.19209289550781250000000000000000000e-7F32 define: __FLT16_HAS_DENORM__=1 define: __DBL_DECIMAL_DIG__=17 define: __STDC_UTF_32__=1 define: __INT_FAST8_WIDTH__=8 define: __FXSR__=1 define: __FLT32X_MAX__=1.79769313486231570814527423731704357e+308F32x define: __DBL_NORM_MAX__=double(1.79769313486231570814527423731704357e+308L) define: __BYTE_ORDER__=__ORDER_LITTLE_ENDIAN__ define: __MINGW64__=1 define: __GCC_DESTRUCTIVE_SIZE=64 define: __INTMAX_WIDTH__=64 define: __FLT32_DIG__=6 define: __UINT64_TYPE__=long long unsigned int define: __UINT32_C(c)=c ## U define: WINNT=1 define: __FLT_DENORM_MIN__=1.40129846432481707092372958328991613e-45F define: __FLT128_IS_IEC_60559__=1 define: __INT8_MAX__=0x7f define: __LONG_WIDTH__=32 define: __DBL_MIN__=double(2.22507385850720138309023271733240406e-308L) define: __PIC__=1 define: __INT32_MAX__=0x7fffffff define: __UINT_FAST32_TYPE__=unsigned int define: __FLT16_MANT_DIG__=11 define: __FLT32X_NORM_MAX__=1.79769313486231570814527423731704357e+308F32x define: __CHAR32_TYPE__=unsigned int define: __FLT_MAX__=3.40282346638528859811704183484516925e+38F define: __SSE2__=1 define: __BFLT16_NORM_MAX__=3.38953138925153547590470800371487867e+38BF16 define: __INT32_TYPE__=int define: __SIZEOF_DOUBLE__=8 define: __FLT_MIN_10_EXP__=(-37) define: __FLT64_MIN__=2.22507385850720138309023271733240406e-308F64 define: __INT_LEAST32_WIDTH__=32 define: __INTMAX_TYPE__=long long int define: __GLIBCXX_BITSIZE_INT_N_0=128 define: __FLT32X_HAS_QUIET_NAN__=1 define: __ATOMIC_CONSUME=1 define: __GNUC_MINOR__=1 define: __GLIBCXX_TYPE_INT_N_0=__int128 define: __UINTMAX_MAX__=0xffffffffffffffffULL define: __FLT32X_DENORM_MIN__=4.94065645841246544176568792868221372e-324F32x define: __DBL_MAX_10_EXP__=308 define: __LDBL_DENORM_MIN__=3.64519953188247460252840593361941982e-4951L define: __INT16_C(c)=c define: __STDC__=1 define: __PTRDIFF_TYPE__=long long int define: __FLT32X_MIN_10_EXP__=(-307) define: __UINTPTR_TYPE__=long long unsigned int define: __DEC64_SUBNORMAL_MIN__=0.000000000000001E-383DD define: __DEC128_MANT_DIG__=34 define: __LDBL_MIN_10_EXP__=(-4931) define: __SSE_MATH__=1 define: __SIZEOF_LONG_LONG__=8 define: __FLT128_DECIMAL_DIG__=36 define: __GCC_ATOMIC_LLONG_LOCK_FREE=2 define: __FLT32_HAS_QUIET_NAN__=1 define: __FLT_DECIMAL_DIG__=9 define: __UINT_FAST16_MAX__=0xffff define: __LDBL_NORM_MAX__=1.18973149535723176502126385303097021e+4932L define: __GCC_ATOMIC_SHORT_LOCK_FREE=2 define: __SIZE_MAX__=0xffffffffffffffffULL define: __UINT_FAST8_TYPE__=unsigned char define: __ATOMIC_ACQ_REL=4 define: __ATOMIC_RELEASE=3 define: __declspec(x)=__attribute__((x)) define: GLFW_INCLUDE_NONE define: SPDLOG_SOURCE_LOCATION define: SPDLOG_USE_STD_FORMAT define: NDEBUG other: --g++ other: --gnu_version=130100 stdver: c++20 intelliSenseMode: windows-gcc-x64 LSP: (received) cpptools/getDocumentSymbols: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 13) LSP: (invoked) cpptools/getDocumentSymbols: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 13) LSP: Sending response (id: 13) LSP: (received) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 14) LSP: (invoked) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 14) LSP: Sending response (id: 14) LSP: $/cancelRequest (, id: 14) LSP: (received) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 15) LSP: (invoked) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 15) LSP: Sending response (id: 15) LSP: (received) cpptools/getDocumentSymbols: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 16) LSP: (invoked) cpptools/getDocumentSymbols: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 16) LSP: Sending response (id: 16) LSP: Message ignored due to no registered handler: $/setTrace LSP: (received) cpptools/didChangeSettings LSP: (invoked) cpptools/didChangeSettings Autocomplete is enabled. Error squiggles are enabled if all header dependencies are resolved. Hover is enabled. The extension will use the Tag Parser for IntelliSense when #includes don't resolve. IntelliSense Engine = default. Enhanced Colorization is enabled. LSP: (received) cpptools/getDocumentSymbols: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 17) LSP: (invoked) cpptools/getDocumentSymbols: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 17) LSP: (received) cpptools/getFoldingRanges: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 18) LSP: (invoked) cpptools/getFoldingRanges: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 18) LSP: Sending response (id: 18) LSP: (received) cpptools/pauseCodeAnalysis LSP: (invoked) cpptools/pauseCodeAnalysis Update IntelliSense time (sec): 1.368 LSP: Sending response (id: 17) LSP: (received) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 19) LSP: (invoked) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 19) LSP: Sending response (id: 19) LSP: $/cancelRequest (, id: 19) LSP: (received) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 20) LSP: (invoked) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 20) LSP: $/cancelRequest (cpptools/getCodeActions, id: 20) LSP: (received) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 21) LSP: (invoked) cpptools/getCodeActions: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 21) LSP: Sending response (id: 21) LSP: (received) cpptools/getFoldingRanges: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 22) LSP: (invoked) cpptools/getFoldingRanges: file:///s%3A/Code/CPP/monoshot/src/engine/module/renderer/opengl/include/opengl/renderer/RenderPass.hpp (id: 22) LSP: Sending response (id: 22) LSP: (received) cpptools/resumeCodeAnalysis LSP: (invoked) cpptools/resumeCodeAnalysis Database safe to open. ```
vis4rd commented 1 month ago

I will also include screenshot of CMake Tools configuration UI and generated by CMake compile_commands.json as it seems relevant.

cmake_tools_ui

compile_commands.json ```json [ { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/render_interface_test.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\render_interface_test.dir\\main.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\render_interface_test\\main.cpp", "file": "S:/Code/CPP/monoshot/src/render_interface_test/main.cpp", "output": "src/render_interface_test/CMakeFiles/render_interface_test.dir/main.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/render_interface_test.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\render_interface_test.dir\\__\\engine\\module\\renderer\\src\\Renderer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\src\\Renderer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/src/Renderer.cpp", "output": "src/render_interface_test/CMakeFiles/render_interface_test.dir/__/engine/module/renderer/src/Renderer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe @CMakeFiles/glad.dir/includes_C.rsp -O3 -DNDEBUG -o CMakeFiles\\glad.dir\\gladsources\\glad\\src\\gl.c.obj -c S:\\Code\\CPP\\monoshot\\build\\src\\render_interface_test\\engine\\gladsources\\glad\\src\\gl.c", "file": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/gladsources/glad/src/gl.c", "output": "src/render_interface_test/engine/CMakeFiles/glad.dir/gladsources/glad/src/gl.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\context.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\context.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/context.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/context.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\init.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\init.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/init.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/init.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\input.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\input.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/input.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/input.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\monitor.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\monitor.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/monitor.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/monitor.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\vulkan.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\vulkan.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/vulkan.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/vulkan.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\window.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\window.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/window.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/window.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\win32_init.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\win32_init.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/win32_init.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/win32_init.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\win32_joystick.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\win32_joystick.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/win32_joystick.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/win32_joystick.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\win32_monitor.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\win32_monitor.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/win32_monitor.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/win32_monitor.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\win32_time.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\win32_time.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/win32_time.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/win32_time.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\win32_thread.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\win32_thread.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/win32_thread.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/win32_thread.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\win32_window.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\win32_window.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/win32_window.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/win32_window.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\wgl_context.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\wgl_context.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/wgl_context.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/wgl_context.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\egl_context.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\egl_context.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/egl_context.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/egl_context.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/glfw/src", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -DUNICODE -DWINVER=0x0501 -D_GLFW_USE_CONFIG_H -D_UNICODE @CMakeFiles/glfw.dir/includes_C.rsp -O3 -DNDEBUG -std=gnu99 -Wall -Wdeclaration-after-statement -o CMakeFiles\\glfw.dir\\osmesa_context.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\glfw\\src\\osmesa_context.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/glfw/src/osmesa_context.c", "output": "src/render_interface_test/engine/lib/glfw/src/CMakeFiles/glfw.dir/osmesa_context.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/imgui", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\imgui.dir\\imgui\\imgui.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\imgui\\imgui\\imgui.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/imgui/imgui/imgui.cpp", "output": "src/render_interface_test/engine/lib/imgui/CMakeFiles/imgui.dir/imgui/imgui.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/imgui", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\imgui.dir\\imgui\\imgui_demo.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\imgui\\imgui\\imgui_demo.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/imgui/imgui/imgui_demo.cpp", "output": "src/render_interface_test/engine/lib/imgui/CMakeFiles/imgui.dir/imgui/imgui_demo.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/imgui", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\imgui.dir\\imgui\\imgui_draw.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\imgui\\imgui\\imgui_draw.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/imgui/imgui/imgui_draw.cpp", "output": "src/render_interface_test/engine/lib/imgui/CMakeFiles/imgui.dir/imgui/imgui_draw.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/imgui", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\imgui.dir\\imgui\\imgui_tables.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\imgui\\imgui\\imgui_tables.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/imgui/imgui/imgui_tables.cpp", "output": "src/render_interface_test/engine/lib/imgui/CMakeFiles/imgui.dir/imgui/imgui_tables.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/imgui", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\imgui.dir\\imgui\\imgui_widgets.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\imgui\\imgui\\imgui_widgets.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/imgui/imgui/imgui_widgets.cpp", "output": "src/render_interface_test/engine/lib/imgui/CMakeFiles/imgui.dir/imgui/imgui_widgets.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/imgui", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE @CMakeFiles/imgui_backend_glfw.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\imgui_backend_glfw.dir\\imgui\\backends\\imgui_impl_glfw.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\imgui\\imgui\\backends\\imgui_impl_glfw.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/imgui/imgui/backends/imgui_impl_glfw.cpp", "output": "src/render_interface_test/engine/lib/imgui/CMakeFiles/imgui_backend_glfw.dir/imgui/backends/imgui_impl_glfw.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/imgui", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE @CMakeFiles/imgui_backend_glfw.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\imgui_backend_glfw.dir\\imgui\\backends\\imgui_impl_opengl3.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\imgui\\imgui\\backends\\imgui_impl_opengl3.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/imgui/imgui/backends/imgui_impl_opengl3.cpp", "output": "src/render_interface_test/engine/lib/imgui/CMakeFiles/imgui_backend_glfw.dir/imgui/backends/imgui_impl_opengl3.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\async_logger.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\async_logger.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/async_logger.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/async_logger.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\common.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\common.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/common.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/common.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\logger.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\logger.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/logger.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/logger.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\pattern_formatter.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\pattern_formatter.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/pattern_formatter.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/pattern_formatter.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\spdlog.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\spdlog.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/spdlog.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/spdlog.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\cfg\\helpers.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\cfg\\helpers.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/cfg/helpers.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/cfg/helpers.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\details\\file_helper.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\details\\file_helper.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/details/file_helper.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/details/file_helper.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\details\\log_msg.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\details\\log_msg.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/details/log_msg.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/details/log_msg.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\details\\log_msg_buffer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\details\\log_msg_buffer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/details/log_msg_buffer.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/details/log_msg_buffer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\details\\os.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\details\\os.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/details/os.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/details/os.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\details\\periodic_worker.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\details\\periodic_worker.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/details/periodic_worker.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/details/periodic_worker.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\details\\registry.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\details\\registry.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/details/registry.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/details/registry.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\details\\thread_pool.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\details\\thread_pool.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/details/thread_pool.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/details/thread_pool.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\sinks\\ansicolor_sink.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\sinks\\ansicolor_sink.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/sinks/ansicolor_sink.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/sinks/ansicolor_sink.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\sinks\\base_sink.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\sinks\\base_sink.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/sinks/base_sink.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/sinks/base_sink.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\sinks\\basic_file_sink.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\sinks\\basic_file_sink.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/sinks/basic_file_sink.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/sinks/basic_file_sink.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\sinks\\rotating_file_sink.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\sinks\\rotating_file_sink.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/sinks/rotating_file_sink.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/sinks/rotating_file_sink.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\sinks\\sink.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\sinks\\sink.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/sinks/sink.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/sinks/sink.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\sinks\\stdout_color_sinks.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\sinks\\stdout_color_sinks.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/sinks/stdout_color_sinks.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/sinks/stdout_color_sinks.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\sinks\\stdout_sinks.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\sinks\\stdout_sinks.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/sinks/stdout_sinks.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/sinks/stdout_sinks.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/spdlog", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/spdlog.dir/includes_CXX.rsp -O3 -DNDEBUG -std=c++20 -o CMakeFiles\\spdlog.dir\\src\\sinks\\wincolor_sink.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\spdlog\\src\\sinks\\wincolor_sink.cpp", "file": "S:/Code/CPP/monoshot/src/engine/lib/spdlog/src/sinks/wincolor_sink.cpp", "output": "src/render_interface_test/engine/lib/spdlog/CMakeFiles/spdlog.dir/src/sinks/wincolor_sink.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/stb_image", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -O3 -DNDEBUG -o CMakeFiles\\stb_image.dir\\include\\stbi\\stb_image.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\stb_image\\include\\stbi\\stb_image.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/stb_image/include/stbi/stb_image.c", "output": "src/render_interface_test/engine/lib/stb_image/CMakeFiles/stb_image.dir/include/stbi/stb_image.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/lib/tinyfiledialogs", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\gcc.exe -O3 -DNDEBUG -o CMakeFiles\\tinyfd.dir\\tinyfiledialogs\\tinyfiledialogs.c.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\lib\\tinyfiledialogs\\tinyfiledialogs\\tinyfiledialogs.c", "file": "S:/Code/CPP/monoshot/src/engine/lib/tinyfiledialogs/tinyfiledialogs/tinyfiledialogs.c", "output": "src/render_interface_test/engine/lib/tinyfiledialogs/CMakeFiles/tinyfd.dir/tinyfiledialogs/tinyfiledialogs.c.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/input", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_input.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_input.dir\\src\\InputManager.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\input\\src\\InputManager.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/input/src/InputManager.cpp", "output": "src/render_interface_test/engine/module/input/CMakeFiles/mono_module_input.dir/src/InputManager.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/input", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_input.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_input.dir\\src\\Keybind.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\input\\src\\Keybind.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/input/src/Keybind.cpp", "output": "src/render_interface_test/engine/module/input/CMakeFiles/mono_module_input.dir/src/Keybind.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/input", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_input.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_input.dir\\src\\KeyGroup.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\input\\src\\KeyGroup.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/input/src/KeyGroup.cpp", "output": "src/render_interface_test/engine/module/input/CMakeFiles/mono_module_input.dir/src/KeyGroup.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer.dir\\src\\Renderer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\src\\Renderer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/src/Renderer.cpp", "output": "src/render_interface_test/engine/module/renderer/CMakeFiles/mono_module_renderer.dir/src/Renderer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\gl\\ElementBuffer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\gl\\ElementBuffer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/gl/ElementBuffer.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/gl/ElementBuffer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\gl\\FrameBuffer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\gl\\FrameBuffer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/gl/FrameBuffer.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/gl/FrameBuffer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\gl\\ShaderAttribute.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\gl\\ShaderAttribute.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/gl/ShaderAttribute.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/gl/ShaderAttribute.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\gl\\ShaderAttributeLayout.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\gl\\ShaderAttributeLayout.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/gl/ShaderAttributeLayout.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/gl/ShaderAttributeLayout.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\gl\\ShaderStorageBufferAny.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\gl\\ShaderStorageBufferAny.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/gl/ShaderStorageBufferAny.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/gl/ShaderStorageBufferAny.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\gl\\VertexArray.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\gl\\VertexArray.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/gl/VertexArray.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/gl/VertexArray.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\gl\\VertexBuffer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\gl\\VertexBuffer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/gl/VertexBuffer.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/gl/VertexBuffer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\glfw\\RenderWindowUserStorage.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\glfw\\RenderWindowUserStorage.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/glfw/RenderWindowUserStorage.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/glfw/RenderWindowUserStorage.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\renderer\\RenderPass.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\renderer\\RenderPass.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/renderer/RenderPass.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/renderer/RenderPass.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\renderer\\RenderPipeline.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\renderer\\RenderPipeline.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/renderer/RenderPipeline.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/renderer/RenderPipeline.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\renderer\\RenderStorage.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\renderer\\RenderStorage.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/renderer/RenderStorage.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/renderer/RenderStorage.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\renderer\\Renderer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\renderer\\Renderer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/renderer/Renderer.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/renderer/Renderer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\shader\\Shader.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\shader\\Shader.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/shader/Shader.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/shader/Shader.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\shader\\ShaderManager.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\shader\\ShaderManager.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/shader/ShaderManager.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/shader/ShaderManager.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\shader\\ShaderProgram.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\shader\\ShaderProgram.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/shader/ShaderProgram.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/shader/ShaderProgram.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\target\\RenderTarget.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\target\\RenderTarget.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/target/RenderTarget.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/target/RenderTarget.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\target\\RenderWindow.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\target\\RenderWindow.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/target/RenderWindow.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/target/RenderWindow.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\texture\\Animation.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\texture\\Animation.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/texture/Animation.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/texture/Animation.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\src\\texture\\Texture.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\opengl\\src\\texture\\Texture.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/opengl/src/texture/Texture.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/src/texture/Texture.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/renderer/opengl", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_renderer_opengl_backend.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_renderer_opengl_backend.dir\\__\\src\\Renderer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\src\\Renderer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/src/Renderer.cpp", "output": "src/render_interface_test/engine/module/renderer/opengl/CMakeFiles/mono_module_renderer_opengl_backend.dir/__/src/Renderer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/camera", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe @CMakeFiles/mono_module_camera.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_camera.dir\\src\\Camera.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\camera\\src\\Camera.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/camera/src/Camera.cpp", "output": "src/render_interface_test/engine/module/camera/CMakeFiles/mono_module_camera.dir/src/Camera.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/camera", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe @CMakeFiles/mono_module_camera.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_camera.dir\\src\\PerspectiveCamera.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\camera\\src\\PerspectiveCamera.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/camera/src/PerspectiveCamera.cpp", "output": "src/render_interface_test/engine/module/camera/CMakeFiles/mono_module_camera.dir/src/PerspectiveCamera.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/section", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_section.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_section.dir\\src\\SectionManager.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\section\\src\\SectionManager.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/section/src/SectionManager.cpp", "output": "src/render_interface_test/engine/module/section/CMakeFiles/mono_module_section.dir/src/SectionManager.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/section", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_section.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_section.dir\\src\\Section.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\section\\src\\Section.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/section/src/Section.cpp", "output": "src/render_interface_test/engine/module/section/CMakeFiles/mono_module_section.dir/src/Section.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/section", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_section.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_section.dir\\__\\renderer\\src\\Renderer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\src\\Renderer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/src/Renderer.cpp", "output": "src/render_interface_test/engine/module/section/CMakeFiles/mono_module_section.dir/__/renderer/src/Renderer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/log", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_log.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_log.dir\\src\\Logging.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\log\\src\\Logging.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/log/src/Logging.cpp", "output": "src/render_interface_test/engine/module/log/CMakeFiles/mono_module_log.dir/src/Logging.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/ui", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_ui.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_ui.dir\\src\\Font.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\ui\\src\\Font.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/ui/src/Font.cpp", "output": "src/render_interface_test/engine/module/ui/CMakeFiles/mono_module_ui.dir/src/Font.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/ui", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_ui.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_ui.dir\\src\\external\\BeginCombo.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\ui\\src\\external\\BeginCombo.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/ui/src/external/BeginCombo.cpp", "output": "src/render_interface_test/engine/module/ui/CMakeFiles/mono_module_ui.dir/src/external/BeginCombo.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/ui", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_ui.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_ui.dir\\__\\renderer\\src\\Renderer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\src\\Renderer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/src/Renderer.cpp", "output": "src/render_interface_test/engine/module/ui/CMakeFiles/mono_module_ui.dir/__/renderer/src/Renderer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/resource", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_resource.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_resource.dir\\src\\ResourceManager.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\resource\\src\\ResourceManager.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/resource/src/ResourceManager.cpp", "output": "src/render_interface_test/engine/module/resource/CMakeFiles/mono_module_resource.dir/src/ResourceManager.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/resource", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_resource.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_resource.dir\\__\\renderer\\src\\Renderer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\src\\Renderer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/src/Renderer.cpp", "output": "src/render_interface_test/engine/module/resource/CMakeFiles/mono_module_resource.dir/__/renderer/src/Renderer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/time", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_time.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_time.dir\\src\\Timer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\time\\src\\Timer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/time/src/Timer.cpp", "output": "src/render_interface_test/engine/module/time/CMakeFiles/mono_module_time.dir/src/Timer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/time", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DGLFW_INCLUDE_NONE -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_time.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_time.dir\\__\\renderer\\src\\Renderer.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\renderer\\src\\Renderer.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/renderer/src/Renderer.cpp", "output": "src/render_interface_test/engine/module/time/CMakeFiles/mono_module_time.dir/__/renderer/src/Renderer.cpp.obj" }, { "directory": "S:/Code/CPP/monoshot/build/src/render_interface_test/engine/module/config", "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe -DSPDLOG_SOURCE_LOCATION -DSPDLOG_USE_STD_FORMAT @CMakeFiles/mono_module_config.dir/includes_CXX.rsp -O3 -DNDEBUG -std=gnu++20 -o CMakeFiles\\mono_module_config.dir\\src\\ConfigLoader.cpp.obj -c S:\\Code\\CPP\\monoshot\\src\\engine\\module\\config\\src\\ConfigLoader.cpp", "file": "S:/Code/CPP/monoshot/src/engine/module/config/src/ConfigLoader.cpp", "output": "src/render_interface_test/engine/module/config/CMakeFiles/mono_module_config.dir/src/ConfigLoader.cpp.obj" } ] ```
sean-mcmanus commented 1 month ago

@vis4rd What do you get when you run S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe -O3 -std=c++20 -m64 -Wp,-v -E -dM -x c++ nul. The clang-tidy error seems like it's caused by "C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\VC\TOOLS\MSVC\14.33.31629\ATLMFC\INCLUDE", "C:\PROGRAM FILES\MICROSOFT VISUAL STUDIO\2022\COMMUNITY\VC\TOOLS\MSVC\14.33.31629\INCLUDE" not being in your includePath...it seems like that should be output by your compiler as an includePath? It's possible those includePaths might be getting added from the system environment variables.

vis4rd commented 1 month ago

@sean-mcmanus

I wonder why these MSVC include paths are taken into account...

When I click on the source of the error: obraz

... I get to the cassert header itself, but from MSVC:

obraz

And there when I click on <assert.h>, I am being taken to assert.h from the correct compiler:

obraz

Output of S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe -O3 -std=c++20 -m64 -Wp,-v -E -dM -x c++ nul : ``` PS S:\Code\CPP\monoshot> S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe -O3 -std=c++20 -m64 -Wp,-v -E -dM -x c++ nul ParserError: Line | 1 | … .1.0_clang_16.0.5_msvcrt\bin\g++.exe -O3 -std=c++20 -m64 -Wp,-v -E -d … | ~ | Missing argument in parameter list. PS S:\Code\CPP\monoshot> cmd /c "S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe -O3 -std=c++20 -m64 -Wp,-v -E -dM -x c++ nul" ignoring duplicate directory "S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include/c++/13.1.0" ignoring duplicate directory "S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include/c++/13.1.0/x86_64-w64-mingw32" ignoring duplicate directory "S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include/c++/13.1.0/backward" ignoring duplicate directory "S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include" ignoring nonexistent directory "R:/winlibs64_stage/inst_gcc-13.1.0/share/gcc/include" ignoring nonexistent directory "/R/winlibs64_stage/inst_gcc-13.1.0/share/gcc/include" ignoring duplicate directory "S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed" ignoring duplicate directory "S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/lib/gcc/../../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include" ignoring nonexistent directory "/mingw/include" #include "..." search starts here: #include <...> search starts here: S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include/c++/13.1.0 S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include/c++/13.1.0/x86_64-w64-mingw32 S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include/c++/13.1.0/backward S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../include S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/include End of search list. #define __DBL_MIN_EXP__ (-1021) #define __cpp_nontype_template_parameter_auto 201606L #define __UINT_LEAST16_MAX__ 0xffff #define __FLT16_HAS_QUIET_NAN__ 1 #define __ATOMIC_ACQUIRE 2 #define __FLT128_MAX_10_EXP__ 4932 #define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F #define __GCC_IEC_559_COMPLEX 2 #define __cpp_aggregate_nsdmi 201304L #define __UINT_LEAST8_TYPE__ unsigned char #define __SIZEOF_FLOAT80__ 16 #define __BFLT16_DENORM_MIN__ 9.18354961579912115600575419704879436e-41BF16 #define __cpp_impl_three_way_comparison 201907L #define __INTMAX_C(c) c ## LL #define __CHAR_BIT__ 8 #define __MINGW32__ 1 #define __cpp_designated_initializers 201707L #define __UINT8_MAX__ 0xff #define __SCHAR_WIDTH__ 8 #define _WIN64 1 #define __WINT_MAX__ 0xffff #define __FLT32_MIN_EXP__ (-125) #define __cpp_static_assert 201411L #define __BFLT16_MIN_10_EXP__ (-37) #define __ORDER_LITTLE_ENDIAN__ 1234 #define __WCHAR_MAX__ 0xffff #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 #define __GCC_ATOMIC_CHAR_LOCK_FREE 2 #define __GCC_IEC_559 2 #define __FLT32X_DECIMAL_DIG__ 17 #define __FLT_EVAL_METHOD__ 0 #define __cpp_binary_literals 201304L #define __FLT64_DECIMAL_DIG__ 17 #define __cpp_noexcept_function_type 201510L #define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 #define __cpp_variadic_templates 200704L #define __UINT_FAST64_MAX__ 0xffffffffffffffffULL #define __SIG_ATOMIC_TYPE__ int #define __DBL_MIN_10_EXP__ (-307) #define __FINITE_MATH_ONLY__ 0 #define __cpp_variable_templates 201304L #define __FLT32X_MAX_EXP__ 1024 #define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 #define __FLT32_HAS_DENORM__ 1 #define __UINT_FAST8_MAX__ 0xff #define __cpp_rvalue_reference 200610L #define __cpp_nested_namespace_definitions 201411L #define __DEC64_MAX_EXP__ 385 #define __INT8_C(c) c #define __LDBL_HAS_INFINITY__ 1 #define __INT_LEAST8_WIDTH__ 8 #define __cpp_variadic_using 201611L #define __UINT_LEAST64_MAX__ 0xffffffffffffffffULL #define __INT_LEAST8_MAX__ 0x7f #define __cpp_attributes 200809L #define __cpp_capture_star_this 201603L #define __SHRT_MAX__ 0x7fff #define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L #define __cpp_impl_coroutine 201902L #define __FLT64X_MAX_10_EXP__ 4932 #define __cpp_if_constexpr 201606L #define __BFLT16_MAX_10_EXP__ 38 #define __BFLT16_MAX_EXP__ 128 #define __LDBL_IS_IEC_60559__ 1 #define __FLT64X_HAS_QUIET_NAN__ 1 #define __UINT_LEAST8_MAX__ 0xff #define __GCC_ATOMIC_BOOL_LOCK_FREE 2 #define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 #define __UINTMAX_TYPE__ long long unsigned int #define __cpp_nsdmi 200809L #define __BFLT16_DECIMAL_DIG__ 4 #define __DEC32_EPSILON__ 1E-6DF #define __FLT_EVAL_METHOD_TS_18661_3__ 0 #define __OPTIMIZE__ 1 #define __UINT32_MAX__ 0xffffffffU #define __GXX_EXPERIMENTAL_CXX0X__ 1 #define __DBL_DENORM_MIN__ double(4.94065645841246544176568792868221372e-324L) #define __FLT128_MIN_EXP__ (-16381) #define __WINT_MIN__ 0 #define __FLT128_MIN_10_EXP__ (-4931) #define __FLT32X_IS_IEC_60559__ 1 #define __INT_LEAST16_WIDTH__ 16 #define __SCHAR_MAX__ 0x7f #define __FLT128_MANT_DIG__ 113 #define __WCHAR_MIN__ 0 #define __INT64_C(c) c ## LL #define __cpp_impl_destroying_delete 201806L #define __GCC_ATOMIC_POINTER_LOCK_FREE 2 #define __ATOMIC_SEQ_CST 5 #define __INT_LEAST64_MAX__ 0x7fffffffffffffffLL #define __FLT32X_MANT_DIG__ 53 #define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 #define __cpp_aligned_new 201606L #define __FLT32_MAX_10_EXP__ 38 #define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x #define __STDC_HOSTED__ 1 #define __DEC64_MIN_EXP__ (-382) #define __WIN64 1 #define __cpp_decltype_auto 201304L #define __DBL_DIG__ 15 #define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F #define __cpp_char8_t 202207L #define __GXX_WEAK__ 1 #define __SHRT_WIDTH__ 16 #define __FLT32_IS_IEC_60559__ 1 #define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L #define __DBL_IS_IEC_60559__ 1 #define __DEC32_MAX__ 9.999999E96DF #define __CHAR8_TYPE__ unsigned char #define __cpp_threadsafe_static_init 200806L #define __cpp_enumerator_attributes 201411L #define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x #define __FLT32X_HAS_INFINITY__ 1 #define __INT_WIDTH__ 32 #define __GCC_ATOMIC_CHAR8_T_LOCK_FREE 2 #define __DECIMAL_DIG__ 21 #define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 #define __INT16_MAX__ 0x7fff #define __FLT64_MIN_EXP__ (-1021) #define __cpp_using_enum 201907L #define __FLT64X_MIN_10_EXP__ (-4931) #define __LDBL_HAS_QUIET_NAN__ 1 #define __cpp_return_type_deduction 201304L #define __FLT16_MIN_EXP__ (-13) #define __FLT64_MANT_DIG__ 53 #define _REENTRANT 1 #define __cpp_consteval 201811L #define __FLT64X_MANT_DIG__ 64 #define __BFLT16_DIG__ 2 #define __GNUC__ 13 #define __GXX_RTTI 1 #define __MMX__ 1 #define __FLT_HAS_DENORM__ 1 #define __SIZEOF_LONG_DOUBLE__ 16 #define __BIGGEST_ALIGNMENT__ 16 #define __STDC_UTF_16__ 1 #define __SIZE_TYPE__ long long unsigned int #define __FLT64_MAX_10_EXP__ 308 #define __BFLT16_IS_IEC_60559__ 0 #define __FLT16_MAX_10_EXP__ 4 #define __cpp_delegating_constructors 200604L #define __DBL_MAX__ double(1.79769313486231570814527423731704357e+308L) #define __cpp_raw_strings 200710L #define __INT_FAST32_MAX__ 0x7fffffff #define __DBL_HAS_INFINITY__ 1 #define __INT64_MAX__ 0x7fffffffffffffffLL #define __SIZEOF_FLOAT__ 4 #define __WINNT__ 1 #define __HAVE_SPECULATION_SAFE_VALUE 1 #define __cpp_fold_expressions 201603L #define __DEC32_MIN_EXP__ (-94) #define __INTPTR_WIDTH__ 64 #define __UINT_LEAST32_MAX__ 0xffffffffU #define __FLT32X_HAS_DENORM__ 1 #define __INT_FAST16_TYPE__ short int #define __STRICT_ANSI__ 1 #define __MMX_WITH_SSE__ 1 #define __LDBL_HAS_DENORM__ 1 #define __SEG_GS 1 #define __BFLT16_EPSILON__ 7.81250000000000000000000000000000000e-3BF16 #define __cplusplus 202002L #define __cpp_ref_qualifiers 200710L #define __DEC32_MIN__ 1E-95DF #define __DEPRECATED 1 #define __cpp_rvalue_references 200610L #define __DBL_MAX_EXP__ 1024 #define __WCHAR_WIDTH__ 16 #define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 #define __DEC128_EPSILON__ 1E-33DL #define __FLT16_DECIMAL_DIG__ 5 #define __SSE2_MATH__ 1 #define __ATOMIC_HLE_RELEASE 131072 #define __WIN32__ 1 #define __PTRDIFF_MAX__ 0x7fffffffffffffffLL #define __amd64 1 #define __ATOMIC_HLE_ACQUIRE 65536 #define __GNUG__ 13 #define __LONG_LONG_MAX__ 0x7fffffffffffffffLL #define __SIZEOF_SIZE_T__ 8 #define __BFLT16_HAS_INFINITY__ 1 #define __FLT64X_MIN_EXP__ (-16381) #define __SIZEOF_WINT_T__ 2 #define __FLT32X_DIG__ 15 #define __LONG_LONG_WIDTH__ 64 #define __cpp_initializer_lists 200806L #define __FLT32_MAX_EXP__ 128 #define __cpp_hex_float 201603L #define __GXX_ABI_VERSION 1018 #define __FLT_MIN_EXP__ (-125) #define __x86_64 1 #define __cpp_lambdas 200907L #define __INT_FAST64_TYPE__ long long int #define __BFLT16_MAX__ 3.38953138925153547590470800371487867e+38BF16 #define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 #define __cpp_template_auto 201606L #define __FLT16_DENORM_MIN__ 5.96046447753906250000000000000000000e-8F16 #define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 #define __FLT64X_NORM_MAX__ 1.18973149535723176502126385303097021e+4932F64x #define __SIZEOF_POINTER__ 8 #define __DBL_HAS_QUIET_NAN__ 1 #define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x #define __LDBL_MAX_EXP__ 16384 #define __DECIMAL_BID_FORMAT__ 1 #define __GXX_TYPEINFO_EQUALITY_INLINE 0 #define __FLT64_MIN_10_EXP__ (-307) #define __FLT16_MIN_10_EXP__ (-4) #define __FLT64X_DECIMAL_DIG__ 21 #define __DEC128_MIN__ 1E-6143DL #define __REGISTER_PREFIX__ #define __UINT16_MAX__ 0xffff #define __cdecl __attribute__((__cdecl__)) #define __FLT128_HAS_INFINITY__ 1 #define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 #define __UINT8_TYPE__ unsigned char #define __FLT_DIG__ 6 #define __DEC_EVAL_METHOD__ 2 #define __FLT_MANT_DIG__ 24 #define __LDBL_DECIMAL_DIG__ 21 #define __VERSION__ "13.1.0" #define __UINT64_C(c) c ## ULL #define __cpp_unicode_characters 201411L #define _WIN32 1 #define __SEH__ 1 #define __INT_LEAST32_MAX__ 0x7fffffff #define __GCC_ATOMIC_INT_LOCK_FREE 2 #define __FLT128_MAX_EXP__ 16384 #define __cpp_conditional_explicit 201806L #define __FLT32_MANT_DIG__ 24 #define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ #define __FLT32X_MIN_EXP__ (-1021) #define __cpp_aggregate_paren_init 201902L #define __cpp_aggregate_bases 201603L #define __BFLT16_MIN__ 1.17549435082228750796873653722224568e-38BF16 #define __FLT128_HAS_DENORM__ 1 #define __FLT32_DECIMAL_DIG__ 9 #define __FLT128_DIG__ 33 #define _INTEGRAL_MAX_BITS 64 #define __INT32_C(c) c #define __DEC64_EPSILON__ 1E-15DD #define __ORDER_PDP_ENDIAN__ 3412 #define __DEC128_MIN_EXP__ (-6142) #define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL #define __cpp_constinit 201907L #define __INT_FAST32_TYPE__ int #define __UINT_LEAST16_TYPE__ short unsigned int #define __DEC128_MAX_EXP__ 6145 #define __DBL_HAS_DENORM__ 1 #define __cpp_rtti 199711L #define __UINT64_MAX__ 0xffffffffffffffffULL #define __FLT_IS_IEC_60559__ 1 #define __GNUC_WIDE_EXECUTION_CHARSET_NAME "UTF-16LE" #define __FLT64X_DIG__ 18 #define __INT8_TYPE__ signed char #define __cpp_digit_separators 201309L #define __GCC_ASM_FLAG_OUTPUTS__ 1 #define __UINT32_TYPE__ unsigned int #define __BFLT16_HAS_QUIET_NAN__ 1 #define __FLT_RADIX__ 2 #define __INT_LEAST16_TYPE__ short int #define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L #define __UINTMAX_C(c) c ## ULL #define __FLT16_DIG__ 3 #define __k8 1 #define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x #define __SIG_ATOMIC_MAX__ 0x7fffffff #define __cpp_constexpr 202002L #define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 #define __USER_LABEL_PREFIX__ #define __SIZEOF_PTRDIFF_T__ 8 #define __FLT64X_HAS_INFINITY__ 1 #define __SIZEOF_LONG__ 4 #define __LDBL_DIG__ 18 #define __FLT64_IS_IEC_60559__ 1 #define __x86_64__ 1 #define __FLT16_IS_IEC_60559__ 1 #define __FLT16_MAX_EXP__ 16 #define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF #define __MSVCRT__ 1 #define __INT_FAST16_MAX__ 0x7fff #define __GCC_CONSTRUCTIVE_SIZE 64 #define __FLT64_DIG__ 15 #define __UINT_FAST32_MAX__ 0xffffffffU #define __UINT_LEAST64_TYPE__ long long unsigned int #define __FLT16_EPSILON__ 9.76562500000000000000000000000000000e-4F16 #define __FLT_HAS_QUIET_NAN__ 1 #define __FLT_MAX_10_EXP__ 38 #define __LONG_MAX__ 0x7fffffffL #define __FLT64X_HAS_DENORM__ 1 #define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL #define __FLT_HAS_INFINITY__ 1 #define __GNUC_EXECUTION_CHARSET_NAME "UTF-8" #define __cpp_unicode_literals 200710L #define __UINT_FAST16_TYPE__ short unsigned int #define __DEC64_MAX__ 9.999999999999999E384DD #define __INT_FAST32_WIDTH__ 32 #define __CHAR16_TYPE__ short unsigned int #define __PRAGMA_REDEFINE_EXTNAME 1 #define __SIZE_WIDTH__ 64 #define __SEG_FS 1 #define __INT_LEAST16_MAX__ 0x7fff #define __FLT16_NORM_MAX__ 6.55040000000000000000000000000000000e+4F16 #define __DEC64_MANT_DIG__ 16 #define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 #define __SIG_ATOMIC_WIDTH__ 32 #define __INT_LEAST64_TYPE__ long long int #define __INT16_TYPE__ short int #define __INT_LEAST8_TYPE__ signed char #define __FLT16_MAX__ 6.55040000000000000000000000000000000e+4F16 #define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 #define __cpp_structured_bindings 201606L #define __SIZEOF_INT__ 4 #define __DEC32_MAX_EXP__ 97 #define __INT_FAST8_MAX__ 0x7f #define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 #define __INTPTR_MAX__ 0x7fffffffffffffffLL #define __cpp_sized_deallocation 201309L #define __cpp_guaranteed_copy_elision 201606L #define __WIN64__ 1 #define __FLT64_HAS_QUIET_NAN__ 1 #define __stdcall __attribute__((__stdcall__)) #define __FLT32_MIN_10_EXP__ (-37) #define __EXCEPTIONS 1 #define __GXX_MERGED_TYPEINFO_NAMES 0 #define __UINT16_C(c) c #define __PTRDIFF_WIDTH__ 64 #define __LDBL_MANT_DIG__ 64 #define __cpp_range_based_for 201603L #define __INT_FAST16_WIDTH__ 16 #define __FLT64_HAS_INFINITY__ 1 #define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x #define __FLT16_HAS_INFINITY__ 1 #define __STDCPP_DEFAULT_NEW_ALIGNMENT__ 16 #define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) #define __GCC_ATOMIC_LONG_LOCK_FREE 2 #define __cpp_nontype_template_args 201911L #define __DEC32_MANT_DIG__ 7 #define __k8__ 1 #define __INTPTR_TYPE__ long long int #define __UINT16_TYPE__ short unsigned int #define __WCHAR_TYPE__ short unsigned int #define __pic__ 1 #define __UINTPTR_MAX__ 0xffffffffffffffffULL #define __INT_FAST64_WIDTH__ 64 #define __cpp_nontype_template_parameter_class 201806L #define __cpp_concepts 202002L #define __cpp_decltype 200707L #define __INT_FAST64_MAX__ 0x7fffffffffffffffLL #define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 #define __FLT_NORM_MAX__ 3.40282346638528859811704183484516925e+38F #define __FLT32_HAS_INFINITY__ 1 #define __FLT64X_MAX_EXP__ 16384 #define __UINT_FAST64_TYPE__ long long unsigned int #define __cpp_constexpr_in_decltype 201711L #define __cpp_inline_variables 201606L #define __BFLT16_MIN_EXP__ (-125) #define __INT_MAX__ 0x7fffffff #define __code_model_medium__ 1 #define __INT64_TYPE__ long long int #define __FLT_MAX_EXP__ 128 #define __ORDER_BIG_ENDIAN__ 4321 #define __DBL_MANT_DIG__ 53 #define __cpp_inheriting_constructors 201511L #define __SIZEOF_FLOAT128__ 16 #define __BFLT16_MANT_DIG__ 8 #define __DEC64_MIN__ 1E-383DD #define __WINT_TYPE__ short unsigned int #define __UINT_LEAST32_TYPE__ unsigned int #define __SIZEOF_SHORT__ 2 #define __FLT32_NORM_MAX__ 3.40282346638528859811704183484516925e+38F32 #define __SSE__ 1 #define __LDBL_MIN_EXP__ (-16381) #define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 #define __amd64__ 1 #define __WINT_WIDTH__ 16 #define __INT_LEAST64_WIDTH__ 64 #define __FLT32X_MAX_10_EXP__ 308 #define __cpp_namespace_attributes 201411L #define __WIN32 1 #define __SIZEOF_INT128__ 16 #define __FLT16_MIN__ 6.10351562500000000000000000000000000e-5F16 #define __FLT64X_IS_IEC_60559__ 1 #define __WCHAR_UNSIGNED__ 1 #define __LDBL_MAX_10_EXP__ 4932 #define __ATOMIC_RELAXED 0 #define __DBL_EPSILON__ double(2.22044604925031308084726333618164062e-16L) #define __INT_LEAST32_TYPE__ int #define __thiscall __attribute__((__thiscall__)) #define __UINT8_C(c) c #define __FLT64_MAX_EXP__ 1024 #define __SIZEOF_WCHAR_T__ 2 #define __GNUC_PATCHLEVEL__ 0 #define __WINNT 1 #define __FLT128_NORM_MAX__ 1.18973149535723176508575932662800702e+4932F128 #define __FLT64_NORM_MAX__ 1.79769313486231570814527423731704357e+308F64 #define __FLT128_HAS_QUIET_NAN__ 1 #define __INTMAX_MAX__ 0x7fffffffffffffffLL #define __INT_FAST8_TYPE__ signed char #define __fastcall __attribute__((__fastcall__)) #define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x #define __STDCPP_THREADS__ 1 #define __BFLT16_HAS_DENORM__ 1 #define __GNUC_STDC_INLINE__ 1 #define __FLT64_HAS_DENORM__ 1 #define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 #define __FLT16_HAS_DENORM__ 1 #define __DBL_DECIMAL_DIG__ 17 #define __STDC_UTF_32__ 1 #define __INT_FAST8_WIDTH__ 8 #define __FXSR__ 1 #define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x #define __DBL_NORM_MAX__ double(1.79769313486231570814527423731704357e+308L) #define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ #define __MINGW64__ 1 #define __GCC_DESTRUCTIVE_SIZE 64 #define __INTMAX_WIDTH__ 64 #define __cpp_runtime_arrays 198712L #define __FLT32_DIG__ 6 #define __UINT64_TYPE__ long long unsigned int #define __UINT32_C(c) c ## U #define __cpp_alias_templates 200704L #define __cpp_constexpr_dynamic_alloc 201907L #define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F #define __FLT128_IS_IEC_60559__ 1 #define __INT8_MAX__ 0x7f #define __LONG_WIDTH__ 32 #define __DBL_MIN__ double(2.22507385850720138309023271733240406e-308L) #define __PIC__ 1 #define __INT32_MAX__ 0x7fffffff #define __UINT_FAST32_TYPE__ unsigned int #define __FLT16_MANT_DIG__ 11 #define __FLT32X_NORM_MAX__ 1.79769313486231570814527423731704357e+308F32x #define __CHAR32_TYPE__ unsigned int #define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F #define __SSE2__ 1 #define __cpp_deduction_guides 201907L #define __BFLT16_NORM_MAX__ 3.38953138925153547590470800371487867e+38BF16 #define __INT32_TYPE__ int #define __SIZEOF_DOUBLE__ 8 #define __cpp_exceptions 199711L #define __FLT_MIN_10_EXP__ (-37) #define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 #define __INT_LEAST32_WIDTH__ 32 #define __INTMAX_TYPE__ long long int #define __FLT32X_HAS_QUIET_NAN__ 1 #define __ATOMIC_CONSUME 1 #define __GNUC_MINOR__ 1 #define __UINTMAX_MAX__ 0xffffffffffffffffULL #define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x #define __cpp_template_template_args 201611L #define __DBL_MAX_10_EXP__ 308 #define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L #define __INT16_C(c) c #define __STDC__ 1 #define __PTRDIFF_TYPE__ long long int #define __FLT32X_MIN_10_EXP__ (-307) #define __UINTPTR_TYPE__ long long unsigned int #define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD #define __DEC128_MANT_DIG__ 34 #define __LDBL_MIN_10_EXP__ (-4931) #define __cpp_generic_lambdas 201707L #define __SSE_MATH__ 1 #define __SIZEOF_LONG_LONG__ 8 #define __cpp_user_defined_literals 200809L #define __FLT128_DECIMAL_DIG__ 36 #define __GCC_ATOMIC_LLONG_LOCK_FREE 2 #define __FLT32_HAS_QUIET_NAN__ 1 #define __FLT_DECIMAL_DIG__ 9 #define __UINT_FAST16_MAX__ 0xffff #define __LDBL_NORM_MAX__ 1.18973149535723176502126385303097021e+4932L #define __GCC_ATOMIC_SHORT_LOCK_FREE 2 #define __SIZE_MAX__ 0xffffffffffffffffULL #define __UINT_FAST8_TYPE__ unsigned char #define __cpp_init_captures 201803L #define __ATOMIC_ACQ_REL 4 #define __ATOMIC_RELEASE 3 #define __declspec(x) __attribute__((x)) ```
vis4rd commented 1 month ago

It's possible those includePaths might be getting added from the system environment variables.

I double checked system PATH and user PATH, I don't see anything added from Visual Studio 2022 compiler.

system:

obraz

user:

obraz

But curiously CMake Tools "Scan for kits" command finds it anyway:

obraz

I have no idea how it finds MSVC... And why its include path taken into account even though I choose a different compiler. Maybe I will try to set up some minimal reproducible example.

vis4rd commented 1 month ago

Okay I pinned it down to the following setup:

  1. Install Visual Studio 2022 (with MSVC compiler)
  2. Install i.e. GCC 13.1.0 (with POSIX threads) + LLVM/Clang/LLD/LLDB 16.0.5 + MinGW-w64 11.0.0 (MSVCRT) - release 5 Win64 with LLVM from winlibs.com.
  3. Create new folder and open it with VSCode.
  4. Install CppTools and CMakeTools extensions.
  5. Create main.cpp:
#include <iostream>

int main() {
    std::cout << "Hello, World!" << std::endl;
    return 0;
}
  1. Create CMakeLists.txt:
cmake_minimum_required(VERSION 3.11)
project(cpptools_repro LANGUAGES CXX)
add_executable(cpptools_repro main.cpp)
  1. Select the installed GCC compiler in CMakeTools UI:

obraz

... configure and build using CMake.

  1. Create .vscode/settings.json in workspace root:
{
    "C_Cpp.intelliSenseEngine": "default",
    "C_Cpp.intelliSenseCachePath": "${workspaceFolder}/.cache/vscode-cpptools",
    "C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
    "C_Cpp.loggingLevel": "Debug",
    // "C_Cpp.codeAnalysis.clangTidy.enabled": true,
    // "C_Cpp.codeAnalysis.clangTidy.useBuildPath": true,
}

... and observe no errors in main.cpp

  1. Uncomment last two settings related to clang-tidy. Go to main.cpp and observe the following erros:

obraz

And now to fix those errors, comment clang-tidy settings, remove .cache in workspace root and reload window.

Additionally, when I specify C_Cpp.codeAnalysis.clangTidy.path explicitly to the one matching the compiler (in this instance in S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/), the error disappears as it uses correct include paths, apparently. So it's a matter of wrong clang-tidy binary being used.

I think to fix this, it would require additional integration between CMakeTools and CppTools. Let's say I would like to achieve something like this:

"C_Cpp.codeAnalysis.clangTidy.enabled": true,
"C_Cpp.codeAnalysis.clangTidy.useBuildPath": true,
"C_Cpp.default.compileCommands": "${config:cmake.buildDirectory}/compile_commands.json",
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
"C_Cpp.intelliSenseEngine": "default",

Current behavior: clang-tidy binary being used is the one shipped with CppTools. Expected behavior: clang-tidy binary is taken from configurationProvider.

Expected behavior could be achieved in two forms:

  1. CppTools searches for clang-tidy binary in configurationProvider binary path and chooses it over default shipped one.
  2. CMakeTools provides new variable substitution, i.e. ${config:cmake.compilerDirectory}, which then could be passed to C_Cpp.codeAnalysis.clangTidy.path.

Do you think any of these approaches could be implemented?

Colengms commented 1 month ago

Hi @vis4rd . The reason MSVC headers are being indexed is that it's effectively still part of your configuration. The C/C++ Extension will detect a 'default' compiler if compilerPath is not specified (which your configuration does not). That compiler's information is then used for any file for which a configuration is not successfully provided by CMake Tools (perhaps not referred to in a CMakeLists.txt), and not found in your compile_commands.json (since you have that configured also). You can prevent this by setting "compilerPath": "", but then any file not otherwise configured would almost definitely not have working IntelliSense.

Setting "C_Cpp.codeAnalysis.clangTidy.useBuildPath": true makes the C/C++ Extension pass a configuration from compile_commands.json to clang-tidy instead of the configuration used to configure IntelliSense (which likely came from CMake Tools).

So, what I think you're seeing here is most likely an issue with the configuration provided by CMake Tools. Could you repro the issue again and provide the output of C/C++: Log Diagnostics (while the repro'ing file is open)? That should indicate exactly what configuration was provided by CMake Tools. (Alternatively, you could set "C_Cpp.loggingLevel": "Debug" and monitor the C/C++ output channel for a message related to receiving a custom configuration). The issue may be apparent by comparing the custom configuration CMake Tools provides with the contents of compile_commands.json for that same file. If this is what's happening, once we have more details, we could transfer this issue to the vscode-cmake-tools repo.

vis4rd commented 1 month ago

Hi @Colengms, I collected C/C++: Log Diagnostics:

-------- Diagnostics - 7/31/2024, 8:23:55 PM
Version: 1.21.3
Current Configuration:
{
    "name": "Win32",
    "includePath": [
        "s:/Code/CPP/cpptools_repro/**"
    ],
    "defines": [
        "_DEBUG",
        "UNICODE",
        "_UNICODE"
    ],
    "compilerPath": "cl.exe",
    "cStandard": "c17",
    "cppStandard": "c++17",
    "intelliSenseMode": "windows-msvc-x64",
    "compilerPathInCppPropertiesJson": "cl.exe",
    "intelliSenseModeIsExplicit": false,
    "cStandardIsExplicit": false,
    "cppStandardIsExplicit": false,
    "mergeConfigurations": false,
    "compilerPathIsExplicit": false,
    "configurationProvider": "ms-vscode.cmake-tools",
    "browse": {
        "path": [
            "s:/Code/CPP/cpptools_repro/**",
            "${workspaceFolder}"
        ],
        "limitSymbolsToIncludedHeaders": true
    }
}
Custom browse configuration: 
{
    "browsePath": [
        "s:/code/cpp/cpptools_repro"
    ],
    "compilerPath": "s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/g++.exe",
    "compilerArgs": [],
    "compilerFragments": [
        "-g"
    ]
}
cpptools version (native): 1.21.3.0
Translation Unit Mappings:
[ S:\Code\CPP\cpptools_repro\main.cpp - source TU]:
Translation Unit Configurations:
[ S:\Code\CPP\cpptools_repro\main.cpp ]:
    Process ID: 10304
    Memory Usage: 120 MB
    Compiler Path: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe
    Includes:
    System Includes:
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\include\c++\13.1.0
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\include\c++\13.1.0\x86_64-w64-mingw32
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\include\c++\13.1.0\backward
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\lib\gcc\x86_64-w64-mingw32\13.1.0\include
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\include
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\lib\gcc\x86_64-w64-mingw32\13.1.0\include-fixed
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\x86_64-w64-mingw32\include
    Standard Version: c++17
    IntelliSense Mode: windows-gcc-x64
    Other Flags:
        --g++
        --gnu_version=130100
Total Memory Usage: 120 MB

------- Workspace parsing diagnostics -------
Number of files discovered (not excluded): 3105

This is with settings.json:

{
    "C_Cpp.intelliSenseEngine": "default",
    "C_Cpp.intelliSenseCachePath": "${workspaceFolder}/.cache/vscode-cpptools",
    "C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
    "C_Cpp.loggingLevel": "Debug",
    "C_Cpp.codeAnalysis.clangTidy.enabled": true,
    "C_Cpp.codeAnalysis.clangTidy.useBuildPath": true,
}

compile_commands.json:

[
{
  "directory": "S:/Code/CPP/cpptools_repro/build",
  "command": "S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe   -g -o CMakeFiles\\cpptools_repro.dir\\main.cpp.obj -c S:\\Code\\CPP\\cpptools_repro\\main.cpp",
  "file": "S:/Code/CPP/cpptools_repro/main.cpp",
  "output": "CMakeFiles/cpptools_repro.dir/main.cpp.obj"
}
]

Also tried without "C_Cpp.codeAnalysis.clangTidy.useBuildPath": true, the only difference in diagnostics is added line at the end:

Number of files parsed: 340

So my guess is cl.exe should not be present in Current Configuration and possibly intelliSenseMode is also incorrect. But I think Custom browse configuration is correct since I built main.cpp with the following CMake Tools configuration:

obraz

Colengms commented 1 month ago

Hi @vis4rd

So my guess is cl.exe should not be present in Current Configuration

As I mentioned, cl.exe is part of your current configuration. If you'd prefer a compiler is not detected (and its system headers indexed) for configuring IntelliSense for files (not main.cpp) that are not otherwise configured by your custom configuration provider or compile_commands.json, you could explicitly set your compilerPath to "" in c_cpp_properties.json.

Indexing of headers is not directly related to IntelliSense for a specific file. All headers that might be referenced across the workspace will get indexed, not just those for files you open. Due to how IntelliSense configurations are determined per-file when using a custom configuration provider or compile_commands.json, you may see system headers from multiple compilers get indexed.

clang-diagnostic-error

This type of error is coming from clang-tidy (used by code analysis features), so that error would appear to be with how clang-tidy is being invoked (compiler arguments passed to it), which should be based off of your IntelliSense configuration for that file. "C_Cpp.codeAnalysis.clangTidy.useBuildPath": true simply causes the compile_commands.json entry to be used to generate that clang-tidy command line instead of the configuration provided by a custom configuration provider. Since I don't see any difference between the configuration of the source file (from your log diagnostics) and the compile_commands.json entry you've provided, it's still unclear to me why "C_Cpp.codeAnalysis.clangTidy.useBuildPath": true would alter that clang-tidy command line. Could you check the log output for the specific command lines passed to clang-tidy, with and without "C_Cpp.codeAnalysis.clangTidy.useBuildPath": true? (Or, perhaps if you weren't aware of how clang-tidy is being invoked, and perhaps that error appeared to be avoided because a code analysis run did not yet get triggered?)

vis4rd commented 1 month ago

Hi @Colengms thank you for quick response and detailed explanation, yet I still don't understand why my current configuration chooses cl.exe (I suppose it's MSVC compiler from Visual Studio 2022) when it's not specified anywhere. On the contrary, S:\\Environment\\Compilers\\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\\bin\\g++.exe is found by CMake Tools and chosen by me explicitly, when configuring through UI.

Due to how IntelliSense configurations are determined per-file when using a custom configuration provider or compile_commands.json, you may see system headers from multiple compilers get indexed.

I am also confused by this part. Some headers from different compilers are clearly incompatible with each other, as it's visible in this issue. Shouldn't only the headers from configuration provider be selected? Or "indexed" does not necesarily mean used in meaningful way? Edit: I don't think it's a matter of compiler, but clang-tidy binary.

"C_Cpp.codeAnalysis.clangTidy.useBuildPath": true simply causes the compile_commands.json entry to be used to generate that clang-tidy command line instead of the configuration provided by a custom configuration provider.

Just to be clear I should point out that issue is visible regardless of this parameter being set or not. Which is understandable, since as you also pointed out, there is no difference in compile_commands.json and Custom browse configuration (or Translation Unit Configuration).

(...), you could explicitly set your compilerPath to "" in c_cpp_properties.json

I have set it in settings.json, issue is still visible. I tried with the following c_cpp_properties.json:

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**"
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "cStandard": "c17",
            "cppStandard": "c++17",
            "intelliSenseMode": "windows-gcc-x64",
            "configurationProvider": "ms-vscode.cmake-tools",
            "compilerPath": ""
        }
    ],
    "version": 4
}

... and settings.json:

{
    "C_Cpp.intelliSenseEngine": "default",
    "C_Cpp.intelliSenseCachePath": "${workspaceFolder}/.cache/vscode-cpptools",
    "C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
    "C_Cpp.loggingLevel": "Debug",
    "C_Cpp.codeAnalysis.clangTidy.enabled": true,
    "C_Cpp.default.compilerPath": ""
}

And C/C++ diagnostics are as follows:

-------- Diagnostics - 7/31/2024, 9:38:59 PM
Version: 1.21.3
Current Configuration:
{
    "name": "Win32",
    "includePath": [
        "s:/Code/CPP/cpptools_repro/**"
    ],
    "defines": [
        "_DEBUG",
        "UNICODE",
        "_UNICODE"
    ],
    "cStandard": "c17",
    "cppStandard": "c++17",
    "intelliSenseMode": "windows-gcc-x64",
    "configurationProvider": "ms-vscode.cmake-tools",
    "compilerPath": "",
    "compilerPathIsExplicit": true,
    "cStandardIsExplicit": true,
    "cppStandardIsExplicit": true,
    "intelliSenseModeIsExplicit": true,
    "compilerPathInCppPropertiesJson": "",
    "configurationProviderInCppPropertiesJson": "ms-vscode.cmake-tools",
    "mergeConfigurations": false,
    "browse": {
        "path": [
            "s:/Code/CPP/cpptools_repro/**",
            "${workspaceFolder}"
        ],
        "limitSymbolsToIncludedHeaders": true
    }
}
Custom browse configuration: 
{
    "browsePath": [
        "s:/code/cpp/cpptools_repro"
    ],
    "compilerPath": "s:/environment/compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/g++.exe",
    "compilerArgs": [],
    "compilerFragments": [
        "-g"
    ]
}
cpptools version (native): 1.21.3.0
Translation Unit Mappings:
[ S:\Code\CPP\cpptools_repro\main.cpp - source TU]:
Translation Unit Configurations:
[ S:\Code\CPP\cpptools_repro\main.cpp ]:
    Process ID: 13496
    Memory Usage: 120 MB
    Compiler Path: S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\bin\g++.exe
    Includes:
    System Includes:
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\include\c++\13.1.0
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\include\c++\13.1.0\x86_64-w64-mingw32
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\include\c++\13.1.0\backward
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\lib\gcc\x86_64-w64-mingw32\13.1.0\include
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\include
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\lib\gcc\x86_64-w64-mingw32\13.1.0\include-fixed
        S:\Environment\Compilers\mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt\x86_64-w64-mingw32\include
    Standard Version: c++17
    IntelliSense Mode: windows-gcc-x64
    Other Flags:
        --g++
        --gnu_version=130100
Total Memory Usage: 120 MB

------- Workspace parsing diagnostics -------
Number of files discovered (not excluded): 3063

Issue is still present.

I found the exact clang-tidy command in C/C++ output:

c:\Users\visard\.vscode\extensions\ms-vscode.cpptools-1.21.3-win32-x64/bin/../LLVM/bin/clang-tidy.exe
--header-filter=(S:/Code/CPP/cpptools_repro|S:\\Code\\CPP\\cpptools_repro)
--export-fixes=C:\Users\visard\AppData\Local\Temp\{108430223366751484}\fixes5488.yaml
--quiet
--use-color=false
S:/Code/CPP/cpptools_repro/main.cpp
<a lot of defined macros and variables>
-isystemS:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/include/c++/13.1.0
-isystemS:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/include/c++/13.1.0/x86_64-w64-mingw32
-isystemS:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/include/c++/13.1.0/backward
-isystemS:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/lib/gcc/x86_64-w64-mingw32/13.1.0/include
-isystemS:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/include
-isystemS:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/lib/gcc/x86_64-w64-mingw32/13.1.0/include-fixed
-isystemS:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/x86_64-w64-mingw32/include

I still think that clang-tidy.exe shipped with the extension is not compatible with selected configuration from configuration provider (like I mentioned in https://github.com/microsoft/vscode-cpptools/issues/12516#issuecomment-2253332327):

Additionally, when I specify C_Cpp.codeAnalysis.clangTidy.path explicitly to the one matching the compiler (in this instance in S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/bin/), the error disappears as it uses correct include paths, apparently. So it's a matter of wrong clang-tidy binary being used.

Is there a way to avoid explicitly setting clang-tidy path, but to make it choose the one matching compiler (and include paths) from configuration provider?

Colengms commented 1 month ago

I still don't understand why my current configuration chooses cl.exe

Perhaps we're having a miscommunication about the term "current configuration". If you're referring to the configuration of IntelliSense for a specific file, then no, cl.exe is not chosen. However, regardless of what file you have open, having not specified any value at all for compilerPath, a default will be chosen/detected, which will only be used to configure IntelliSense for files that are not otherwise configured by CMake Tools or a compile_commands.json. For example, if you create a test.c file that is not referred to in your CMakeList.txt, the default compiler (cl.exe) would be used to configure IntelliSense for that file. However, IntelliSense and 'indexing' of file contents into the tag parsing database, are not the same thing. You will see files tag parsed into your database for your default/detected compiler, regardless of whether those files are referenced by source files you open. I'm not sure how to better explain it.

Note that any error referring to clang-diagnostic-error, while it may involve a 'squiggle', is NOT an IntelliSense error. It's a code analysis error, coming from clang-tidy, not coming from the IntelliSense engine. The same configuration used for IntelliSense should get used to compose the command line passed to clang-tidy. If there is an issue here, it would appear to be with the command line passed to clang-tidy.

@sean-mcmanus Could you take a look at the command line getting passed to clang-tidy?

vis4rd commented 1 month ago

Accidentally I pasted only a part of the clang-tidy command from C/C++ output (I updated my previous comment to include -isystem flags), but include paths are the same whether I set the clang-tidy binary explicitly or not. The only differences in output are displayed errors (and used binaries, of course):

obraz

Error while processing S:\Code\CPP\cpptools_repro\main.cpp.
warning: redefining builtin macro [clang-diagnostic-builtin-macro-redefined]
S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/include/c++/13.1.0\bits/std_abs.h:136:3: error: __float128 is not supported on this target [clang-diagnostic-error]
  136 |   __float128
      |   ^
S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/include/c++/13.1.0\bits/std_abs.h:137:7: error: __float128 is not supported on this target [clang-diagnostic-error]
  137 |   abs(__float128 __x)
      |       ^
S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/include/c++/13.1.0\bits/stl_algobase.h:1057:21: error: __float128 is not supported on this target [clang-diagnostic-error]
 1057 |   __size_to_integer(__float128 __n) { return (long long)__n; }
      |                     ^
S:/Environment/Compilers/mingw64_11.0.0_gcc_13.1.0_clang_16.0.5_msvcrt/include/c++/13.1.0\type_traits:494:39: error: __float128 is not supported on this target [clang-diagnostic-error]
  494 |     struct __is_floating_point_helper<__float128>
      |                                       ^
LSP: (received) cpptools/getCodeActions: file:///s%3A/Code/CPP/cpptools_repro/main.cpp (id: 59)
LSP: (invoked) cpptools/getCodeActions: file:///s%3A/Code/CPP/cpptools_repro/main.cpp (id: 59)
LSP: Sending response (id: 59)
Colengms commented 3 weeks ago

This may be a duplicate of: https://github.com/microsoft/vscode-cpptools/issues/9198

clang itself, and thus clang-tidy, doesn't support __float128, so it's necessary to work around the issue. Fully fixing this would seem to require clang to add support for __float128.