| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- # makepanda directories
- /built*/
- /thirdparty/
- /targetroot/
- /dstroot/
- # Core dumps
- core
- core.*
- vgcore.*
- *.core
- # Editor files/directories
- *.save
- *.save.1
- *.sublime-workspace
- .vscode/
- # Temporary build files
- /_vfsimporter.*
- *.pdb
- *.obj
- *.o
- *.gch
- *.pch
- /+DESC
- /+MANIFEST
- /pkg-plist
- # Produced installer/executables
- /*.exe
- /*.deb
- /*.rpm
- /*.app
- /*.pkg
- /*.dmg
- /*.whl
- /*.txz
- # CMake
- /build/
- CMakeCache.txt
- CMakeFiles/
- CMakeScripts/
- Makefile
- cmake_install.cmake
- install_manifest.txt
- CTestTestfile.cmake
- # Windows
- Thumbs.db
- ehthumbs.db
- # Python
- __pycache__/
- *.pyc
- *.pyo
- # Test tool cache directories
- .tox/
- .cache/
|