diff options
author | kartofen <mladenovnasko0@gmail.com> | 2025-04-07 02:39:58 +0300 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2025-04-07 02:39:58 +0300 |
commit | 844b90ec6b79be309d0bd3d08df36b78d48eee90 (patch) | |
tree | 7f597420569186515cc7555caa74841be1e52925 /README.md | |
parent | 0606300e7638574c76b3e72e9b5f965a442b3cb7 (diff) |
refactor install things
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` |