.gitignore 567 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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