From 3c500e0be9b580ce837a9ef03f307d1a2222ec48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Wed, 8 Sep 2021 20:46:43 +0200 Subject: [PATCH] meson: Rename some options --- meson.build | 4 ++-- meson_options.txt | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/meson.build b/meson.build index b055e07c..0a529703 100644 --- a/meson.build +++ b/meson.build @@ -19,11 +19,11 @@ datadir = join_paths(get_option('prefix'), get_option('datadir')) pkglibdir = join_paths(libdir, meson.project_name()) pkgdatadir = join_paths(datadir, meson.project_name()) -if get_option('clapper-lib') +if get_option('lib') subdir('lib') endif -if get_option('clapper-player') +if get_option('player') subdir('bin') subdir('data') subdir('po') diff --git a/meson_options.txt b/meson_options.txt index edb98935..1e0d763a 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,12 +1,12 @@ -option('clapper-player', +option('player', type: 'boolean', value: true, description: 'Build Clapper player' ) -option('clapper-lib', +option('lib', type: 'boolean', value: true, - description: 'Build Clapper libs (including API)' + description: 'Build GstClapper lib' ) option('devel-checks', type: 'boolean',