Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 759 Bytes

HACKING.md

File metadata and controls

24 lines (18 loc) · 759 Bytes

Coding style

We use mainly the "llvm" coding style, with some minor deviations. See .clang-format and .clang-tidy for the details.

External libraries

Libraries that are not so common in the Ubuntu repositories are imported as source code
by means of Git Submodules. This is not without problems.

See also: Why do am i getting error 404 on my sub module symlink found on my git repo?

setting the spdlog submodule to version 1.8.1

in [project root]/lib/spdlog do:

$ git fetch origin
$ git reset --hard v1.8.1

see also Git submodules best practices