.gitignore 749 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. .idea/
  19. # Temporary build files
  20. /_vfsimporter.*
  21. *.pdb
  22. *.obj
  23. *.o
  24. *.gch
  25. *.pch
  26. /+DESC
  27. /+MANIFEST
  28. /pkg-plist
  29. /debug.ks
  30. # Produced installer/executables
  31. /*.exe
  32. /*.deb
  33. /*.rpm
  34. /*.app
  35. /*.pkg
  36. /*.dmg
  37. /*.whl
  38. /*.txz
  39. /*.apk
  40. # CMake
  41. /build/
  42. CMakeCache.txt
  43. CMakeFiles/
  44. CMakeScripts/
  45. Makefile
  46. cmake_install.cmake
  47. install_manifest.txt
  48. CTestTestfile.cmake
  49. # Operating system
  50. Thumbs.db
  51. ehthumbs.db
  52. .DS_Store
  53. # macOS
  54. .DS_Store
  55. # Python
  56. __pycache__/
  57. *.pyc
  58. *.pyo
  59. # Test tool cache directories
  60. .tox/
  61. .cache/
  62. .pytest_cache/
  63. /.settings/
  64. /.cproject
  65. /.project