From f8d61d957d4a2d086f4b97f2e3d7d19d0bb35f13 Mon Sep 17 00:00:00 2001 From: Vika Date: Sun, 1 Sep 2024 18:10:26 +0300 Subject: Mesonify build This took a while and had me scratching my head often. But I managed to combine the best parts of Crane and Meson together, allowing me to have blazing fast Nix builds. This also adds initial scaffolding for gettext and other cool things. --- meson.options | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 meson.options (limited to 'meson.options') diff --git a/meson.options b/meson.options new file mode 100644 index 0000000..7decbf0 --- /dev/null +++ b/meson.options @@ -0,0 +1,10 @@ +option( + 'profile', + type: 'combo', + choices: [ + 'default', + 'development' + ], + value: 'default', + description: 'The build profile for Bowl. One of "default" or "development".' +) \ No newline at end of file -- cgit 1.4.1