Skip to content

Commit 96a4472

Browse files
authored
Merge pull request #4752 from moezgwall/improve-cpp-gitignore
Improve C++.gitignore
2 parents 86922ae + 63c110e commit 96a4472

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

C++.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
*.so
2222
*.dylib
2323
*.dll
24+
*.so.*
25+
2426

2527
# Fortran module files
2628
*.mod
@@ -37,5 +39,31 @@
3739
*.out
3840
*.app
3941

42+
# Build directories
43+
build/
44+
Build/
45+
build-*/
46+
47+
# CMake generated files
48+
CMakeFiles/
49+
CMakeCache.txt
50+
cmake_install.cmake
51+
Makefile
52+
install_manifest.txt
53+
compile_commands.json
54+
55+
# Temporary files
56+
*.tmp
57+
*.log
58+
*.bak
59+
*.swp
60+
61+
# vcpkg
62+
vcpkg_installed/
63+
4064
# debug information files
4165
*.dwo
66+
67+
# test output & cache
68+
Testing/
69+
.cache/

0 commit comments

Comments
 (0)