Beardog is a system that can be used to generate documents, but we prefer to say it's a system for programmming documents. It adds variables, loops, templates, macros and similar in order to optimize the amount of present boilerplate code.
It's a CMake based project using conan package manager. Please make sure to install conan. After installing conan you will have to change conan default(or custom) profile settings to use libstdc++11.
To do this in file ~/.conan/profiles/default
change line compiler.libcxx=libstdc++
to compiler.libcxx=libstdc++11
Generate conanbuildinfo.txt
file with the following:
conan install . -s build_type=Debug --install-folder=cmake-build-debug
You should be able to build the project directly from CLion afterwards.
mkdir build
conan install . -s build_type=Debug --install-folder=build
cd build
cmake ..
make