From 1ed1597c0791cacccbdbf9c01824bd05ba54f3e8 Mon Sep 17 00:00:00 2001 From: Gabriel Ravier Date: Tue, 7 May 2019 14:14:06 +0200 Subject: [PATCH] Properly made .out files be filtered (and some other stuff) Changed a few notes (such as for exes or for converted res files Removed VS Code stuff because this is the kind of stuff that should go into people's global .gitignore and not in local ones Signed-off-by: Gabriel Ravier --- .gitignore | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index e092319d..63beba99 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ # Exclude obj directory (object files for Makefile build) /obj -# Exclude the converted resource files +# Exclude converted resource files src/Resource # Exclude .dat and .rec files in build directories (avoid Config.dat, 290.rec and others) @@ -16,16 +16,16 @@ msvc2003/devilution/compare.asm # Exclude build output on Linux (exclude normally produced executable files and out files) build_en/CSE2 +build_en/CSE2d build_en/DoConfig -*.out - +build_en/DoConfigd build_jp/CSE2 build_jp/CSE2d build_jp/DoConfig build_jp/DoConfigd +*.out - -# Exclude executables in the build folder (and .exe.manifest files) +# Exclude PE executables in the build folder (and .exe.manifest files) build_en/*.exe build_en/*.exe.manifest build_jp/*.exe @@ -45,12 +45,3 @@ msvc2003/Debug msvc2003/Release msvc2003/Debug (Japanese) msvc2003/Release (Japanese) - -# Exclude VS Code folder -.vscode/* - -# Include generically useful files for VS Code users -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json