forked from external/yambar
meson: initial build conf
Not that well tested yet, does not support plugins-as-modules
This commit is contained in:
parent
a1be489293
commit
51e9d691e4
6 changed files with 218 additions and 0 deletions
10
decorations/meson.build
Normal file
10
decorations/meson.build
Normal file
|
@ -0,0 +1,10 @@
|
|||
deco_sdk = declare_dependency(dependencies: [cairo, cairo_ft])
|
||||
|
||||
decorations = []
|
||||
foreach deco : ['background', 'stack', 'underline']
|
||||
lib = static_library(
|
||||
'decoration_@0@'.format(deco), '@0@.c'.format(deco), dependencies: deco_sdk)
|
||||
decorations += [declare_dependency(
|
||||
link_with: lib,
|
||||
compile_args: '-DHAVE_PLUGIN_@0@'.format(deco.underscorify()))]
|
||||
endforeach
|
Loading…
Add table
Add a link
Reference in a new issue