building: add docs
crispy-caesus crispy@crispy-caesus.eu
Wed, 09 Sep 2026 18:23:16 +0200
1 files changed,
24 insertions(+),
0 deletions(-)
jump to
A
BUILDING.md
@@ -0,0 +1,24 @@
+# Build thing + +thing uses the [meson](https://mesonbuild.com) build system. + +## Current build process + +The following is my current build process, it might not work on every other system. + +### libthingterm + +```sh +meson setup build +meson compile -C build +meson install -C build +``` + +### thing + +```sh +PKG_CONFIG_PATH=/usr/local/lib/pkgconfig meson setup build +meson compile -C build +# optionally install +meson install -C build +```