Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
8ec46cbd
Commit
8ec46cbd
authored
Aug 17, 2013
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #20 from albert-github/master
Some extra files to be ignored (windows and cygwin builds)
parents
c79ea9b6
691a654b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
.gitignore
.gitignore
+7
-0
doxygen.cpp
src/doxygen.cpp
+10
-0
No files found.
.gitignore
View file @
8ec46cbd
...
...
@@ -25,6 +25,7 @@
/addon/doxysearch/Makefile.doxysearch
/addon/doxmlparser/examples/metrics/Makefile
/addon/doxmlparser/src/Makefile
/addon/doxmlparser/test/Makefile
/addon/doxyapp/Makefile
/addon/doxywizard/Makefile
/addon/doxywizard/Makefile.doxywizard
...
...
@@ -32,6 +33,12 @@
/addon/doxywizard/moc
/addon/doxywizard/obj
/addon/doxywizard/rcc
/winbuild/config_lex.cpp
/winbuild/moc
/winbuild/obj
/winbuild/rcc
*.idb
*.pdb
/examples/Makefile
/Makefile
...
...
src/doxygen.cpp
View file @
8ec46cbd
...
...
@@ -10171,6 +10171,11 @@ void readConfiguration(int argc, char **argv)
case
'm'
:
g_dumpSymbolMap
=
TRUE
;
break
;
case
'v'
:
msg
(
"%s
\n
"
,
versionString
);
cleanUpDoxygen
();
exit
(
0
);
break
;
case
'-'
:
if
(
qstrcmp
(
&
argv
[
optind
][
2
],
"help"
)
==
0
)
{
...
...
@@ -10182,6 +10187,11 @@ void readConfiguration(int argc, char **argv)
cleanUpDoxygen
();
exit
(
0
);
}
else
{
err
(
"Unknown option -%s
\n
"
,
&
argv
[
optind
][
1
]);
usage
(
argv
[
0
]);
}
break
;
case
'b'
:
setvbuf
(
stdout
,
NULL
,
_IONBF
,
0
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment