mirror of
https://github.com/jarro2783/cxxopts.git
synced 2026-01-18 01:11:24 +01:00
Expanded .gitignore coverage. (#344)
This commit is contained in:
82
.gitignore
vendored
82
.gitignore
vendored
@@ -1,9 +1,77 @@
|
|||||||
|
syntax: glob
|
||||||
|
|
||||||
|
# Temporary, cache, swap files
|
||||||
|
\#\#*
|
||||||
*.swp
|
*.swp
|
||||||
build*/
|
*.bkp
|
||||||
CMakeCache.txt
|
|
||||||
Makefile
|
# Files which "ask" to be hidden
|
||||||
CMakeFiles/
|
*~
|
||||||
Testing/
|
.*
|
||||||
CTestTestfile.cmake
|
unused/
|
||||||
cmake_install.cmake
|
|
||||||
|
# Build artifacts
|
||||||
|
*.a
|
||||||
|
*.o
|
||||||
|
*.so
|
||||||
|
*.ptx
|
||||||
|
bin/*
|
||||||
|
lib/*
|
||||||
|
build/
|
||||||
|
build-*/
|
||||||
bazel-*
|
bazel-*
|
||||||
|
|
||||||
|
# Core dumps
|
||||||
|
core
|
||||||
|
core.*
|
||||||
|
core-*
|
||||||
|
|
||||||
|
# CMake & CTest-generated files
|
||||||
|
CMakeCache.txt
|
||||||
|
CMakeFiles/
|
||||||
|
cmake_install.cmake
|
||||||
|
CMakeScripts/*
|
||||||
|
CMakeTmp/*
|
||||||
|
Makefile
|
||||||
|
CTestTestfile.cmake
|
||||||
|
Testing/
|
||||||
|
|
||||||
|
# Eclise IDE-related files
|
||||||
|
.project
|
||||||
|
.cproject
|
||||||
|
.settings
|
||||||
|
|
||||||
|
# CLion IDE-related files
|
||||||
|
.idea/
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
|
# Patching
|
||||||
|
*.diff
|
||||||
|
*.rej
|
||||||
|
*.orig
|
||||||
|
|
||||||
|
# Files/folders downloaded from other repositories as part of the build
|
||||||
|
external/*
|
||||||
|
third-party/*
|
||||||
|
|
||||||
|
# Miscellaneous
|
||||||
|
tags
|
||||||
|
log
|
||||||
|
*.log
|
||||||
|
*.v3breakpoints
|
||||||
|
gmon.out
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Doxygen
|
||||||
|
doxygen.log
|
||||||
|
Doxyfile
|
||||||
|
docs/
|
||||||
|
|
||||||
|
# Archives
|
||||||
|
*.zip
|
||||||
|
*.gz
|
||||||
|
*.bz2
|
||||||
|
*.tgz
|
||||||
|
*.tar
|
||||||
|
*.xz
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user