Difference between revisions of "Client"
Jump to navigation
Jump to search
Line 15: | Line 15: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | When checking out different versions use | + | When checking out different commits or versions use |
<syntaxhighlight lang=bash> | <syntaxhighlight lang=bash> | ||
− | git checkout | + | git checkout **commit or Versiontag** --recurse-submodules |
</syntaxhighlight> | </syntaxhighlight> | ||
Latest revision as of 22:35, 23 January 2022
Build Looking Glass Client from Git[edit]
Warning
Please only clone from Git if you’re a developer, and know what you’re doing. Looking Glass requires git submodules that must be setup and updated when building. Source code downloads from the website come bundled with the necessary submodules.
Developers can clone the source code repo with git.
git clone --recursive https://github.com/gnif/LookingGlass.git
When checking out different commits or versions use
git checkout **commit or Versiontag** --recurse-submodules
or run after checkout:
git submodule update --recursive
Building on Ubuntu[edit]
you will probably need to install gawk
sudo apt install gawk