From 4d0ceda62d5825afe1536c7dca7e395dbfdaf799 Mon Sep 17 00:00:00 2001 From: pantor Date: Fri, 23 Feb 2018 12:49:47 +0100 Subject: [PATCH] add meson build interface to readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cba9493..fa86639 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ inja::render("Hello {{ name }}!", data); // Returns "Hello world!" ## Integration -Inja is a headers only library, which can be downloaded in the releases or directly from the `src/` folder. Inja uses json by nlohmann as its single dependency, so make sure that it is included before inja. json can be found [here](https://github.com/nlohmann/json/releases). +Inja is a headers only library, which can be downloaded from the [releases](https://github.com/pantor/inja/releases) or directly from the `src/` folder. Inja uses json by nlohmann as its single dependency, so make sure that it is included before inja. json can be found [here](https://github.com/nlohmann/json/releases). ```c++ #include "json.hpp" @@ -35,6 +35,8 @@ using json = nlohmann::json; You can also integrate inja in your project using [Hunter](https://github.com/ruslo/hunter), a package manager for C++. +If you are using the [Meson Build System](http://mesonbuild.com), then you can wrap this repository as a subproject. + ## Tutorial