Difference between revisions of "Client"

From Looking Glass
Jump to navigation Jump to search
(Created page with "== Build Looking Glass Client from Git == <syntaxhighlight lang=bash> Warning Please only clone from Git if you’re a developer, and know what you’re doing. Looking Glas...")
 
Line 22: Line 22:
  
 
or run after checkout:
 
or run after checkout:
<syntaxhighlight lang=bash>git submodule update </syntaxhighlight>
+
<syntaxhighlight lang=bash>git submodule update --recursive </syntaxhighlight>
  
  

Revision as of 22:30, 23 January 2022

Build Looking Glass Client from Git

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 versions use

git checkout B4 --recurse-submodules

or run after checkout:

git submodule update --recursive


Building on Ubuntu

you will probably need to install gawk

sudo apt install gawk