Skip to content

Commit b0193db

Browse files
committed
Merge pull request #1 from torbjoernk/feature/doxygen
adding first draft of Doxygen configuration
2 parents 1c24566 + ccad97a commit b0193db

File tree

3 files changed

+1937
-0
lines changed

3 files changed

+1937
-0
lines changed

.gitignore

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# other stuff
2+
doc/build
3+
4+
# Created by http://www.gitignore.io
5+
6+
### C ###
7+
# Object files
8+
*.o
9+
*.ko
10+
*.obj
11+
*.elf
12+
13+
# Libraries
14+
*.lib
15+
*.a
16+
17+
# Shared objects (inc. Windows DLLs)
18+
*.dll
19+
*.so
20+
*.so.*
21+
*.dylib
22+
23+
# Executables
24+
*.exe
25+
*.out
26+
*.app
27+
*.i*86
28+
*.x86_64
29+
*.hex
30+
31+
32+
### C++ ###
133
# Compiled Object files
234
*.slo
335
*.lo
@@ -19,3 +51,100 @@
1951
*.exe
2052
*.out
2153
*.app
54+
55+
56+
### Eclipse ###
57+
*.pydevproject
58+
.metadata
59+
.gradle
60+
bin/
61+
tmp/
62+
*.tmp
63+
*.bak
64+
*.swp
65+
*~.nib
66+
local.properties
67+
.settings/
68+
.loadpath
69+
70+
# External tool builders
71+
.externalToolBuilders/
72+
73+
# Locally stored "Eclipse launch configurations"
74+
*.launch
75+
76+
# CDT-specific
77+
.cproject
78+
79+
# PDT-specific
80+
.buildpath
81+
82+
# sbteclipse plugin
83+
.target
84+
85+
# TeXlipse plugin
86+
.texlipse
87+
88+
89+
### Emacs ###
90+
# -*- mode: gitignore; -*-
91+
*~
92+
\#*\#
93+
/.emacs.desktop
94+
/.emacs.desktop.lock
95+
*.elc
96+
auto-save-list
97+
tramp
98+
.\#*
99+
100+
# Org-mode
101+
.org-id-locations
102+
*_archive
103+
104+
# flymake-mode
105+
*_flymake.*
106+
107+
# eshell files
108+
/eshell/history
109+
/eshell/lastdir
110+
111+
# elpa packages
112+
/elpa/
113+
114+
# reftex files
115+
*.rel
116+
117+
# AUCTeX auto folder
118+
/auto/
119+
120+
121+
### Linux ###
122+
*~
123+
124+
# KDE directory preferences
125+
.directory
126+
127+
128+
### OSX ###
129+
.DS_Store
130+
.AppleDouble
131+
.LSOverride
132+
133+
# Icon must end with two \r
134+
Icon
135+
136+
137+
# Thumbnails
138+
._*
139+
140+
# Files that might appear on external disk
141+
.Spotlight-V100
142+
.Trashes
143+
144+
# Directories potentially created on remote AFP share
145+
.AppleDB
146+
.AppleDesktop
147+
Network Trash Folder
148+
Temporary Items
149+
.apdisk
150+

0 commit comments

Comments
 (0)