diff options
author | Daniel <steew0x8@protonmail.com> | 2021-11-06 19:21:30 +0100 |
---|---|---|
committer | Daniel <steew0x8@protonmail.com> | 2021-11-06 19:21:30 +0100 |
commit | d30a41c82a5f6b06e18041a1bde438d1265c9cf1 (patch) | |
tree | 02d6f97ac2f5698d8decde7d7a73261f5703a26f | |
parent | 7807b47e960f77aa780e2084641066da2f33f791 (diff) | |
download | rpncalc-d30a41c82a5f6b06e18041a1bde438d1265c9cf1.tar.gz |
added build instructions
-rw-r--r-- | README.md | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/README.md b/README.md index c037c73..fded252 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ # rpncalc -simple rpn calculator inspired by emacs calc \ No newline at end of file +simple rpn calculator inspired by emacs calc + +To build: +```sh +DIR=build +meson $DIR +cd $DIR +ninja +``` +To execute: +```sh +./rpncalc +``` +Installation will be possible in future releases |