From c7704f42f75c60e05c58be16718e5e254483dd9f Mon Sep 17 00:00:00 2001 From: portersky <24420859+portersky@users.noreply.github.com> Date: Tue, 5 May 2026 21:32:26 +0200 Subject: [PATCH] chore: expand .gitignore with common build/IDE artifacts --- .gitignore | 49 +++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 45 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 2895733..d4edd11 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,45 @@ -build/ -*.exe -*.pdb -*.lib +# CMake +build +build-* +cmake-build-* +meson-build-* +# CMake build artifacts +__cmake* + +# Xcode +*.xcworkspace +*.xcodeproj + +# Visual Studio +*.sln +*.vcxproj +*.vcxproj.filters +*.vcxproj.user +.vs + +# Makefile +Makefile +*.make + +# nvim +.ccls +.ccls-cache +.cache +compile_commands.json + +# Visual Studio Code +.vscode + +# IntelliJ +.idea + +# macOS +.DS_Store +.AppleDouble +.LSOverride + +# Dear ImGui +imgui.ini + +# Compiled shaders +*.spv