From 552db5bfa55e35f5e299bb1e67b369e219d965e2 Mon Sep 17 00:00:00 2001 From: ayaankhan98 Date: Sun, 6 Dec 2020 15:32:56 +0530 Subject: [PATCH] added docs --- docs/getting_started/setup.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/getting_started/setup.md b/docs/getting_started/setup.md index 42b4580e8..d60512247 100644 --- a/docs/getting_started/setup.md +++ b/docs/getting_started/setup.md @@ -98,6 +98,18 @@ make ``` Running Cmake will create `crow_all.h` file and place it in the build directory. +##Installing Crow + +if you wish to use crow globally without copying `crow_all.h` in your projects, you can install `crow` on your machine by using `make install` command instead of `make` after `cmake..`. Thus, the procedure will look like + +``` +mkdir build +cd build +cmake .. +make install +``` +`make install` will copy `crow_all.h` automatically in your `/usr/local/include` thus making it available globally for use.
+ You can run tests with following commands: ``` ctest -V