summaryrefslogtreecommitdiff
path: root/docs/html/images/mpc.dot
diff options
context:
space:
mode:
Diffstat (limited to 'docs/html/images/mpc.dot')
-rw-r--r--docs/html/images/mpc.dot20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/html/images/mpc.dot b/docs/html/images/mpc.dot
new file mode 100644
index 00000000..46ee462e
--- /dev/null
+++ b/docs/html/images/mpc.dot
@@ -0,0 +1,20 @@
+// dot mpc.dot -Tpng -o mpc.png
+digraph project {
+ rankdir=LR;
+ splines="ortho";
+
+ mpcfile [shape="cylinder" height="1" label="MPC\nFile"];
+ tfile [shape="cylinder" height="1" label="Template\nFile"];
+ tifile [shape="cylinder" height="1" label="Template\nInput File"];
+
+ p [shape="point" width="0"];
+
+ mpc [shape="box" height="1" style="rounded" label="Make Project\nCreator"];
+ out [shape="box" height="1" label="Project File\n(Makefile, vcxproj, etc.)"];
+
+ // Send all three into the point with no arrowhead
+ {mpcfile, tfile, tifile} -> p [dir="none"];
+
+ // Go from the point to the rest
+ p -> mpc -> out;
+}