.gitignore 628 B

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