| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- #########################
- # openFrameworks patterns
- #########################
- # build files
- openFrameworks.a
- openFrameworksDebug.a
- openFrameworksUniversal.a
- libs/openFrameworksCompiled/lib/*/*
- !libs/openFrameworksCompiled/lib/*/.gitkeep
- # apothecary
- scripts/apothecary/build
- # rule to avoid non-official addons going into git
- # see addons/.gitignore
- addons/*
- # rule to avoid non-official apps going into git
- # see apps/.gitignore
- apps/*
- # also, see example/.gitignore
- #########################
- # general
- #########################
- [Bb]uild/
- [Oo]bj/
- *.o
- example/**/[Dd]ebug*/
- example/**/[Rr]elease*/
- example/**/gcc-debug/
- example/**/gcc-release/
- example/obj/
- example/bin/*
- tests/**/[Dd]ebug*/
- tests/**/[Rr]elease*/
- tests/**/gcc-debug/
- tests/**/gcc-release/
- *.mode*
- *.app/
- *.pyc
- .svn/
- *.log
- *.cpp.eep
- *.cpp.elf
- *.cpp.hex
- #########################
- # IDE
- #########################
- # 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
- # Android Studio
- .idea
- .gradle
- gradle
- gradlew
- gradlew.bat
- # QtCreator
- *.qbs.user
- *.pro.user
- *.pri
- #########################
- # 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
- /libs/openFrameworksCompiled/project/android/paths.make
- # Android Studio
- *.iml
- #########################
- # miscellaneous
- #########################
- .mailmap
- # ofxMSATensorFlow specific
- libs/tensorflow/lib/*
- build*
- *.so
- */bin/example-*
- */bin/*/training_data/*
- *.ckpt
- *.pb
- *.data
- checkpoint
- *.qbs.user.*
- *.tar.gz
|