On Sun, May 21, 2023 at 6:21 AM Werner LEMBERG <[email protected]> wrote: > > > > I am trying to look at the trace output using the FT_Trace_Set_Level > > function. I read that FT_DEBUG_LOGGING macro must be set for this > > to work, so I tried doing this by passing: > > -Dc_args='-D FT_DEBUG_LOGGING' > > to meson setup. > > Alas, support for `FT_DEBUG_LOGGING` is not implemented in Meson. You > are very welcome to submit a Merge Request that adds it :-)
meson honors CPPFLAGS. try: CPPFLAGS=-DFT_DEBUG_LOGGING' meson setup builddir (or use export) Vincent Torri
