tllist: use tllist from external git repository

This commit is contained in:
Daniel Eklöf 2019-11-17 19:17:34 +01:00
parent 736e07b15e
commit 0550d2799d
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
14 changed files with 22 additions and 171 deletions

View file

@ -57,6 +57,8 @@ if backend_x11
install_headers('xcb.h', subdir: 'yambar')
endif
tllist = subproject('tllist').get_variable('tllist')
subdir('completions')
subdir('doc')
subdir('bar')
@ -84,10 +86,9 @@ yambar = executable(
'particle.c', 'particle.h',
'plugin.c', 'plugin.h',
'tag.c', 'tag.h',
'tllist.h',
'yml.c', 'yml.h',
version,
dependencies: [bar, freetype, fontconfig, pixman, yaml, threads, dl] +
dependencies: [bar, freetype, fontconfig, pixman, yaml, threads, dl, tllist] +
decorations + particles + modules,
build_rpath: '$ORIGIN/modules:$ORIGIN/decorations:$ORIGIN/particles',
export_dynamic: true,
@ -109,7 +110,6 @@ install_headers(
'particle.h',
'stride.h',
'tag.h',
'tllist.h',
'yml.h',
subdir: 'yambar')