To download and install the dependencies, open your preferred terminal in administrator mode and run:
$ git clone https://gitlab.com/libeigen/eigen
$ cd eigen
$ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
$ cmake --build build --target install --config Release
$ cd ..
$ git clone https://github.com/g-truc/glm
$ cd glm
$ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
$ cmake --build build --target install --config Release
$ cd ..
$ git clone https://github.com/nlohmann/json
$ cd json
$ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
$ cmake --build build --target install --config Release
To install Debug binaries/artifacts, replace all "Release" arguments with "Debug".
$ cd path/to/sbs
$ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
$ cmake --build build --target sbs --config Release
$ cmake --build build --target install --config Release
Again, replace "Release" by "Debug" for debug builds and installs.