We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 025932e + 9af50ce commit 9cbdce4Copy full SHA for 9cbdce4
.gitignore
@@ -0,0 +1,57 @@
1
+# Ignore CMake build files
2
+CMakeFiles/
3
+/CMakeCache.txt
4
+/cmake_install.cmake
5
+/Makefile
6
+/compile_commands.json
7
+
8
+# Ignore generated files
9
+*.o
10
+*.obj
11
+*.lo
12
+*.la
13
+*.a
14
+*.lib
15
+*.so
16
+*.so.*
17
+*.dylib
18
+*.dll
19
+*.exe
20
+*.out
21
+*.app
22
+*.i
23
+*.ii
24
+*.s
25
+*.su
26
+*.mod
27
+*.tmod
28
+*.pdb
29
+*.idb
30
31
+*.ilk
32
+*.nc
33
34
+# Ignore dependency files
35
+*.d
36
+*.dSYM/
37
+*.dwo
38
39
+# Ignore editor/IDE files
40
+*.swp
41
+*.swo
42
+*~
43
+*.bak
44
+*.tmp
45
+*.temp
46
+*.log
47
+*.diff
48
+*.patch
49
+*.orig
50
+*.rej
51
+*.old
52
+*.new
53
+*.sublime-workspace
54
+*.sublime-project
55
+*.vscode/
56
+.idea/
57
+*.code-workspace
0 commit comments