forked from HoerTech-gGmbH/openMHA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
98 lines (80 loc) · 2.13 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# This file is part of the HörTech Open Master Hearing Aid (openMHA)
# Copyright © 2013 2014 2015 2016 2017 2018 2019 2020 HörTech gGmbH
#
# openMHA is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License.
#
# openMHA is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License, version 3 for more details.
#
# You should have received a copy of the GNU Affero General Public License,
# version 3 along with openMHA. If not, see <http://www.gnu.org/licenses/>.
# The readme recommends copying all plugins into one "bin" directory.
bin
lib
include
# Auto-generated pdf documents
openMHA_*.pdf
pdf-*.zip
# Editor backup and lock files
*~
.#*
\#*#
*.bak
~$*
.~lock*
*.swp
# system-specific configuration
config.mk
# An artifact left by octave when it crashes
mha/tools/mfiles/octave-workspace
# Platform-specific directories where build artifacts are stored. These globs
# catch directories of the form "<arch>-<platform>-<compiler>[-<version>]/".
*-linux-*/
*-MinGW-*/
x86_64-Darwin-clang
# Build artefacts
git_commit_hash.txt
# coverage analysis artifacts
coverage.info
coverage
*.gcda
*.gcno
*.pyc
# Apple-specific
.DS_Store
# octave specific files
mha/tools/mfiles/classpath.txt
# python cache
examples/09-localizer-steering-beamformer/visualisation_web/__pycache__
examples/09-localizer-steering-beamformer/Output/*
*.egg-info/
# from patching
*.rej
*.orig
# debian packages leave intermediate make targets in repository base directory
*.deb
# debian packages
mha/tools/packaging/deb
#local editor configuration
.clang_complete
.dir-locals.el
GPATH
GRTAGS
GTAGS
.clangd
compile_commands.json
.vscode/
#Windows packaging artifacts
*.exe
#Node-red auto-backup files
*.flow.backup
# Running mhacontrol in pre-release tests creates these files in Matlab's CWD:
mhacfg_localhost_33337_mha.mat
mhagui_window_positions.mat
# Local Variables:
# coding: utf-8-unix
# End: