-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
59 lines (50 loc) · 791 Bytes
/
.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
# Ignore all build-related files
/build/
/bin/
/obj/
/out/
# Ignore contents of external dependencies but keep the folder structure
/deps/raylib/lib/*
/deps/raylib/include/*
# Ensure folder structure is kept by including .gitkeep files
!deps/raylib/lib/.gitkeep
!deps/raylib/include/.gitkeep
# Ignore system-specific files
.DS_Store
Thumbs.db
# Ignore Visual Studio specific files
*.vcxproj.user
*.vcxproj.filters
*.suo
*.ncb
*.opendb
*.opensdf
*.vspscc
*.vssscc
.vscode/
.vs/
# Ignore temporary files
*.tmp
*.log
*.swp
# Ignore compiled object files
*.o
#*.obj
*.dll
*.lib
*.so
*.a
*.pdb
# Ignore autogenerated files (like IDE configurations)
.idea/
.vscode/
*.user
*.ipch
*.tlog
*.lastbuildstate
# Ignore backup or crash reports
*.bak
*.stackdump
*.dmp
# Ignore core dumps
core.*