Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5e3c2c1f92975c49c8afe759444b053546738331 (plain) (blame)
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
# ignore various emacs droppings
*~
\#*\#

# agent
/agent/obj
/agent/msvc/obj
/agent/msvc/*.user
/agent/msvc/*.opendb
/agent/msvc/*.VC.db
/agent/msvc/*.sdf
/agent/msvc/.vs

# cmake/
/agent/cmake/msvc-debug
/agent/cmake/msvc-release
/agent/cmake/gcc-release
/agent/cmake/gcc-debug

# server/
/server/obj
/server/msvc/obj
/server/msvc/*.user
/server/msvc/*.opendb
/server/msvc/*.VC.db
/server/msvc/*.sdf
/server/msvc/.vs

# tests/cmd-line/
/tests/cmd-line/obj

# examples/daytime/
/examples/daytime/obj

# tests/mem-leaks/
/tests/mem-leaks/obj

# tests/test-dwarf/
/tests/test-dwarf/obj
/tests/test-dwarf/msvc/obj
/tests/test-dwarf/msvc/*.user
/tests/test-dwarf/msvc/*.opendb
/tests/test-dwarf/msvc/*.VC.db
/tests/test-dwarf/msvc/*.sdf
/tests/test-dwarf/msvc/.vs

Back to the top