.gitignore 938 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # Compiled Object files
  2. *.slo
  3. *.lo
  4. *.o
  5. # Compiled Dynamic libraries
  6. *.dll
  7. *.so
  8. *.dylib
  9. # Compiled Static libraries
  10. *.lai
  11. *.la
  12. *.a
  13. # CMake
  14. CMakeCache.txt
  15. CMakeFiles
  16. Makefile
  17. cmake_install.cmake
  18. install_manifest.txt
  19. # Python
  20. *.py[cod]
  21. # Installer logs
  22. pip-log.txt
  23. # Unit test / coverage reports
  24. .coverage
  25. .tox
  26. nosetests.xml
  27. #Translations
  28. *.mo
  29. #Mr Developer
  30. .mr.developer.cfg
  31. # custom
  32. ycm_core_tests
  33. # When we use the bcp tool to copy over the parts of boost we care about, it
  34. # also copies some cruft files we don't need; this ignores them
  35. cpp/BoostParts/libs/*/build
  36. cpp/BoostParts/libs/*/test
  37. # These folders in cpp/llvm contain lots of upstream cruft we don't care
  38. # about and would rather not have in our tree...
  39. cpp/llvm/docs/*
  40. cpp/llvm/tools/clang/www/*
  41. # ... but excluding these LLVMBuild.txt files breaks the build so we need to
  42. # explicitely include them
  43. !LLVMBuild.txt
  44. # Exclude auto generated vim doc tags.
  45. doc/tags