-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
87 lines (74 loc) · 1.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# retain folder structure
*
!*/
# dont ignore source files
!*.cpp
!*.hpp
!*.c
!*.h
!*.def
!*.inc
!*.[ch].in
!data/**/*
!*.mm
# dont ignore flex and bison files
!*.y
!*.l
!*.lang
# dont ignore test files
!*.pl0
!*.ct
!*.obr
# ignore everything in subprojects except select files
subprojects/*
# dont ignore readme and build files
!LICENSE
!*.md
!*.build
!meson_options.txt
!*.wrap
# dont ignore subprojects
!subprojects/packagefiles
!subprojects/packagefiles/**/*
!subprojects/mini_gmp/**/*
!subprojects/stb_printf/**/*
# dont ignore config files
!Doxyfile.in
!*.dox
!.clangd
!.clang-tidy
!.clang-format
!.github/workflows/*.yml
!*.xml
!*.json
!*.toml
# dont ignore licenses
!LICENSE.txt
!README
!Changelog
# dont ignore scripts
!*.py
!*.sh
# ignore autogenerated files and folders
.vscode/*
temp/
*build/
*bundle*/
fuzz-*/
genout*/
out.c
*out/
out.h
out.cpp
DONT_COMMIT_THIS
node_modules/
# grammar files
!driver/**/*
interface/gui/interface/imgui/examples/example_android_opengl3/android/app/src/main/AndroidManifest.xml
# we do want to commit the snippets
!.vscode/cthulhu.code-snippets
# object files, debug info, etc
*.obj
*.exe
*.ilk
*.pdb