Skip to content

Commit 4f38a1f

Browse files
committed
add gitignore
1 parent 733a8e8 commit 4f38a1f

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed

.gitignore

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/cmake,visualstudiocode,c++
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=cmake,visualstudiocode,c++
3+
4+
### C++ ###
5+
# Prerequisites
6+
*.d
7+
8+
# Compiled Object files
9+
*.slo
10+
*.lo
11+
*.o
12+
*.obj
13+
14+
# Precompiled Headers
15+
*.gch
16+
*.pch
17+
18+
# Compiled Dynamic libraries
19+
*.so
20+
*.dylib
21+
*.dll
22+
23+
# Fortran module files
24+
*.mod
25+
*.smod
26+
27+
# Compiled Static libraries
28+
*.lai
29+
*.la
30+
*.a
31+
*.lib
32+
33+
# Executables
34+
*.exe
35+
*.out
36+
*.app
37+
38+
### CMake ###
39+
CMakeLists.txt.user
40+
CMakeCache.txt
41+
CMakeFiles
42+
CMakeScripts
43+
Testing
44+
Makefile
45+
cmake_install.cmake
46+
install_manifest.txt
47+
compile_commands.json
48+
CTestTestfile.cmake
49+
_deps
50+
51+
### CMake Patch ###
52+
# External projects
53+
*-prefix/
54+
55+
### VisualStudioCode ###
56+
.vscode/*
57+
!.vscode/settings.json
58+
!.vscode/tasks.json
59+
!.vscode/launch.json
60+
!.vscode/extensions.json
61+
*.code-workspace
62+
63+
# Local History for Visual Studio Code
64+
.history/
65+
66+
### VisualStudioCode Patch ###
67+
# Ignore all local history of files
68+
.history
69+
.ionide
70+
71+
# End of https://www.toptal.com/developers/gitignore/api/cmake,visualstudiocode,c++

0 commit comments

Comments
 (0)