You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
562 B

3 years ago
## Building
3 years ago
### Install dependencies
3 years ago
- g++
- cmake
- boost system
- sqlite3-devel, static
- openssl-static
3 years ago
- zlib-static
3 years ago
3 years ago
### Clone repo
3 years ago
```bash
git clone --recurse-submodules https://git.topost.net/alistair/karetele.git
```
3 years ago
or
```bash
git clone https://git.topost.net/alistair/karetele.git
git submodule init
git submodule update
```
### Build libraries
```bash
cd spdlog && mkdir build && cd build
cmake .. && make -j
cd tgbot-cpp
mkdir build && cd build
cmake .. && make -j4
```
3 years ago
3. build
```bash
cd karetele
mkdir build
cd build
cmake ..
make
```