mirror of
https://github.com/godotengine/godot-git-plugin.git
synced 2026-01-04 22:09:55 +03:00
* Add libgit2 libs + source * Set libgit2 dll as dependency of gitapi * Add libgit2 shared object * Add x11 git2 static lib * Add libgit2 binaries to demo project * Add windows binaries to demo project for git addon * Update gitignore to regard all demo files * Add windows addon binary to demo * Add git init
36 lines
320 B
Plaintext
36 lines
320 B
Plaintext
# SConstruct db
|
|
*.dblite
|
|
|
|
# Godot Serialisations
|
|
api.json
|
|
|
|
# Visual Studio Cache
|
|
.vs/
|
|
|
|
# VSCode Cache
|
|
.vscode/
|
|
|
|
# Binaries
|
|
bin/
|
|
intermediate/
|
|
build/
|
|
*.dll
|
|
*.obj
|
|
*.so
|
|
*.dylib
|
|
*.pdb
|
|
*.ilk
|
|
*.exe
|
|
*.os
|
|
*.out
|
|
.import/
|
|
|
|
# Binaries for distribution
|
|
!/demo/bin/
|
|
!libgitapi.dll
|
|
!libgitapi.so
|
|
!libgitapi.dylib
|
|
!git2.lib
|
|
!libgit.a
|
|
|