install and build guide
install dependencies:
yay -S pkg-config cmake makeInstall Conan:
$ pip install conan
$ conan profile new default --detect
$ conan profile update conf.tools.system.package_manager:mode=install default;
$ conan profile update conf.tools.system.package_manager:sudo=True default;How to Build
Automatic build for Linux and Windows
For this to work on Windows you need to have access to a Unix shell, such as Git Bash or WSL as well as access to the make command.
In order to build both the client and the server, you can make the "all" rule:
$ makeIn order to build the tests, make the "test" rule:
$ make testBinaries can be found at:
./bin/Server
./bin/Client
./bin/TestsManual Build
For Linux
Delete the build folder if present:
Then build the binaries:
For Windows
Delete the build folder if present:
Then build the binaries:
Last updated