mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-22 05:33:45 -04: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',
|
'debug.c', 'debug.h',
|
||||||
'macros.h',
|
'macros.h',
|
||||||
'xmalloc.c', 'xmalloc.h',
|
'xmalloc.c', 'xmalloc.h',
|
||||||
'xsnprintf.c', 'xsnprintf.h'
|
'xsnprintf.c', 'xsnprintf.h',
|
||||||
|
dependencies: [utf8proc]
|
||||||
)
|
)
|
||||||
|
|
||||||
misc = static_library(
|
misc = static_library(
|
||||||
|
|
@ -234,7 +235,9 @@ misc = static_library(
|
||||||
'hsl.c', 'hsl.h',
|
'hsl.c', 'hsl.h',
|
||||||
'macros.h',
|
'macros.h',
|
||||||
'misc.c', 'misc.h',
|
'misc.c', 'misc.h',
|
||||||
'uri.c', 'uri.h'
|
'uri.c', 'uri.h',
|
||||||
|
dependencies: [utf8proc],
|
||||||
|
link_with: [common]
|
||||||
)
|
)
|
||||||
|
|
||||||
vtlib = static_library(
|
vtlib = static_library(
|
||||||
|
|
@ -268,6 +271,7 @@ pgolib = static_library(
|
||||||
tokenize = static_library(
|
tokenize = static_library(
|
||||||
'tokenizelib',
|
'tokenizelib',
|
||||||
'tokenize.c',
|
'tokenize.c',
|
||||||
|
dependencies: [utf8proc],
|
||||||
link_with: [common],
|
link_with: [common],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -321,7 +325,7 @@ executable(
|
||||||
'macros.h',
|
'macros.h',
|
||||||
'util.h',
|
'util.h',
|
||||||
version,
|
version,
|
||||||
dependencies: [tllist],
|
dependencies: [tllist, utf8proc],
|
||||||
link_with: common,
|
link_with: common,
|
||||||
install: true)
|
install: true)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue