-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitignore
72 lines (60 loc) · 1.58 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
##
# NOT ignoring .exe and .dll as we're including libs and package files:
## Which means YOU MAY NEED TO ALTER YOUR GLOBAL GITCONFIG
##
#All delphi compiled units in the DCU dir
dcu/
#All Delphi library files - we include libinstalls for you to install your own lib dir as some are install sources
# I re-added the lib dir in 2022 after every single person who got involved in the codebase benefitted by having my lib dir
#lib/
#Delphi ignore files - see https://github.com/github/gitignore/blob/master/Delphi.gitignore
*.local
*.identcache
*.projdata
*.tvsconfig
*.dsk
#Borland Delphi 2006 History files
src/_history/
*.~*
#QuickPlay puts its binary and resources in the qps directory when run up. But we want to publish QP versions without these files in. Quick solution: commit then replace working dir with commit
qp/QP.exe
qp/QP384.exe
qp/data
qp/data_PREV
qp/data_PREV.7z
qp/data_REAL
qp/data_FAKE
qp/dats
qp/search
qp/temp
#None of these files in the src folder please
src/*.exe
src/*.dll
src/*.bpl
src/*.bpi
src/*.dcp
src/*.so
src/*.apk
src/*.drc
src/*.map
src/*.dres
src/*.rsm
src/*.tds
src/*.dcu
#mametool logging
mametool_logfile.txt
#Mess inis - the user needs to select their own mame executable and do a mame scan, we can't know in advance what that might be
qp/EFind/Mess_Mame.ini
qp/EFind/Mess_Retroarch.ini
#Personal Efind inis - not for sharing as the user must setup their own or they will get confused
qp/EFind/Custom.ini
qp/EFind/Gamebase.ini
#Starting editing from a mac
.DS_Store
._.DS_Store
#nodejs specific
node_modules/
QPNode.exe_test
qp/qpnode_config.json
#testing
qp_test