mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
meson: fix dependencies (utf8proc missing in lots of places)
This commit is contained in:
parent
169471cf23
commit
a2960aa457
1 changed files with 7 additions and 3 deletions
10
meson.build
10
meson.build
|
|
@ -226,7 +226,8 @@ common = static_library(
|
|||
'debug.c', 'debug.h',
|
||||
'macros.h',
|
||||
'xmalloc.c', 'xmalloc.h',
|
||||
'xsnprintf.c', 'xsnprintf.h'
|
||||
'xsnprintf.c', 'xsnprintf.h',
|
||||
dependencies: [utf8proc]
|
||||
)
|
||||
|
||||
misc = static_library(
|
||||
|
|
@ -234,7 +235,9 @@ misc = static_library(
|
|||
'hsl.c', 'hsl.h',
|
||||
'macros.h',
|
||||
'misc.c', 'misc.h',
|
||||
'uri.c', 'uri.h'
|
||||
'uri.c', 'uri.h',
|
||||
dependencies: [utf8proc],
|
||||
link_with: [common]
|
||||
)
|
||||
|
||||
vtlib = static_library(
|
||||
|
|
@ -268,6 +271,7 @@ pgolib = static_library(
|
|||
tokenize = static_library(
|
||||
'tokenizelib',
|
||||
'tokenize.c',
|
||||
dependencies: [utf8proc],
|
||||
link_with: [common],
|
||||
)
|
||||
|
||||
|
|
@ -321,7 +325,7 @@ executable(
|
|||
'macros.h',
|
||||
'util.h',
|
||||
version,
|
||||
dependencies: [tllist],
|
||||
dependencies: [tllist, utf8proc],
|
||||
link_with: common,
|
||||
install: true)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue