meson.build: add missing libfmt dependencies

This commit is contained in:
Max Kellermann 2023-03-06 20:06:41 +01:00
parent 415de497d3
commit 0c102a8f2f
6 changed files with 13 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#include "config/Data.hxx" #include "config/Data.hxx"
#ifdef ANDROID #ifdef ANDROID
#include "fs/StandardDirectory.hxx" #include "fs/glue/StandardDirectory.hxx"
#endif #endif
StateFileConfig::StateFileConfig(const ConfigData &config) StateFileConfig::StateFileConfig(const ConfigData &config)

View File

@ -28,6 +28,7 @@ fs = static_library(
shlwapi_dep, shlwapi_dep,
system_dep, system_dep,
icu_dep, icu_dep,
fmt_dep,
], ],
) )

View File

@ -10,6 +10,9 @@ input_api = static_library(
'ProxyInputStream.cxx', 'ProxyInputStream.cxx',
'LastInputStream.cxx', 'LastInputStream.cxx',
include_directories: inc, include_directories: inc,
dependencies: [
thread_dep,
],
) )
input_api_dep = declare_dependency( input_api_dep = declare_dependency(

View File

@ -18,6 +18,7 @@ sqlite = static_library(
include_directories: inc, include_directories: inc,
dependencies: [ dependencies: [
sqlite_dep, sqlite_dep,
fmt_dep,
], ],
) )

View File

@ -21,4 +21,7 @@ thread = static_library(
thread_dep = declare_dependency( thread_dep = declare_dependency(
link_with: thread, link_with: thread,
dependencies: [
fmt_dep,
],
) )

View File

@ -39,6 +39,7 @@ executable(
include_directories: inc, include_directories: inc,
dependencies: [ dependencies: [
config_dep, config_dep,
fmt_dep,
], ],
) )
@ -254,6 +255,7 @@ if enable_database
'../src/TagSave.cxx', '../src/TagSave.cxx',
include_directories: inc, include_directories: inc,
dependencies: [ dependencies: [
fmt_dep,
pcm_basic_dep, pcm_basic_dep,
song_dep, song_dep,
fs_dep, fs_dep,
@ -383,6 +385,7 @@ executable(
'../src/TagFile.cxx', '../src/TagFile.cxx',
include_directories: inc, include_directories: inc,
dependencies: [ dependencies: [
fmt_dep,
playlist_glue_dep, playlist_glue_dep,
input_glue_dep, input_glue_dep,
archive_glue_dep, archive_glue_dep,
@ -446,6 +449,7 @@ executable(
'../src/TagSave.cxx', '../src/TagSave.cxx',
include_directories: inc, include_directories: inc,
dependencies: [ dependencies: [
fmt_dep,
decoder_glue_dep, decoder_glue_dep,
input_glue_dep, input_glue_dep,
archive_glue_dep, archive_glue_dep,