diff options
-rw-r--r-- | meson.build | 23 |
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 # |