meson.build: add missing libfmt dependencies
This commit is contained in:
parent
415de497d3
commit
0c102a8f2f
|
@ -5,7 +5,7 @@
|
|||
#include "config/Data.hxx"
|
||||
|
||||
#ifdef ANDROID
|
||||
#include "fs/StandardDirectory.hxx"
|
||||
#include "fs/glue/StandardDirectory.hxx"
|
||||
#endif
|
||||
|
||||
StateFileConfig::StateFileConfig(const ConfigData &config)
|
||||
|
|
|
@ -28,6 +28,7 @@ fs = static_library(
|
|||
shlwapi_dep,
|
||||
system_dep,
|
||||
icu_dep,
|
||||
fmt_dep,
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -10,6 +10,9 @@ input_api = static_library(
|
|||
'ProxyInputStream.cxx',
|
||||
'LastInputStream.cxx',
|
||||
include_directories: inc,
|
||||
dependencies: [
|
||||
thread_dep,
|
||||
],
|
||||
)
|
||||
|
||||
input_api_dep = declare_dependency(
|
||||
|
|
|
@ -18,6 +18,7 @@ sqlite = static_library(
|
|||
include_directories: inc,
|
||||
dependencies: [
|
||||
sqlite_dep,
|
||||
fmt_dep,
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -21,4 +21,7 @@ thread = static_library(
|
|||
|
||||
thread_dep = declare_dependency(
|
||||
link_with: thread,
|
||||
dependencies: [
|
||||
fmt_dep,
|
||||
],
|
||||
)
|
||||
|
|
|
@ -39,6 +39,7 @@ executable(
|
|||
include_directories: inc,
|
||||
dependencies: [
|
||||
config_dep,
|
||||
fmt_dep,
|
||||
],
|
||||
)
|
||||
|
||||
|
@ -254,6 +255,7 @@ if enable_database
|
|||
'../src/TagSave.cxx',
|
||||
include_directories: inc,
|
||||
dependencies: [
|
||||
fmt_dep,
|
||||
pcm_basic_dep,
|
||||
song_dep,
|
||||
fs_dep,
|
||||
|
@ -383,6 +385,7 @@ executable(
|
|||
'../src/TagFile.cxx',
|
||||
include_directories: inc,
|
||||
dependencies: [
|
||||
fmt_dep,
|
||||
playlist_glue_dep,
|
||||
input_glue_dep,
|
||||
archive_glue_dep,
|
||||
|
@ -446,6 +449,7 @@ executable(
|
|||
'../src/TagSave.cxx',
|
||||
include_directories: inc,
|
||||
dependencies: [
|
||||
fmt_dep,
|
||||
decoder_glue_dep,
|
||||
input_glue_dep,
|
||||
archive_glue_dep,
|
||||
|
|
Loading…
Reference in New Issue