On Fri, 23 Dec 2022 11:15:01 +0100 Daniel Wagner <dwagner@xxxxxxx> wrote: > +++ b/lib/meson.build > @@ -0,0 +1,109 @@ > +# SPDX-License-Identifier: LGPL-2.1 > +# > +# Copyright (c) 2022 Daniel Wagner, SUSE LLC > + > +project( > + 'libtrace-cmd', ['c'], > + meson_version: '>= 0.50.0', > + license: 'GPL-2.0', > + version: '1.3.0', > + default_options: [ > + 'c_std=gnu99', > + 'buildtype=release', The default buildtype should be debug. If someone downloads the source, they are probably going to debug it. I found this annoying when I went to use gdb, and there were no symbols present. -- Steve > + 'prefix=/usr/local', > + 'warning_level=1', > + ] > +)