.gitignore 551 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # CMake and build folders.
  2. bin/*
  3. build/*
  4. lib/*
  5. out/*
  6. CMakeSettings.json
  7. CMakeUserPresets.json
  8. vcpkg_installed/*
  9. cmake-build-*/
  10. # IDE specific folders
  11. .idea/*
  12. .vscode/*
  13. .vs/*
  14. # Binary files
  15. *.exe
  16. *.dll
  17. *.lib
  18. *.a
  19. *.dylib
  20. **/.DS_Store
  21. # Dependencies
  22. simdjson/
  23. deps/
  24. # Test files
  25. tests/gltf/intel_sponza/
  26. tests/gltf/sample-models/
  27. tests/gltf/good-froge/
  28. tests/gltf/deccer-cubes/
  29. tests/gltf_loaders/
  30. # gltf Rust wrapper
  31. tests/gltf-rs/target
  32. tests/gltf-rs/Cargo.lock
  33. # Example files
  34. *.ngfx-proj
  35. SpirvTemp/
  36. # Docs
  37. docs/xml/
  38. docs/Doxyfile
  39. docs/conf.py