diff options
author | Oleg Morozenkov <o.morozenkov@corp.mail.ru> | 2022-11-01 20:20:43 +0300 |
---|---|---|
committer | Oleg Morozenkov <o.morozenkov@corp.mail.ru> | 2022-11-01 20:20:43 +0300 |
commit | 4c7717c6b2e7ef3f553d6b10c3cc1ca05615a947 (patch) | |
tree | bbdf7566361b96107f370c09fb4074fd0fe2db8f /include/tgbot | |
parent | eceb2bf68192fea28201ce4e4251ddc24757593a (diff) |
Update doc in tgbot.h
Diffstat (limited to 'include/tgbot')
-rw-r--r-- | include/tgbot/tgbot.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/include/tgbot/tgbot.h b/include/tgbot/tgbot.h index 0868aa0..4cd5f29 100644 --- a/include/tgbot/tgbot.h +++ b/include/tgbot/tgbot.h @@ -108,38 +108,6 @@ * @mainpage * [Go to GitHub](https://github.com/reo7sp/tgbot-cpp) * - * @section lib_compile Library compilation - * - * Firstly you need to install some dependencies such as Boost and build tools such as CMake. On Debian-based distibutives you can do it with these commands: - * @code{.sh} - * sudo apt-get install g++ make binutils cmake libssl-dev libboost-system-dev - * @endcode - * - * To compile the library execute this commands: - * @code{.sh} - * cd /path/where/you/have/cloned/the/library/repository - * cmake . - * make -j4 - * sudo make install - * @endcode - * - * @section bot_compile Bot compilation - * With CMake: - * [Example CMakeLists.txt](samples/echobot/CMakeLists.txt) - * - * Without CMake: - * @code{.sh} - * g++ telegram_bot.cpp -o telegram_bot --std=c++11 -I/usr/local/include -lTgBot -lboost_system -lssl -lcrypto -lpthread - * @endcode - * - * Also: - * You can use Docker to build and run your bot. Set the base image of your's Dockerfile to [reo7sp/tgbot-cpp](https://hub.docker.com/r/reo7sp/tgbot-cpp/). - * - * @section Samples - * All samples are located [here](https://github.com/reo7sp/tgbot-cpp/tree/master/samples). - * - * @section Licence - * [The MIT License](https://github.com/reo7sp/tgbot-cpp/blob/master/LICENSE). */ #endif //TGBOT_TGBOT_H |