summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/Graphviz/expected_outputs/dependency_graph_custom_targets.dot
blob: 8b0365a772c925c03e4211ba63b140c5222a3061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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 = "ConsoleApplication", shape = egg ];
    "node2" [ label = "CoreLibrary", shape = octagon ];
    "node2" -> "node0"  // CoreLibrary -> CompilerFlags
    "node3" [ label = "GoofyLoggingLibrary\n(SeriousLoggingLibrary)\n(TheBestLoggingLibrary)", shape = pentagon ];
    "node2" -> "node3" [ style = dotted ] // CoreLibrary -> GoofyLoggingLibrary
    "node1" -> "node2" [ style = dotted ] // ConsoleApplication -> CoreLibrary
    "node4" [ label = "CryptoCurrencyMiningLibrary", shape = septagon ];
    "node1" -> "node4" [ style = dotted ] // ConsoleApplication -> CryptoCurrencyMiningLibrary
    "node5" [ label = "GenerateManPage", shape = box ];
    "node1" -> "node5"  // ConsoleApplication -> GenerateManPage
    "node6" [ label = "GraphicApplication", shape = egg ];
    "node6" -> "node2" [ style = dotted ] // GraphicApplication -> CoreLibrary
    "node7" [ label = "GraphicLibrary", shape = doubleoctagon ];
    "node8" [ label = "\"-lm\"", shape = septagon ];
    "node7" -> "node8" [ style = dotted ] // GraphicLibrary -> "-lm"
    "node7" -> "node0"  // GraphicLibrary -> CompilerFlags
    "node7" -> "node2" [ style = dotted ] // GraphicLibrary -> CoreLibrary
    "node9" [ label = "GraphicLibraryObjects", shape = hexagon ];
    "node7" -> "node9" [ style = dotted ] // GraphicLibrary -> GraphicLibraryObjects
    "node6" -> "node7" [ style = dotted ] // GraphicApplication -> GraphicLibrary
    "node10" [ label = "GraphicDriverOpenGL", shape = tripleoctagon ];
    "node10" -> "node0" [ style = dotted ] // GraphicDriverOpenGL -> CompilerFlags
    "node10" -> "node2" [ style = dotted ] // GraphicDriverOpenGL -> CoreLibrary
    "node11" [ label = "GraphicDriverVulkan", shape = tripleoctagon ];
    "node11" -> "node0" [ style = dotted ] // GraphicDriverVulkan -> CompilerFlags
    "node11" -> "node2" [ style = dotted ] // GraphicDriverVulkan -> CoreLibrary
}