.gitignore 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # gitginore template for creating Snap packages
  2. # website: https://snapcraft.io/
  3. parts/
  4. prime/
  5. stage/
  6. *.snap
  7. # Snapcraft global state tracking data(automatically generated)
  8. # https://forum.snapcraft.io/t/location-to-save-global-state/768
  9. /snap/.snapcraft/
  10. # Source archive packed by `snapcraft cleanbuild` before pushing to the LXD container
  11. /*_source.tar.bz2
  12. # Prerequisites
  13. *.d
  14. # Compiled Object files
  15. *.slo
  16. *.lo
  17. *.o
  18. *.obj
  19. # Precompiled Headers
  20. *.gch
  21. *.pch
  22. # Compiled Dynamic libraries
  23. *.so
  24. *.dylib
  25. *.dll
  26. # Fortran module files
  27. *.mod
  28. *.smod
  29. # Compiled Static libraries
  30. *.lai
  31. *.la
  32. *.a
  33. *.lib
  34. # Executables
  35. *.exe
  36. *.out
  37. *.app
  38. # Compiled man page
  39. btop.1
  40. build
  41. bin
  42. btop
  43. /obj/
  44. config.h
  45. .*/
  46. # Optional libraries
  47. lib/rocm_smi_lib
  48. # Don't ignore .github directory
  49. !.github/
  50. # Ignore files created by Qt Creator
  51. *.config
  52. *.creator
  53. *.creator.user
  54. *.creator.user.*
  55. *.cflags
  56. *.cxxflags
  57. *.files
  58. *.includes
  59. # CMake
  60. CMakeLists.txt.user
  61. CMakeCache.txt
  62. CMakeFiles
  63. CMakeScripts
  64. Testing
  65. Makefile
  66. cmake_install.cmake
  67. install_manifest.txt
  68. compile_commands.json
  69. CTestTestfile.cmake
  70. _deps
  71. CMakeUserPresets.json
  72. # CLion
  73. cmake-build-*