foot/tests/meson.build
Daniel Eklöf 065eb05e3e
meson/pgo: fix PGO build errors with recent meson(?) versions
The back-reference to 'tokenize.c' in the parent directory causes PGO
build failures, where gcc can't find the PGO data. Likely due to
path/naming issues caused by meson's generated build directories.
2024-07-18 09:02:42 +02:00

8 lines
217 B
Meson

config_test = executable(
'test-config',
'test-config.c',
wl_proto_headers,
link_with: [common, tokenize],
dependencies: [pixman, xkb, fontconfig, wayland_client, fcft, tllist])
test('config', config_test)