| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- # makepanda directories
- /built*/
- /thirdparty/
- /targetroot/
- /dstroot/
- /sdks/
- # Core dumps and traces
- core
- core.*
- vgcore.*
- *.core
- *.trace
- # Editor files/directories
- *.save
- *.save.1
- *.sublime-workspace
- .vscode/
- .idea/
- # Temporary build files
- /_vfsimporter.*
- *.pdb
- *.obj
- *.o
- *.gch
- *.pch
- /+DESC
- /+MANIFEST
- /pkg-plist
- /debug.ks
- # Produced installer/executables
- /*.exe
- /*.deb
- /*.rpm
- /*.app
- /*.pkg
- /*.dmg
- /*.whl
- /*.txz
- /*.apk
- # CMake
- /build/
- CMakeCache.txt
- CMakeFiles/
- CMakeScripts/
- Makefile
- cmake_install.cmake
- install_manifest.txt
- CTestTestfile.cmake
- # Operating system
- Thumbs.db
- ehthumbs.db
- .DS_Store
- # macOS
- .DS_Store
- # Python
- __pycache__/
- *.pyc
- *.pyo
- # Test tool cache directories
- .tox/
- .cache/
- .pytest_cache/
- /.settings/
- /.cproject
- /.project
|