vcpkg depend-info

Riepilogo

vcpkg depend-info [options] <package>...

Descrizione

Visualizzare le dipendenze per un set di pacchetti di porte.

depend-info visualizza tutte le dipendenze transitive per un set di pacchetti in diversi formati, tra cui testo normale, albero, DGML, DOT o Mermaid. Il set di pacchetti viene considerato come una singola richiesta combinata simile a vcpkg install <package>... ma indipendentemente dai pacchetti installati.

Se usato con più triplette (impostazione predefinita, host, per pacchetto), i pacchetti installati per altri tripletti rispetto all'impostazione predefinita sono contrassegnati. I pacchetti per il tripletto host sono contrassegnati con il suffisso :host.

Esempi

List

$ vcpkg depend-info ableton

vcpkg-cmake:
vcpkg-cmake-config:
asio: vcpkg-cmake, vcpkg-cmake-config
ableton-link: asio, vcpkg-cmake, vcpkg-cmake-config
ableton: ableton-link

Albero

$ vcpkg depend-info ableton --format=tree

ableton
+-- ableton-link
    +-- asio
    |   +-- vcpkg-cmake
    |   +-- vcpkg-cmake-config
    +-- vcpkg-cmake
    +-- vcpkg-cmake-config

Punto

$ vcpkg depend-info ableton --format=dot

digraph G{ rankdir=LR; node [fontname=Sans]; edge [minlen=3]; overlap=false;
"vcpkg-cmake";
"vcpkg-cmake-config";
"asio";
"asio" -> "vcpkg-cmake";
"asio" -> "vcpkg-cmake-config";
"ableton-link";
"ableton-link" -> "asio";
"ableton-link" -> "vcpkg-cmake";
"ableton-link" -> "vcpkg-cmake-config";
"ableton";
"ableton" -> "ableton-link";
"2 singletons...";
}

DGML

$ vcpkg depend-info ableton --format=dgml

<?xml version="1.0" encoding="utf-8"?>
<DirectedGraph xmlns="http://schemas.microsoft.com/vs/2009/dgml">
    <Nodes>
        <Node Id="ableton"/>
        <Node Id="ableton-link"/>
        <Node Id="asio"/>
        <Node Id="vcpkg-cmake"/>
        <Node Id="vcpkg-cmake-config"/>
    </Nodes>
    <Links>
        <Link Source="ableton" Target="ableton-link"/>
        <Link Source="ableton-link" Target="asio"/>
        <Link Source="ableton-link" Target="vcpkg-cmake"/>
        <Link Source="ableton-link" Target="vcpkg-cmake-config"/>
        <Link Source="asio" Target="vcpkg-cmake"/>
        <Link Source="asio" Target="vcpkg-cmake-config"/>
    </Links>
</DirectedGraph>

Mermaid

$ vcpkg depend-info ableton --format=mermaid

flowchart TD;
    ableton --> ableton-link;
    ableton-link --> asio;
    ableton-link --> vcpkg-cmake;
    ableton-link --> vcpkg-cmake-config;
    asio --> vcpkg-cmake;
    asio --> vcpkg-cmake-config;

Diagramma sottoposto a rendering

flowchart TD;
    ableton-->ableton_link;
    ableton_link-->asio;
    ableton_link-->vcpkg_cmake;
    ableton_link-->vcpkg_cmake_config;
    asio-->vcpkg_cmake;
    asio-->vcpkg_cmake_config;

Più triplette e pacchetti

$ ./vcpkg depend-info proj tiff[core] --triplet x64-windows-static-md

vcpkg-cmake:host: 
vcpkg-cmake-config:host: 
zlib: vcpkg-cmake:host
liblzma: vcpkg-cmake:host, vcpkg-cmake-config:host
curl[sspi, ssl, schannel, non-http]: vcpkg-cmake:host, vcpkg-cmake-config:host, zlib
nlohmann-json: vcpkg-cmake:host, vcpkg-cmake-config:host
sqlite3[json1, tool]:host: vcpkg-cmake:host, vcpkg-cmake-config:host
sqlite3[json1]: vcpkg-cmake:host, vcpkg-cmake-config:host
tiff[zip, lzma]: liblzma, vcpkg-cmake:host, vcpkg-cmake-config:host, zlib
proj[tiff, net]: curl, nlohmann-json, sqlite3:host, sqlite3, tiff, vcpkg-cmake:host, vcpkg-cmake-config:host

Opzioni

Tutti i comandi vcpkg supportano un set di opzioni comuni.

--format=<format>

list

Il formato predefinito stampa un elenco testuale.

tree

Stampa un albero simile al comando treedella console .

dot

Generare l'albero delle dipendenze nel formato di descrizione del grafico DOT .

dgml

Generare l'albero delle dipendenze nel formato XML DGML (Directed Graph Markup Language).

mermaid

Generare l'albero delle dipendenze nel formato di sintassi del diagramma Mermaid .

--show-depth

Mostra profondità ricorsione nell'output.

Accettato solo per i formati elenco e albero.

--max-recurse=<depth>

Impostare la profondità massima da visualizzare.

Il valore -1 indica che non è previsto alcun limite.

--sort=<type>

Impostare l'ordinamento per l'elenco delle dipendenze.

Accettato solo per il formato elenco.

Opzioni di ordinamento:

  • lexicographical - Ordina per nome
  • topological - (Impostazione predefinita) Ordinare aumentando la profondità
  • reverse - Ordina per profondità decrescente