uibk_703807-Advanced-CXX/exercises/images/task03_dependencies.dot

15 lines
308 B
Plaintext
Raw Permalink Normal View History

2020-10-06 12:34:06 +02:00
digraph {
node [shape=box style=filled fillcolor=lightblue fontname="Roboto Mono" fontsize=12 ];
edge [style=dashed arrowhead=onormal];
app;
foo [label="libFoo.so"];
bar [label="libBar.so"];
baz [label="libBaz.so"];
app -> foo;
app -> bar;
app -> baz;
baz -> bar;
}