| 1234567891011121314151617181920212223242526272829303132333435363738 |
- # Ignore build directory
- /.build
- /.installation
- # Ignore Python stuff
- __pycache__
- # Ignore C# stuff
- /tools/**/bin
- /tools/**/obj
- /tools/**/Obj
- /tools/**/TestResults
- /tools/**/test-results
- /tools/**/*.csproj.user
- /tools/**/*.suo
- /tools/**/*.cache
- /tools/**/*~
- /tools/**/*.swp
- /tools/**/*.userprefs
- /tools/**/*.pidb
- # Ignore some third party dirs
- /third/physx/*/include
- /third/physx/*/lib
- /third/luajit/**/*.o
- /third/luajit/src/host/buildvm
- /third/luajit/src/host/buildvm_arch.h
- /third/luajit/src/host/minilua
- /third/luajit/src/jit/vmdef.lua
- /third/luajit/src/libluajit.a
- /third/luajit/src/libluajit.so
- /third/luajit/src/lj_bcdef.h
- /third/luajit/src/lj_ffdef.h
- /third/luajit/src/lj_folddef.h
- /third/luajit/src/lj_libdef.h
- /third/luajit/src/lj_recdef.h
- /third/luajit/src/lj_vm.s
- /third/luajit/src/luajit
|