mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-22 20:25:39 +02:00
meson: add the library needed for the FreeBSD support
This commit is contained in:
parent
2e6847077e
commit
6a9f66b837
1 changed files with 4 additions and 2 deletions
|
@ -43,7 +43,9 @@ endif
|
||||||
# Common dependencies
|
# Common dependencies
|
||||||
dl = cc.find_library('dl')
|
dl = cc.find_library('dl')
|
||||||
m = cc.find_library('m')
|
m = cc.find_library('m')
|
||||||
threads = dependency('threads')
|
threads = [dependency('threads'), cc.find_library('stdthreads', required: false)]
|
||||||
|
libepoll = dependency('epoll-shim', required: false)
|
||||||
|
libinotify = dependency('libinotify', required: false)
|
||||||
pixman = dependency('pixman-1')
|
pixman = dependency('pixman-1')
|
||||||
yaml = dependency('yaml-0.1')
|
yaml = dependency('yaml-0.1')
|
||||||
|
|
||||||
|
@ -117,7 +119,7 @@ yambar = executable(
|
||||||
'tag.c', 'tag.h',
|
'tag.c', 'tag.h',
|
||||||
'yml.c', 'yml.h',
|
'yml.c', 'yml.h',
|
||||||
version,
|
version,
|
||||||
dependencies: [bar, pixman, yaml, threads, dl, tllist, fcft] +
|
dependencies: [bar, libepoll, libinotify, pixman, yaml, threads, dl, tllist, fcft] +
|
||||||
decorations + particles + modules,
|
decorations + particles + modules,
|
||||||
c_args: [plugin_mpd_enabled? '-DPLUGIN_ENABLED_MPD':[]],
|
c_args: [plugin_mpd_enabled? '-DPLUGIN_ENABLED_MPD':[]],
|
||||||
build_rpath: '$ORIGIN/modules:$ORIGIN/decorations:$ORIGIN/particles',
|
build_rpath: '$ORIGIN/modules:$ORIGIN/decorations:$ORIGIN/particles',
|
||||||
|
|
Loading…
Add table
Reference in a new issue