about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDaniel <steew0x8@protonmail.com>2021-11-06 19:21:30 +0100
committerDaniel <steew0x8@protonmail.com>2021-11-06 19:21:30 +0100
commitd30a41c82a5f6b06e18041a1bde438d1265c9cf1 (patch)
tree02d6f97ac2f5698d8decde7d7a73261f5703a26f
parent7807b47e960f77aa780e2084641066da2f33f791 (diff)
downloadrpncalc-d30a41c82a5f6b06e18041a1bde438d1265c9cf1.tar.gz
added build instructions
-rw-r--r--README.md15
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
f='#n116'>116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172