.gitignore 697 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # makepanda directories
  2. /built*/
  3. /thirdparty/
  4. /targetroot/
  5. /dstroot/
  6. # Core dumps and traces
  7. core
  8. core.*
  9. vgcore.*
  10. *.core
  11. *.trace
  12. # Editor files/directories
  13. *.save
  14. *.save.1
  15. *.sublime-workspace
  16. .vscode/
  17. # Temporary build files
  18. /_vfsimporter.*
  19. *.pdb
  20. *.obj
  21. *.o
  22. *.gch
  23. *.pch
  24. /+DESC
  25. /+MANIFEST
  26. /pkg-plist
  27. /debug.ks
  28. # Produced installer/executables
  29. /*.exe
  30. /*.deb
  31. /*.rpm
  32. /*.app
  33. /*.pkg
  34. /*.dmg
  35. /*.whl
  36. /*.txz
  37. /*.apk
  38. # CMake
  39. /build/
  40. CMakeCache.txt
  41. CMakeFiles/
  42. CMakeScripts/
  43. Makefile
  44. cmake_install.cmake
  45. install_manifest.txt
  46. CTestTestfile.cmake
  47. # Windows
  48. Thumbs.db
  49. ehthumbs.db
  50. # Python
  51. __pycache__/
  52. *.pyc
  53. *.pyo
  54. # Test tool cache directories
  55. .tox/
  56. .cache/
  57. .pytest_cache/
  58. /.settings/
  59. /.cproject
  60. /.project