.gitignore 532 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Primary CMake build target
  2. /Build/
  3. # Primary CMake install target for development
  4. /Install/
  5. # Other common build targets
  6. /build*/
  7. /Build*/
  8. /Bin/
  9. /bin/
  10. /Lib/
  11. /lib/
  12. /out/
  13. /Install*/
  14. /install*/
  15. # Distribution target
  16. /Distribution/
  17. # macOS directory info file
  18. .DS_Store
  19. # Hidden folders
  20. .*/
  21. # Not ignore .github/
  22. !.github/
  23. # CMake user files
  24. CMakeUserPresets.json
  25. # Visual Studio project files
  26. *.suo
  27. *.user
  28. *.opensdf
  29. *.dir/
  30. Win32/
  31. x64/
  32. vcpkg/
  33. CMakeSettings.json
  34. compile_commands.json