-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
87 lines (77 loc) · 1.89 KB
/
Copy path.gitignore
File metadata and controls
87 lines (77 loc) · 1.89 KB
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
# =============================================================================
# DownpourRecomp .gitignore
# =============================================================================
# CRITICAL: this project must NOT distribute any of the following:
# - Silent Hill: Downpour game files (XEX executable, content, DLC, ISOs)
# - Any binary derived from the game executable (e.g. codegen output)
# - Any captured frames, screenshots, or video of the game
#
# Users build the project against their own legally-owned copy of the game.
# =============================================================================
# --- Game files (never commit) ----------------------------------------------
Game/
assets/
**/default.xex
**/default.pe.bin
**/*.xex
**/*.pe.bin
**/*.iso
**/*.ISO
**/*.god
**/*.GOD
**/*.xexp
**/*.zar
**/*.dlc
# --- ReXGlue codegen output (derived from XEX, regeneratable) --------------
generated/
# --- Build artifacts --------------------------------------------------------
out/
build/
build-*/
CMakeFiles/
CMakeCache.txt
cmake_install.cmake
install_manifest.txt
*.ninja
*.ninja_*
compile_commands.json
# --- Compiled binaries ------------------------------------------------------
*.dll
*.exe
*.pdb
*.lib
*.so
*.dylib
*.obj
*.o
# --- Captures / debug dumps -------------------------------------------------
*.rdc
renderdoc_*
*.dmp
trace_*
# --- Logs -------------------------------------------------------------------
*.log
logs/
# --- Archives (used to ship game / captures) --------------------------------
*.zip
*.7z
*.rar
*.tar
*.tar.gz
*.tgz
# --- Editor / IDE -----------------------------------------------------------
.vs/
.vscode/
.idea/
*.user
*.suo
*.code-workspace
.cache/
# --- OS junk ----------------------------------------------------------------
.DS_Store
Thumbs.db
desktop.ini
# --- Local toolchain caches -------------------------------------------------
.cache/
__pycache__/
*.pyc