From fe256704acdcd8c6947f46c0d9e9e7342bd4844d Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Sat, 25 Oct 2025 12:07:54 +0200 Subject: [PATCH] Update gitignore to allow release/ DLLs and ignore compiled binaries --- .gitignore | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index a8b1fc0..29f1adc 100644 --- a/.gitignore +++ b/.gitignore @@ -11,11 +11,18 @@ /*.lo /*.a /*.lib -/*.dll -/*.so -/*.dylib -/*.exe -/*.pdb +*.dll # DLLs compiladas +*.so # Binarios Linux +*.dylib # Binarios macOS +*.exe # Ejecutables Windows +*.pdb + +# Binarios compilados sin extension (Linux/macOS) +shadertoy +Shadertoy + +# Permitir DLLs de distribucion en release/ +!release/*.dll # Generated by CMake/IDE /compile_commands.json @@ -68,6 +75,3 @@ coverage.info venv/ env/ __pycache__/ - -# Avoid committing local SDL runtime if you copy it next to the exe -SDL3.dll