Add gitignore section for library binaries before copy

adds gitignore section to ignore library binaries before they are copied
from bin/<platform>/* to project/bin/<platform>/*
This commit is contained in:
paddy-exe
2026-06-03 10:30:52 +02:00
parent e33d564844
commit c4641182e3
9 changed files with 3 additions and 13 deletions

16
.gitignore vendored
View File

@@ -3,20 +3,10 @@
.godot/ .godot/
# Ignore library files but not the gdextension file # Ignore library files but not the gdextension file
project/bin/* /bin/**
!project/bin/android
project/bin/android/*
!project/bin/android/.gitkeep
!project/bin/linux
project/bin/linux/*
!project/bin/linux/.gitkeep
!project/bin/macos
project/bin/macos/*
!project/bin/macos/.gitkeep
!project/bin/windows
project/bin/windows/*
!project/bin/windows/.gitkeep
!project/bin/*.gdextension !project/bin/*.gdextension
# Ignore scons database
.sconsign*.dblite .sconsign*.dblite
# Ignore custom.py # Ignore custom.py

View File

View File

View File

View File