You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
2.5 KiB
48 lines
2.5 KiB
digraph "GraphvizTestProject" {
|
|
node [
|
|
fontsize = "12"
|
|
];
|
|
subgraph clusterLegend {
|
|
label = "Legend";
|
|
color = black;
|
|
edge [ style = invis ];
|
|
legendNode0 [ label = "Executable", shape = egg ];
|
|
legendNode1 [ label = "Static Library", shape = octagon ];
|
|
legendNode2 [ label = "Shared Library", shape = doubleoctagon ];
|
|
legendNode3 [ label = "Module Library", shape = tripleoctagon ];
|
|
legendNode4 [ label = "Interface Library", shape = pentagon ];
|
|
legendNode5 [ label = "Object Library", shape = hexagon ];
|
|
legendNode6 [ label = "Unknown Library", shape = septagon ];
|
|
legendNode7 [ label = "Custom Target", shape = box ];
|
|
legendNode0 -> legendNode1 [ style = solid ];
|
|
legendNode0 -> legendNode2 [ style = solid ];
|
|
legendNode0 -> legendNode3;
|
|
legendNode1 -> legendNode4 [ label = "Interface", style = dashed ];
|
|
legendNode2 -> legendNode5 [ label = "Private", style = dotted ];
|
|
legendNode3 -> legendNode6 [ style = solid ];
|
|
legendNode0 -> legendNode7;
|
|
}
|
|
"node0" [ label = "CompilerFlags", shape = pentagon ];
|
|
"node1" [ label = "CoreLibrary", shape = octagon ];
|
|
"node1" -> "node0" // CoreLibrary -> CompilerFlags
|
|
"node2" [ label = "GoofyLoggingLibrary\n(SeriousLoggingLibrary)\n(TheBestLoggingLibrary)", shape = pentagon ];
|
|
"node1" -> "node2" [ style = dotted ] // CoreLibrary -> GoofyLoggingLibrary
|
|
"node3" [ label = "SystemLibrary", shape = octagon ];
|
|
"node3" -> "node1" [ style = dotted ] // SystemLibrary -> CoreLibrary
|
|
"node1" -> "node3" [ style = dotted ] // CoreLibrary -> SystemLibrary
|
|
"node4" [ label = "CryptoCurrencyMiningLibrary", shape = septagon ];
|
|
"node5" [ label = "GraphicLibrary", shape = doubleoctagon ];
|
|
"node6" [ label = "\"-lm\"", shape = septagon ];
|
|
"node5" -> "node6" [ style = dotted ] // GraphicLibrary -> "-lm"
|
|
"node5" -> "node0" // GraphicLibrary -> CompilerFlags
|
|
"node5" -> "node1" [ style = dotted ] // GraphicLibrary -> CoreLibrary
|
|
"node7" [ label = "GraphicLibraryObjects", shape = hexagon ];
|
|
"node5" -> "node7" [ style = dotted ] // GraphicLibrary -> GraphicLibraryObjects
|
|
"node8" [ label = "GraphicDriverOpenGL", shape = tripleoctagon ];
|
|
"node8" -> "node0" [ style = dotted ] // GraphicDriverOpenGL -> CompilerFlags
|
|
"node8" -> "node1" [ style = dotted ] // GraphicDriverOpenGL -> CoreLibrary
|
|
"node9" [ label = "GraphicDriverVulkan", shape = tripleoctagon ];
|
|
"node9" -> "node0" [ style = dotted ] // GraphicDriverVulkan -> CompilerFlags
|
|
"node9" -> "node1" [ style = dotted ] // GraphicDriverVulkan -> CoreLibrary
|
|
}
|