aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/README.md b/README.md
index a47140f..e4e9277 100644
--- a/README.md
+++ b/README.md
@@ -1,12 +1,10 @@
-Crow
-====
+# Crow
Crow is C++ microframework for web. (inspired by Python Flask)
(still in development, not completed yet)
-Example
-=======
+## Example
```c++
@@ -69,5 +67,10 @@ int main()
.multithreaded()
.run();
}
-
```
+
+## How to Build
+
+### Ubuntu
+ sudo apt-get install libtcmalloc-minimal4 && sudo ln -s /usr/lib/libtcmalloc_minimal.so.4 /usr/lib/libtcmalloc_minimal.so
+ make -j$(($(grep -c '^processor' /proc/cpuinfo)+1))