aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2018-07-18 14:21:22 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2018-07-18 14:21:22 +0200
commit42c934681970381a15aa1714822e65492bd51cc3 (patch)
treec0d19346fe7ba77bb042aa88d2d29578f51b9a76 /README.md
parent2b118a33f65866295eeb716c9bc6401082ca4c8e (diff)
parent968b4027f4f13ebc311c3aab741fbc2eea50cca3 (diff)
downloadlibnitrokey-42c934681970381a15aa1714822e65492bd51cc3.tar.gz
libnitrokey-42c934681970381a15aa1714822e65492bd51cc3.tar.bz2
Merge branch 'pr_128'
Meson fixes for tests build Fixes #128
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 3 insertions, 6 deletions
diff --git a/README.md b/README.md
index 1bc8ef9..b101114 100644
--- a/README.md
+++ b/README.md
@@ -80,14 +80,11 @@ Other build options (all take either `ON` or `OFF`):
It is possible to use Meson and Ninja to build the project as well (currently available only `master` branch).
Please run:
```
-meson builddir
-cd builddir
-meson configure # to show available build flags
-ninja
+meson builddir <OPTIONS>
+meson configure builddir # to show available build flags
+ninja -C builddir
```
-Tests build with bundled Catch is not supported yet with this method.
-
# Using libnitrokey with Python
To use libnitrokey with Python a [CFFI](http://cffi.readthedocs.io/en/latest/overview.html) library is required (either 2.7+ or 3.0+). It can be installed with:
```bash