.gitignore 651 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # suppress compiler/linker output
  2. *.[oa]
  3. *.obj
  4. *.gcno
  5. [Dd]ebug/
  6. [Rr]elease/
  7. # suppress output of build process
  8. gcc_[12].txt
  9. testok.txt
  10. test_*.txt
  11. tv.txt
  12. *_tv.txt
  13. # *nix/windows test executables
  14. test
  15. test.exe
  16. tv_gen
  17. tv_gen.exe
  18. timing
  19. timing.exe
  20. # Visual Studio special files
  21. # ignore user specific settings
  22. *.user
  23. *.suo
  24. # ignore non-compressed browse file (holds information for ClassView, IntelliSense and WizardBar)
  25. *.ncb
  26. # ignore VS intermediate and program database files
  27. *.idb
  28. *.pdb
  29. # oops ;) but we don't want them to appear in the repository...
  30. *.stackdump
  31. *.core
  32. # misc
  33. *.rej
  34. *.patch
  35. *.diff
  36. *.orig