File: dependency_graph_no_interface_libs.dot

package info (click to toggle)
cmake 4.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 152,344 kB
  • sloc: ansic: 403,894; cpp: 303,807; sh: 4,097; python: 3,582; yacc: 3,106; lex: 1,279; f90: 538; asm: 471; lisp: 375; cs: 270; java: 266; fortran: 239; objc: 215; perl: 213; xml: 198; makefile: 108; javascript: 83; pascal: 63; tcl: 55; php: 25; ruby: 22
file content (47 lines) | stat: -rw-r--r-- 2,548 bytes parent folder | download | duplicates (6)
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
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 = "ConsoleApplication", shape = egg ];
    "node1" [ label = "CoreLibrary", shape = octagon ];
    "node2" [ label = "SystemLibrary", shape = octagon ];
    "node2" -> "node1" [ style = dotted ] // SystemLibrary -> CoreLibrary
    "node1" -> "node2" [ style = dotted ] // CoreLibrary -> SystemLibrary
    "node0" -> "node1" [ style = dotted ] // ConsoleApplication -> CoreLibrary
    "node3" [ label = "CryptoCurrencyMiningLibrary", shape = septagon ];
    "node0" -> "node3" [ style = dotted ] // ConsoleApplication -> CryptoCurrencyMiningLibrary
    "node4" [ label = "GraphicApplication", shape = egg ];
    "node4" -> "node1" [ style = dotted ] // GraphicApplication -> CoreLibrary
    "node5" [ label = "GraphicLibrary", shape = doubleoctagon ];
    "node6" [ label = "\"-lm\"", shape = septagon ];
    "node5" -> "node6" [ style = dotted ] // GraphicLibrary -> "-lm"
    "node5" -> "node1" [ style = dotted ] // GraphicLibrary -> CoreLibrary
    "node7" [ label = "GraphicLibraryObjects", shape = hexagon ];
    "node5" -> "node7" [ style = dotted ] // GraphicLibrary -> GraphicLibraryObjects
    "node4" -> "node5" [ style = dotted ] // GraphicApplication -> GraphicLibrary
    "node8" [ label = "GraphicDriverOpenGL", shape = tripleoctagon ];
    "node8" -> "node1" [ style = dotted ] // GraphicDriverOpenGL -> CoreLibrary
    "node9" [ label = "GraphicDriverVulkan", shape = tripleoctagon ];
    "node9" -> "node1" [ style = dotted ] // GraphicDriverVulkan -> CoreLibrary
    "node10" [ label = "SubDirectoryTarget", shape = egg ];
}