-
-
Save mimetaur/70b40784fe2bf459cea2e2d33c744848 to your computer and use it in GitHub Desktop.
OpenFrameworks Project .gitignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########################### | |
# 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 | |
## User settings | |
xcuserdata/ | |
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) | |
*.xcscmblueprint | |
*.xccheckout | |
# Visual Studio | |
*.sdf | |
*.opensdf | |
*.suo | |
*.pdb | |
*.ilk | |
*.aps | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment