BUILDING.md (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 ``` |