summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-09-23 17:05:25 -0400
committerDavid Robillard <d@drobilla.net>2023-09-23 17:10:21 -0400
commitbc0436a0a0e65e2d40086d709b2c9e8a27a5208f (patch)
treeef40a9057de2b45edc07ff9ef8e9bed9a9f37360
parent4e0cffe41b3556baeb4ac3dde7ebac164232aeb0 (diff)
downloaddrobillad-bc0436a0a0e65e2d40086d709b2c9e8a27a5208f.tar.gz
drobillad-bc0436a0a0e65e2d40086d709b2c9e8a27a5208f.tar.bz2
drobillad-bc0436a0a0e65e2d40086d709b2c9e8a27a5208f.zip
Format meson.build file with muon
The less time wasted with manual code formatting, the better.
-rw-r--r--meson.build23
1 files changed, 13 insertions, 10 deletions
diff --git a/meson.build b/meson.build
index 080143a..f41e14d 100644
--- a/meson.build
+++ b/meson.build
@@ -1,13 +1,16 @@
-project('drobillad', ['c', 'cpp'],
- version: '0.0.0',
- license: 'GPLv3+',
- meson_version: '>= 0.56.0',
- default_options: [
- 'b_ndebug=if-release',
- 'buildtype=release',
- 'c_std=c99',
- 'cpp_std=c++17',
- ])
+project(
+ 'drobillad',
+ ['c', 'cpp'],
+ default_options: [
+ 'b_ndebug=if-release',
+ 'buildtype=release',
+ 'c_std=c99',
+ 'cpp_std=c++17',
+ ],
+ license: 'GPLv3+',
+ meson_version: '>= 0.56.0',
+ version: '0.0.0',
+)
#######################
# Compilers and Flags #