Clone the repository using ssh
git clone git@gitlab.ethz.ch:uttt/uttt.gitAfter cloning you still have to initalize the submodules (the dependencies)
cd uttt
git submodule init
git submodule updateEither use an IDE like CLion or use cmake and make directly in the terminal.
mkdir build
cmake -B build
make -C buildCMake also exports compile commands, meaning language servers like clangd just work.
Now you're setup!