From 52570d887f7867ffe8ffa9941732331660c489dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Tue, 24 May 2016 02:51:33 +0200 Subject: [PATCH] Added building information to readme file. --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index cb994c8..60e92c2 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,21 @@ To translate an SAS file into ASP facts, call: $ plasp file.sas ``` +## Building + +`plasp` requires a C++14 compiler (preferrably ≥ GCC 6.1), the `boost` libraries (≥ 1.55), and CMake for building. + +```bash +$ git clone https://github.com/potassco/plasp.git +$ cd plasp +$ mkdir -p build/release +$ cd build/release +$ cmake ../.. -DCMAKE_BUILD_TYPE=Release +$ make +``` + +The built `plasp` binary is then located at `plasp/build/release/bin/plasp`. + ## Contributors * [Patrick Lühne](https://www.luehne.de) (plasp 3)