Advertisement
lmariscal

cpp.gitignore

Oct 29th, 2017
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 1.46 KB | None | 0 0
  1. ### C++ ###
  2. # Prerequisites
  3. *.d
  4.  
  5. # Compiled Object files
  6. *.slo
  7. *.lo
  8. *.o
  9. *.obj
  10.  
  11. # Precompiled Headers
  12. *.gch
  13. *.pch
  14.  
  15. # Fortran module files
  16. *.mod
  17. *.smod
  18.  
  19. # Executables
  20. *.exe
  21. *.out
  22. *.app
  23.  
  24. ### CMake ###
  25. CMakeCache.txt
  26. CMakeFiles
  27. CMakeScripts
  28. Testing
  29. Makefile
  30. cmake_install.cmake
  31. install_manifest.txt
  32. compile_commands.json
  33. CTestTestfile.cmake
  34. build
  35.  
  36. ### Linux ###
  37. *~
  38.  
  39. # temporary files which can be created if a process still has a handle open of a deleted file
  40. .fuse_hidden*
  41.  
  42. # KDE directory preferences
  43. .directory
  44.  
  45. # Linux trash folder which might appear on any partition or disk
  46. .Trash-*
  47.  
  48. # .nfs files are created when an open file is removed but is still being accessed
  49. .nfs*
  50.  
  51. ### macOS ###
  52. *.DS_Store
  53. .AppleDouble
  54. .LSOverride
  55.  
  56. # Icon must end with two \r
  57. Icon
  58.  
  59. # Thumbnails
  60. ._*
  61.  
  62. # Files that might appear in the root of a volume
  63. .DocumentRevisions-V100
  64. .fseventsd
  65. .Spotlight-V100
  66. .TemporaryItems
  67. .Trashes
  68. .VolumeIcon.icns
  69. .com.apple.timemachine.donotpresent
  70.  
  71. # Directories potentially created on remote AFP share
  72. .AppleDB
  73. .AppleDesktop
  74. Network Trash Folder
  75. Temporary Items
  76. .apdisk
  77.  
  78. ### Windows ###
  79. # Windows thumbnail cache files
  80. Thumbs.db
  81. ehthumbs.db
  82. ehthumbs_vista.db
  83.  
  84. # Folder config file
  85. Desktop.ini
  86.  
  87. # Recycle Bin used on file shares
  88. $RECYCLE.BIN/
  89.  
  90. # Windows Installer files
  91. *.cab
  92. *.msi
  93. *.msm
  94. *.msp
  95.  
  96. # Windows shortcuts
  97. *.lnk
  98.  
  99. # End of https://www.gitignore.io/api/c++,linux,macos,cmake,windows
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement