VTK
9.1.0
|
Functions | |
function | vtk_module_graphviz () |
Generate graphviz output for a module dependency graph. | |
function | vtk_module_json () |
JSON metadata representation of modules. | |
function vtk_module_graphviz | ( | ) |
Generate graphviz output for a module dependency graph.
Information about the modules built and/or available may be dumped to a Graphviz .dot
file.
MODULES
: (Required) The modules to output information for.OUTPUT
: (Required) A Graphviz file describing the modules built will be output to this path. Relative paths are rooted to CMAKE_BINARY_DIR
.PRIVATE_DEPENDENCIES
: (Default ON
) Whether to draw private dependency edges or not..KIT_CLUSTERS
: (Default OFF
) Whether to draw modules as part of a kit as a cluster or not. Definition at line 132 of file vtkModuleGraphviz.cmake.
function vtk_module_json | ( | ) |
JSON metadata representation of modules.
Information about the modules built and/or available may be dumped to a JSON file.
MODULES
: (Required) The modules to output information for.OUTPUT
: (Required) A JSON file describing the modules built will be output to this path. Relative paths are rooted to CMAKE_BINARY_DIR
.Example output:
Definition at line 103 of file vtkModuleJson.cmake.