Indeed - the general configure, build install steps are fairly universal and the configure script doesn’t have to cover from autoconf. We still have that and Makefiles as a wrapper around a meson based setup to keep the process familiar.
There are still some things meson can’t do which we need the configure script for. The meson upstream are slowly working through our feature requests 😉
Really? I supposed that I’m too conservative for still using cmake. But seems there’s a reason for that. ☺
Well, seriously, I don’t like meson because it does some things another way than more traditional tools for no reason. Sometimes this is painful, especially when cross compiling. Seems that it was originally designed without cross compilation in mind unlike cmake.
Indeed - the general configure, build install steps are fairly universal and the configure script doesn’t have to cover from autoconf. We still have that and Makefiles as a wrapper around a meson based setup to keep the process familiar.
Eww. Just teach
meson setup builddir && cd builddir && meson compile
There are still some things meson can’t do which we need the configure script for. The meson upstream are slowly working through our feature requests 😉
Really? I supposed that I’m too conservative for still using cmake. But seems there’s a reason for that. ☺
Well, seriously, I don’t like meson because it does some things another way than more traditional tools for no reason. Sometimes this is painful, especially when cross compiling. Seems that it was originally designed without cross compilation in mind unlike cmake.