diff options
author | Richard Hughes <richard@hughsie.com> | 2017-12-17 17:25:01 +0000 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2017-12-18 14:23:45 +0000 |
commit | cb98df0b008a5a1ccb4cdfa5e1ed945dc6c24d03 (patch) | |
tree | 920f671e3d6e02dddd80a525c4b0e7ccc3ffbb26 /libappstream-builder/meson.build | |
parent | 19ec1e9d6585eb647ff4ec65e0b938e4c18dea3b (diff) | |
download | appstream-glib-cb98df0b008a5a1ccb4cdfa5e1ed945dc6c24d03.tar.gz |
Do not use an 'enable' prefix for meson arguments
Diffstat (limited to 'libappstream-builder/meson.build')
-rw-r--r-- | libappstream-builder/meson.build | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libappstream-builder/meson.build b/libappstream-builder/meson.build index 55f0868..b59cc56 100644 --- a/libappstream-builder/meson.build +++ b/libappstream-builder/meson.build @@ -13,15 +13,15 @@ deps = [ soup, ] -if get_option('enable-dep11') +if get_option('dep11') deps = deps + [yaml] endif -if get_option('enable-rpm') +if get_option('rpm') deps = deps + [rpm] endif -if get_option('enable-alpm') +if get_option('alpm') deps = deps + [alpm] endif @@ -44,11 +44,11 @@ sources = [ 'asb-plugin-loader.c', ] -if get_option('enable-rpm') +if get_option('rpm') sources = sources + ['asb-package-rpm.c'] endif -if get_option('enable-alpm') +if get_option('alpm') sources = sources + ['asb-package-alpm.c'] endif @@ -128,7 +128,7 @@ asbuilder_introspection_srcs = [ 'asb-task.h', ] -if get_option('enable-introspection') +if get_option('introspection') asglib_gir_dep = declare_dependency(sources: asglib_gir) gnome.generate_gir(asbuilder, |