浏览代码

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 3 年前
committed by GitHub
父节点
当前提交
0ba49cce45
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. +1
    -0
      .gitignore

+ 1
- 0
.gitignore 查看文件

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

正在加载...
取消
保存