.gitignore 961 Bytes
Newer Older
1
2
3
*.tar.gz

*.exe
4
5
src/bitcoin
src/bitcoind
6
src/bitcoin-cli
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
src/test/test_bitcoin
src/qt/test/test_bitcoin-qt

Makefile.in
aclocal.m4
autom4te.cache/
config.log
config.status
configure
src/bitcoin-config.h
src/bitcoin-config.h.in
src/build-aux/
src/stamp-h1
share/setup.nsi
share/qt/Info.plist

src/qt/*.moc
src/qt/moc_*.cpp
src/qt/forms/ui_*.h

src/qt/test/moc*.cpp

29
30
.deps
.dirstamp
31
32
.*.swp
*.*~*
Luke Dashjr's avatar
Luke Dashjr committed
33
34
35
36
*.bak
*.rej
*.orig
*.o
Chris Beams's avatar
Chris Beams committed
37
*.o-*
Luke Dashjr's avatar
Luke Dashjr committed
38
39
*.patch
.bitcoin
40
41
42
43
44
45
46
*.a
*.pb.cc
*.pb.h

*.log
*.trs
*.dmg
47

48
49
50
*.json.h
*.raw.h

51
# Compilation and Qt preprocessor part
52
53
54
*.qm
Makefile
bitcoin-qt
55
Bitcoin-Qt.app
56

57
58
59
60
# Unit-tests
Makefile.test
bitcoin-qt_test

61
# Resources cpp
62
qrc_*.cpp
63
64

# Qt creator
p2k's avatar
p2k committed
65
*.pro.user
66
67

# Mac specific
p2k's avatar
p2k committed
68
.DS_Store
69
build
70

71
72
73
74
75
76
77
78
79
80
81
82
83
84
#lcov
*.gcno
/*.info
test_bitcoin.coverage/
total.coverage/
coverage_percent.txt

#build tests
linux-coverage-build
linux-build
win32-build
qa/pull-tester/run-bitcoind-for-test.sh
qa/pull-tester/build-tests.sh

harry's avatar
harry committed
85
!src/leveldb*/Makefile
Karel Mašek's avatar
Karel Mašek committed
86
87
CMakeLists.txt
.idea/