summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-11-13 14:11:36 -0500
committerDavid Robillard <d@drobilla.net>2024-11-13 14:11:36 -0500
commit35eb41289c90f00dd537f236e6a23130b4474cab (patch)
tree293314134496a3b8f92beef737beb193e3248651
parente5e6dfdc53571f1b2cf86f6bd50ff485aaa58336 (diff)
downloadganv-35eb41289c90f00dd537f236e6a23130b4474cab.tar.gz
ganv-35eb41289c90f00dd537f236e6a23130b4474cab.tar.bz2
ganv-35eb41289c90f00dd537f236e6a23130b4474cab.zip
Remove unused "tools" configuration option
-rw-r--r--NEWS3
-rw-r--r--meson.build5
-rw-r--r--meson_options.txt3
3 files changed, 2 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index 73bec86..1c9e8c8 100644
--- a/NEWS
+++ b/NEWS
@@ -2,8 +2,9 @@ ganv (1.8.3) unstable; urgency=medium
* Fix library current_version on MacOS
* Update installation instructions
+ * Remove unused "tools" configuration option
- -- David Robillard <d@drobilla.net> Fri, 19 Jul 2024 00:49:05 +0000
+ -- David Robillard <d@drobilla.net> Wed, 13 Nov 2024 19:11:25 +0000
ganv (1.8.2) stable; urgency=medium
diff --git a/meson.build b/meson.build
index 6b7fb47..e00ddd6 100644
--- a/meson.build
+++ b/meson.build
@@ -237,12 +237,7 @@ if not get_option('gir').disabled()
endif
if not meson.is_subproject()
- summary('Tools', get_option('tools'), bool_yn: true)
summary('Install prefix', get_option('prefix'))
summary('Headers', get_option('prefix') / get_option('includedir'))
summary('Libraries', get_option('prefix') / get_option('libdir'))
-
- if get_option('tools')
- summary('Executables', get_option('prefix') / get_option('bindir'))
- endif
endif
diff --git a/meson_options.txt b/meson_options.txt
index 045bc2f..2a3f305 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -18,6 +18,3 @@ option('nls', type: 'feature', yield: true,
option('title', type: 'string', value: 'Ganv',
description: 'Project title')
-
-option('tools', type: 'boolean', yield: true,
- description: 'Build command line utilities')