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.
31 lines
484 B
31 lines
484 B
# Practice Tracker Setup
|
|
|
|
## Crow
|
|
|
|
### Debian
|
|
|
|
```
|
|
sudo apt install build-essential
|
|
sudo apt install libasio-dev
|
|
wget https://github.com/CrowCpp/Crow/releases/download/v1.0%2B5/crow-v1.0+5.deb
|
|
sudo dpkg -i crow-v1.0+5.deb
|
|
g++ test.cpp -lpthread
|
|
```
|
|
|
|
### OS X
|
|
|
|
```
|
|
brew install asio
|
|
brew install boost
|
|
g++ -std=c++11 -Wall -Wextra -Werror server.cpp -lpthread
|
|
```
|
|
|
|
## MySQL
|
|
|
|
### Debian
|
|
|
|
```
|
|
sudo apt install libmysqlcppconn-dev
|
|
g++ -I/usr/include/cppconn mysql.cpp -lmysqlcppconn
|
|
```
|