summaryrefslogtreecommitdiff
path: root/gdbus
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-08-11 14:05:42 +0200
committerIñigo Martínez <inigomartinez@gmail.com>2018-08-11 22:57:34 +0200
commit76f60f47e54eae63cf0d979c9260f4aa142177b1 (patch)
treed05e6e76321f38ae31dc64349b76614534bbdd8f /gdbus
parent11085f91c24dd895dfd1e9d02a71f1a3346e3c00 (diff)
downloaddconf-76f60f47e54eae63cf0d979c9260f4aa142177b1.tar.gz
build: Add trailing commas where necessary
Having trailing commas in place means that if another source file or parameter is added to the end of the list or function, there won't be noise when adding the comma to the line above.
Diffstat (limited to 'gdbus')
-rw-r--r--gdbus/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdbus/meson.build b/gdbus/meson.build
index 666824f..ca07019 100644
--- a/gdbus/meson.build
+++ b/gdbus/meson.build
@@ -6,12 +6,12 @@ libdconf_gdbus_thread = static_library(
include_directories: top_inc,
dependencies: libdconf_engine_dep,
c_args: cflags,
- pic: true
+ pic: true,
)
libdconf_gdbus_thread_dep = declare_dependency(
dependencies: libdconf_engine_dep,
- link_with: libdconf_gdbus_thread
+ link_with: libdconf_gdbus_thread,
)
libdconf_gdbus_filter = static_library(
@@ -20,10 +20,10 @@ libdconf_gdbus_filter = static_library(
include_directories: top_inc,
dependencies: libdconf_engine_dep,
c_args: cflags,
- pic: true
+ pic: true,
)
libdconf_gdbus_filter_dep = declare_dependency(
dependencies: libdconf_engine_dep,
- link_with: libdconf_gdbus_filter
+ link_with: libdconf_gdbus_filter,
)