On Wed, Jan 04, 2023 at 10:45:26AM -0500, Steven Rostedt wrote: > On Wed, 28 Dec 2022 09:29:06 +0100 > Daniel Wagner <dwagner@xxxxxxx> wrote: > > > Introduce Meson as build framework for building libtraceevent. This > > lives besides the Makefiles until all the expected initial fallouts > > have been dealed with. > > > > The build steps are: > > > > # configure using .build as build directory and install destination > > # /tmp/test > > meson --prefix=/tmp/libtraceevent .build > > > > # trigger the build > > ninja -C .build > > > > # install the library > > ninja -C .build install > > > > In case you want to build/install the documentation the setup is > > > > meson -Ddocs-build=true .build > > > > Signed-off-by: Daniel Wagner <dwagner@xxxxxxx> > > --- > > It's still missing the building of the static library libtraceevent.a. This is controlled via 'meson setup --default-library {shared, static, both}'.