summaryrefslogtreecommitdiff
path: root/src/modules/winlist
diff options
context:
space:
mode:
authorMarcel Hollerbach <marcel-hollerbach@t-online.de>2017-08-08 18:19:11 +0200
committerMarcel Hollerbach <marcel-hollerbach@t-online.de>2017-08-08 18:38:37 +0200
commit29901d67b23e5d1c3509d84324de7ca17a96b31c (patch)
tree503486b0110c2f23934fbacca767fafe2207475c /src/modules/winlist
parent3becd06c94ba7cc2dd48c2761134b818f3b5a60d (diff)
downloadenlightenment-29901d67b23e5d1c3509d84324de7ca17a96b31c.tar.gz
meson: use file instead of doing the relative path by hand
a reason for doing that is that you can just pack together targets into a array and pass them to our helper, and the helper will just handle them, so even module with eldbus codegen etc is now supported. This also means that we are just passing the src object directly into the shared_module call, which means the user of our helper can just pack everything he needs into the src var and the helper does not need to know about it.
Diffstat (limited to 'src/modules/winlist')
-rw-r--r--src/modules/winlist/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/winlist/meson.build b/src/modules/winlist/meson.build
index 7e9ab069f7..1c20c7faa5 100644
--- a/src/modules/winlist/meson.build
+++ b/src/modules/winlist/meson.build
@@ -1,7 +1,7 @@
-src = [
+src = files(
'e_mod_main.c',
'e_int_config_winlist.c',
'e_winlist.c',
'e_mod_main.h',
'e_winlist.h'
-]
+ )