summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-06-09 01:38:23 +0100
committerSam James <sam@gentoo.org>2023-06-09 07:57:10 +0100
commit16f347ffdff4da72d9a262a82f32777229c413b2 (patch)
treec39b3ad9e73422e7f62338af169962164c65e780 /meson_options.txt
parentAdd a chdir() function to act as a safer alternative to the cd builtin (diff)
downloadgentoo-functions-16f347ffdff4da72d9a262a82f32777229c413b2.tar.gz
gentoo-functions-16f347ffdff4da72d9a262a82f32777229c413b2.tar.bz2
gentoo-functions-16f347ffdff4da72d9a262a82f32777229c413b2.zip
Port to Meson
... yielding ``` /tmp/destdir └── usr └── local ├── bin │   └── consoletype ├── lib │   └── gentoo │   └── functions.sh ├── libexec │   └── gentoo │   └── ecma48-cpr └── share └── man └── man1 └── consoletype.1 11 directories, 4 files ``` Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
new file mode 100644
index 0000000..7fbab2d
--- /dev/null
+++ b/meson_options.txt
@@ -0,0 +1,3 @@
+option('tests', type : 'boolean', value : true,
+ description : 'Build tests'
+)