123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- ###########################
- # ignore generated binaries
- # but not the data folder
- ###########################
-
- /bin/*
- !/bin/data/
-
- #########
- # general
- #########
-
- [Bb]uild/
- [Oo]bj/
- *.o
- [Dd]ebug*/
- [Rr]elease*/
- *.mode*
- *.app/
- *.pyc
- .svn/
- *.log
-
- ########################
- # IDE files which should
- # be ignored
- ########################
-
- # XCode
- *.pbxuser
- *.plist
- *.DS_Store
- *.Makefile
- Project.xcconfig
- *.make
- /makefile
- *.xcodeproj
- *.perspective
- *.perspectivev3
- *.mode1v3
- *.mode2v3
- # XCode 4
- xcuserdata
- *.xcworkspace
-
- # Code::Blocks
- *.depend
- *.layout
-
- # Visual Studio
- *.sdf
- *.opensdf
- *.suo
- *.pdb
- *.ilk
- *.aps
- *.make
- *.sln
- *.vcxproj
- *.filters
- *.rc
- ipch/
-
- # Eclipse
- .metadata
- local.properties
- .externalToolBuilders
-
- ##################
- # operating system
- ##################
-
- # Linux
- *~
- # KDE
- .directory
- .AppleDouble
-
- # OSX
- .DS_Store
- *.swp
- *~.nib
- # Thumbnails
- ._*
-
- # Windows
- # Image file caches
- Thumbs.db
- # Folder config file
- Desktop.ini
-
- # Android
- .csettings
|