initial commit
This commit is contained in:
commit
894804e756
24 changed files with 2036 additions and 0 deletions
107
.gitignore
vendored
Normal file
107
.gitignore
vendored
Normal file
|
@ -0,0 +1,107 @@
|
|||
#########################
|
||||
# general patterns
|
||||
#########################
|
||||
|
||||
docs/html
|
||||
docs/tagfile.xml
|
||||
|
||||
*/bin/*
|
||||
!*/bin/data/
|
||||
|
||||
# for bin folder in root
|
||||
/bin/*
|
||||
!/bin/data/
|
||||
|
||||
[Bb]uild/
|
||||
[Oo]bj/
|
||||
*.o
|
||||
[Dd]ebug*/
|
||||
[Rr]elease*/
|
||||
*.mode*
|
||||
*.app/
|
||||
*.pyc
|
||||
.svn/
|
||||
|
||||
#########################
|
||||
# IDE
|
||||
#########################
|
||||
|
||||
# XCode
|
||||
*.pbxuser
|
||||
*.perspective
|
||||
*.perspectivev3
|
||||
*.mode1v3
|
||||
*.mode2v3
|
||||
#XCode 4
|
||||
xcuserdata
|
||||
*.xcworkspace
|
||||
|
||||
# Code::Blocks
|
||||
*.depend
|
||||
*.layout
|
||||
*.cbTemp
|
||||
|
||||
# Visual Studio
|
||||
*.sdf
|
||||
*.opensdf
|
||||
*.suo
|
||||
*.pdb
|
||||
*.ilk
|
||||
*.aps
|
||||
ipch/
|
||||
|
||||
# Eclipse
|
||||
.metadata
|
||||
local.properties
|
||||
.externalToolBuilders
|
||||
|
||||
# Codelite
|
||||
*.session
|
||||
*.tags
|
||||
*.workspace.*
|
||||
|
||||
#########################
|
||||
# operating system
|
||||
#########################
|
||||
|
||||
# Linux
|
||||
*~
|
||||
# KDE
|
||||
.directory
|
||||
.AppleDouble
|
||||
|
||||
# OSX
|
||||
.DS_Store
|
||||
*.swp
|
||||
*~.nib
|
||||
# Thumbnails
|
||||
._*
|
||||
|
||||
# Windows
|
||||
# Windows image file caches
|
||||
Thumbs.db
|
||||
# Folder config file
|
||||
Desktop.ini
|
||||
|
||||
#Android
|
||||
.csettings
|
||||
|
||||
#########################
|
||||
# packages
|
||||
#########################
|
||||
|
||||
# it's better to unpack these files and commit the raw source
|
||||
# git has its own built in compression methods
|
||||
*.7z
|
||||
*.dmg
|
||||
*.gz
|
||||
*.iso
|
||||
*.jar
|
||||
*.rar
|
||||
*.tar
|
||||
*.zip
|
||||
|
||||
# Logs and databases
|
||||
*.log
|
||||
*.sql
|
||||
*.sqlite
|
Loading…
Add table
Add a link
Reference in a new issue