Skip to content

Instantly share code, notes, and snippets.

@brannondorsey
Created May 5, 2016 05:48
Show Gist options
  • Save brannondorsey/1df079ea84266e5c5a959602689e2370 to your computer and use it in GitHub Desktop.
Save brannondorsey/1df079ea84266e5c5a959602689e2370 to your computer and use it in GitHub Desktop.
OpenFrameworks Project .gitignore
###########################
# 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
*.perspective
*.perspectivev3
*.mode1v3
*.mode2v3
# XCode 4
xcuserdata
*.xcworkspace
# Code::Blocks
*.depend
*.layout
# 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
@brannondorsey
Copy link
Author

Not sure who wrote this, but its been floating around and I've been using it for a while. Probably needs updating as this was back when Code::Blocks was still a supported OF dev platform (~v0.8.4).

@mccap079
Copy link

Still works great, thanks.

Would also add the following lines in the Visual Studio section:
.vs/*
.vs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment