meson: add missing ‘tllist’ dependency to vtlib, pgolib and pgo

This commit is contained in:
Daniel Eklöf 2020-11-14 11:44:02 +01:00
parent 4577bb2bb3
commit bf8c82c79a
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -117,7 +117,7 @@ vtlib = static_library(
'osc.c', 'osc.h',
'sixel.c', 'sixel.h',
'vt.c', 'vt.h',
dependencies: [pixman],
dependencies: [pixman, tllist],
link_with: misc,
)
@ -125,14 +125,14 @@ pgolib = static_library(
'pgolib',
'grid.c', 'grid.h',
'terminal.c', 'terminal.h',
dependencies: [pixman, fcft],
dependencies: [pixman, fcft, tllist],
link_with: vtlib,
)
executable(
'pgo',
'pgo.c',
dependencies: [pixman, fcft],
dependencies: [pixman, fcft, tllist],
link_with: pgolib,
)