From 7c312ec82e4dea72f11cefda36e2049ffc1ad6ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20=C5=BBarnowiecki?= Date: Tue, 9 Dec 2014 19:33:29 +0100 Subject: [PATCH] Add building section for Linux --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 0eda2b8..0de115b 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,24 @@ library for C++11. [![Coverity Scan Build Status](https://scan.coverity.com/projects/2786/badge.svg)](https://scan.coverity.com/projects/2786) +Building +======== + +## Linux +Generate `Makefile`. +```shell +$ cmake CMakeLists.txt +``` +Compile (N should be a number of threads available plus one). +```shell +$ make -jN +``` +Install as root for the whole system. +```shell +# make install +``` + + Example =======