diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..596bc88 --- /dev/null +++ b/.gitignore @@ -0,0 +1,76 @@ +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# clangd +.cache/* + +# VSCode +.vscode/* +!.vscode/launch.json +!.vscode/tasks.json + +# Visual Studio +.vs/ + +# Godot 4+ specific ignores +.godot/ +game/bin/openvic2/* +.sconsign*.dblite + +# Binaries +*.o +*.os +*.so +*.obj +*.bc +*.pyc +*.dblite +*.pdb +*.lib +bin/* +*.config +*.creator +*.creator.user +*.files +*.includes +*.idb +*.exp + +# Build configuarion. +/custom.py + +# MacOS stuff +.DS_Store + +*.translation +!game/common/map/*.obj
\ No newline at end of file |