2
0

.gitignore 723 B

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