Parcourir la source

Add *.so.* to .gitignore to ignore build artifacts (#1912)

When building a shared Raylib library on Linux, the build process
produces 3 files: libraylib.so (symlink), libraylib.so.381 (symlink)
and libraylib.so.3.8.1 (the library).

Only the first one of these (.so) is currently ignored by Git.
Adding *.so.* to .gitinore makes Git ignore the rest of them as
well.
pull/1919/head
Tommi Sinivuo il y a 4 ans
committed by GitHub
Parent
révision
0ba49cce45
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: 4AEE18F83AFDEB23
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. +1
    -0
      .gitignore

+ 1
- 0
.gitignore Voir le fichier

@ -57,6 +57,7 @@ packages/
*.a
*.bc
*.so
*.so.*
# Ignore wasm data in examples/
examples/**/*.wasm

Chargement…
Annuler
Enregistrer