From 2ecc643bc5e89a01522eb36a40027decc0e43d1e Mon Sep 17 00:00:00 2001 From: Tom Date: Mon, 16 Sep 2019 18:14:15 +0200 Subject: [PATCH] readme: add build instructions --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 67be132..bea53d5 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,17 @@ Signal handler for multithreaded C++ applications on Linux ========================================================== +## Build & Install + +``` +mkdir -p build/ && cd build/ +cmake .. +make +make test +make install +``` + + Example usage: ``` bool worker(sgnl::AtomicCondition& exit_condition)