1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
Requirements
============
To compile PokerTH you need following libs:
- Qt version >= 6.7.0, 6.9.2 LTS recommended --> http://qtsoftware.com/
- libboost_thread, libboost_filesystem, libboost_datetime, libboost_program_options,
libboost_iostreams, libboost_asio, libboost_regex, libboost_random, libboost_uuid
(version >= 1.83, latest always recommended) --> http://www.boost.org/
- protoc >= 2.3.0 (during build), libprotobuf >= 2.3.0 -> https://github.com/google/protobuf
- OpenSSL
Basic Installation
==================
Linux:
Type "cd path/to/the/sources". Then type:
0. if you are out for a clean build & testing binaries without installation call:
`bash clean_build.sh` ... it'll cleanup & copy tls cert and data-dir into build dir.
1. Type `cmake -DCMAKE_BUILD_TYPE:STRING=Release -S. -B./build -G Ninja`
2. Type `cmake --build ./build --config Release --target all --` to compile all targets.
... you can specify the following binary build targets instead:
`pokerth_client`, `pokerth_qml-client` (not yet finished!), `pokerth_dedicated_server`, `pokerth_official_server`, `pokerth_chatcleaner`
3. Become root (typing "su" or "sudo -s") and type
`cmake --install ./build`
Windows:
see ./docker/windows folder
Android:
see ./docker/android folder
MacOS:
see ./build_macos.sh
|