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
eb1d5e89
Commit
eb1d5e89
authored
Feb 15, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #114 from albert-github/feature/bug_vhdl_dot
Place where dot executable is found
parents
cc78b12b
90ecc248
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
vhdldocgen.cpp
src/vhdldocgen.cpp
+4
-2
No files found.
src/vhdldocgen.cpp
View file @
eb1d5e89
...
...
@@ -167,7 +167,8 @@ static void createSVG()
QRegExp
ep
(
"[
\\
s]"
);
QCString
vlargs
=
"-Tsvg
\"
"
+
ov
+
"
\"
"
+
dir
;
if
(
portable_system
(
"dot"
,
vlargs
)
!=
0
)
QCString
dotExe
=
Config_getString
(
"DOT_PATH"
)
+
"dot"
;
if
(
portable_system
(
dotExe
,
vlargs
)
!=
0
)
{
err
(
"could not create dot file"
);
}
...
...
@@ -3884,8 +3885,9 @@ void FlowChart::createSVG()
ov
+=
"/flow_design.dot"
;
QCString
vlargs
=
"-Tsvg "
+
ov
+
dir
;
QCString
dotExe
=
Config_getString
(
"DOT_PATH"
)
+
"dot"
;
if
(
portable_system
(
"dot"
,
vlargs
)
!=
0
)
if
(
portable_system
(
dotExe
,
vlargs
)
!=
0
)
{
err
(
"could not create dot file"
);
}
...
...
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