Update gitignore to allow release/ DLLs and ignore compiled binaries
This commit is contained in:
20
.gitignore
vendored
20
.gitignore
vendored
@@ -11,11 +11,18 @@
|
|||||||
/*.lo
|
/*.lo
|
||||||
/*.a
|
/*.a
|
||||||
/*.lib
|
/*.lib
|
||||||
/*.dll
|
*.dll # DLLs compiladas
|
||||||
/*.so
|
*.so # Binarios Linux
|
||||||
/*.dylib
|
*.dylib # Binarios macOS
|
||||||
/*.exe
|
*.exe # Ejecutables Windows
|
||||||
/*.pdb
|
*.pdb
|
||||||
|
|
||||||
|
# Binarios compilados sin extension (Linux/macOS)
|
||||||
|
shadertoy
|
||||||
|
Shadertoy
|
||||||
|
|
||||||
|
# Permitir DLLs de distribucion en release/
|
||||||
|
!release/*.dll
|
||||||
|
|
||||||
# Generated by CMake/IDE
|
# Generated by CMake/IDE
|
||||||
/compile_commands.json
|
/compile_commands.json
|
||||||
@@ -68,6 +75,3 @@ coverage.info
|
|||||||
venv/
|
venv/
|
||||||
env/
|
env/
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
|
||||||
# Avoid committing local SDL runtime if you copy it next to the exe
|
|
||||||
SDL3.dll
|
|
||||||
|
|||||||
Reference in New Issue
Block a user