Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 1.75 KB

BUILDING.md

File metadata and controls

48 lines (30 loc) · 1.75 KB

BUILDING

A program may require one or more other programs to run (the "dependencies").

In OS Windows Graphviz can be installed via:

choco.exe install graphviz

OS *nix (Ubuntu)

In OS Ubuntu Graphviz can be installed via two simple commands:

$ sudo apt update -y && sudo apt upgrade -y
$ sudo apt-get install graphviz libgraphviz-dev pkg-config -y
  • Visual Studio Code (VS Code):
    • Open this repository root folder as project;
    • Press Ctrl+Shift+B to build.
  • Windows:
    • Run (Double-click of LMB) ./scripts/compile.bat to build (will closes immediately in end).
  • Ubuntu:
    • Run ./scripts/compile.sh to build (will closes immediately in end).