| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # CMake and build folders.
- bin/*
- build/*
- lib/*
- out/*
- CMakeSettings.json
- CMakeUserPresets.json
- vcpkg_installed/*
- cmake-build-*/
- # IDE specific folders
- .idea/*
- .vscode/*
- .vs/*
- # Binary files
- *.exe
- *.dll
- *.lib
- *.a
- *.dylib
- **/.DS_Store
- # Dependencies
- simdjson/
- deps/
- # Test files
- tests/gltf/intel_sponza/
- tests/gltf/sample-models/
- tests/gltf/good-froge/
- tests/gltf/deccer-cubes/
- tests/gltf_loaders/
- # gltf Rust wrapper
- tests/gltf-rs/target
- tests/gltf-rs/Cargo.lock
- # Example files
- *.ngfx-proj
- SpirvTemp/
- # Docs
- docs/xml/
- docs/Doxyfile
- docs/conf.py
|