diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -15,9 +15,12 @@ use `ninja` to build, with options like: * `shared`, `static`, `header` for bulding to a usable library and * `test`to run the unit tests. +* `install` to install the built files in output directories set by `ninja configure` To change paths and presets using `ninja configure` with an appropriate environment variable: -* `BIN=<path>` to set the output directory * `PROD=1` to use the non-debug flags +* `PREFIX=<path>` used for other paths, default `installdir` +* `LIBDIR=<path>` used for libraries (.so and .a), default `PREFIX/lib` +* `INCLUDEDIR=<path>` used for c headers, default `PREFIX/include` |