index — thing @ 98f9e36c12655c30bf31aaacf335b3b0324649dc

A little something I'm working on

building: add docs
crispy-caesus crispy@crispy-caesus.eu
Wed, 09 Sep 2026 18:23:16 +0200
commit

98f9e36c12655c30bf31aaacf335b3b0324649dc

parent

8758158744d8b7d6adae9f8a88bfae226bd38417

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 +```