JLospinoso / abrade

A fast Web API scraper written in C++ and built on Boost ASIO
https://jlospinoso.github.io/cpp/developing/software/2017/09/15/abrade-web-scraper.html
GNU Affero General Public License v3.0
45 stars 4 forks source link

How do you build this without Docker on Linux? #2

Closed qodebot closed 6 years ago

qodebot commented 6 years ago

Can you provide some more detailed setup instructions for diff build environments? I had to upgrade cmake but then now I don't know how to build the package on Ubuntu.

JLospinoso commented 6 years ago

Hey! Sorry this wasn't clear.

Make sure you have openssl:

git clone https://github.com/openssl/openssl.git
cd openssl
./config
make
sudo make install

Then, to build with cmake, cd into the directory you cloned. Then:

mkdir build
cd build
cmake ..

Now, you should have a make file!

I should really make a wiki (or a better readme)...

Please open an issue if the build doesn't work.