.gitignore 796 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # ---> C
  2. # Object files
  3. *.o
  4. *.ko
  5. *.obj
  6. *.elf
  7. # Precompiled Headers
  8. *.gch
  9. *.pch
  10. # Libraries
  11. *.lib
  12. *.a
  13. *.la
  14. *.lo
  15. # Shared objects (inc. Windows DLLs)
  16. *.dll
  17. *.so
  18. *.so.*
  19. *.dylib
  20. # Executables
  21. *.exe
  22. *.out
  23. *.app
  24. *.i*86
  25. *.x86_64
  26. *.hex
  27. # Debug files
  28. *.dSYM/
  29. # ---> CMake
  30. CMakeCache.txt
  31. CMakeFiles
  32. CMakeScripts
  33. Makefile
  34. cmake_install.cmake
  35. install_manifest.txt
  36. # ---> VisualStudioCode
  37. .settings
  38. # ---> macOS
  39. .DS_Store
  40. .AppleDouble
  41. .LSOverride
  42. # Icon must end with two \r
  43. Icon
  44. # Thumbnails
  45. ._*
  46. # Files that might appear in the root of a volume
  47. .DocumentRevisions-V100
  48. .fseventsd
  49. .Spotlight-V100
  50. .TemporaryItems
  51. .Trashes
  52. .VolumeIcon.icns
  53. # Directories potentially created on remote AFP share
  54. .AppleDB
  55. .AppleDesktop
  56. Network Trash Folder
  57. Temporary Items
  58. .apdisk
  59. bochs_log.txt
  60. *.img
  61. *.bin
  62. .vscode/