mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-11 04:27:49 -05:00
22 lines
552 B
Meson
22 lines
552 B
Meson
config_test = executable(
|
|
'test-config',
|
|
'test-config.c', '../tokenize.c',
|
|
wl_proto_headers,
|
|
link_with: [common],
|
|
dependencies: [pixman, xkb, fontconfig, fcft, tllist])
|
|
|
|
test('config', config_test)
|
|
|
|
if check.found()
|
|
foot_test = executable(
|
|
'test-foot',
|
|
'test-foot.c',
|
|
'../config.c', '../config.h',
|
|
'../tokenize.c', '../tokenize.h',
|
|
'../user-notification.c', '../user-notification.h',
|
|
wl_proto_headers,
|
|
dependencies: [check, pixman, xkb, fcft, tllist],
|
|
link_with: [common]
|
|
)
|
|
test('foot', foot_test)
|
|
endif
|