-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
63 lines (56 loc) · 1.04 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Exclude all files in the bin directory and its subdirectories
bin/*
# Include .dll and .exe files in bin and its subdirectories
#!bin/**/*.dll
#!bin/**/*.exe
# Exclude other files in bin subdirectories (overrides previous includes)
bin/**/CMakeFiles/
bin/**/CMakeScripts
bin/**/cmake-build-debug
bin/**/*.txt
bin/**/*.cmake
bin/**/Makefile
bin/**/*.make
bin/**/*.ts
bin/**/*.marks
bin/**/*.log
bin/**/*.check_cache
bin/**/*.cbp
bin/**/vc*.pdb
bin/**/*.cbp
bin/**/*.ilk
bin/**/*.filters
bin/**/*.sln
bin/**/*.vcxproj
bin/**/*.stamp
bin/**/*.depend
bin/**/*.recipe
bin/**/*.tlog
bin/**/*.lastbuildstate
bin/**/*.h
bin/**/*.c
bin/**/*.cpp
bin/**/*.d
# Compiled Object files
bin/**/.DS_Store
bin/**/*.slo
bin/**/*.lo
bin/**/*.o
bin/**/*.obj
bin/**/*.out
bin/**/*.bin
# Precompiled Headers
bin/**/*.gch
bin/**/*.pch
# Fortran module files
bin/**/*.mod
bin/**/*.smod
#ignore external
external/
#ignore cmake presets
CMakePresets.json
#ignore vscode
.vscode/
# Ignore Qt-Project user files
*.user
TODO