esp-idf/tools/cmake/component_deps.dot.in
Ivan Grokhotkov ae7d1fff49 cmake: add component dependency graph generation helpers
These optional feature produces a graphviz file showing component
dependencies. It is useful for debugging reasons why certain
components got added to the build.
2021-12-02 15:29:00 +01:00

31 lines
350 B
Plaintext

digraph G {
${depgraph}
subgraph cluster_g0 {
rank = same;
label = "G0";
soc;
hal;
esp_common;
esp_rom;
${CONFIG_IDF_TARGET_ARCH};
${CONFIG_IDF_TARGET};
}
subgraph cluster_g1 {
rank = same;
label = "G1";
spi_flash;
freertos;
log;
heap;
newlib;
esp_system;
esp_hw_support;
}
}