io/meson.build: move libfmt dependency to libio.a

This commit is contained in:
Max Kellermann 2023-11-25 22:16:34 +01:00
parent 6dc708f53f
commit d888bb1902
1 changed files with 1 additions and 2 deletions

View File

@ -15,6 +15,7 @@ io = static_library(
io_dep = declare_dependency( io_dep = declare_dependency(
link_with: io, link_with: io,
dependencies: [ dependencies: [
fmt_dep,
], ],
) )
@ -33,8 +34,6 @@ io_fs = static_library(
io_fs_dep = declare_dependency( io_fs_dep = declare_dependency(
link_with: io_fs, link_with: io_fs,
dependencies: [ dependencies: [
fmt_dep,
io_dep,
fs_dep, fs_dep,
], ],
) )