diff options
author | Iñigo Martínez <inigomartinez@gmail.com> | 2018-08-11 14:05:42 +0200 |
---|---|---|
committer | Iñigo Martínez <inigomartinez@gmail.com> | 2018-08-11 22:57:34 +0200 |
commit | 76f60f47e54eae63cf0d979c9260f4aa142177b1 (patch) | |
tree | d05e6e76321f38ae31dc64349b76614534bbdd8f /engine | |
parent | 11085f91c24dd895dfd1e9d02a71f1a3346e3c00 (diff) | |
download | dconf-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 'engine')
-rw-r--r-- | engine/meson.build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/meson.build b/engine/meson.build index 0705c75..e81d6c1 100644 --- a/engine/meson.build +++ b/engine/meson.build @@ -5,12 +5,12 @@ sources = files( 'dconf-engine-source-file.c', 'dconf-engine-source-user.c', 'dconf-engine-source-service.c', - 'dconf-engine-source-system.c' + 'dconf-engine-source-system.c', ) deps = [ libdconf_common_dep, - libgvdb_dep + libgvdb_dep, ] libdconf_engine = static_library( @@ -19,10 +19,10 @@ libdconf_engine = static_library( include_directories: top_inc, dependencies: deps + [libdconf_shm_dep], c_args: '-DG_LOG_DOMAIN="dconf"', - pic: true + pic: true, ) libdconf_engine_dep = declare_dependency( dependencies: deps, - link_with: libdconf_engine + link_with: libdconf_engine, ) |