gsliepen / tinc

a VPN daemon
http://tinc-vpn.org/
Other
1.87k stars 280 forks source link

Meson #428

Open splitice opened 1 year ago

splitice commented 1 year ago

Can we get a configure and makefile?

Even if it just calls meson. Compared to:

./configure
make install

meson is hardly intuitive

gsliepen commented 3 months ago

The equivalent of those two lines using Meson is:

meson setup build
meson install -C build

It's documented in INSTALL.md, but we can put those lines at the very top.