diff options
author | David Robillard <d@drobilla.net> | 2023-09-23 17:10:59 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-23 17:10:59 -0400 |
commit | e70d162e313f5f5c30c90fc279f77a0e85cba99d (patch) | |
tree | fbfca5c60569d23a574968e48e3b1475d919a352 /subprojects | |
parent | e6831b0670cbb33414a541975b4a7de64841d243 (diff) | |
download | patchage-e70d162e313f5f5c30c90fc279f77a0e85cba99d.tar.gz patchage-e70d162e313f5f5c30c90fc279f77a0e85cba99d.tar.bz2 patchage-e70d162e313f5f5c30c90fc279f77a0e85cba99d.zip |
Format meson.build files with muon
The less time wasted with manual code formatting, the better.
Diffstat (limited to 'subprojects')
-rw-r--r-- | subprojects/fmt/meson.build | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/subprojects/fmt/meson.build b/subprojects/fmt/meson.build index c221ca1..cf9f6b5 100644 --- a/subprojects/fmt/meson.build +++ b/subprojects/fmt/meson.build @@ -1,15 +1,18 @@ # Copyright 2022 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR GPL-3.0-or-later -project('fmt', ['cpp'], - version: '9.0.0', - license: 'MIT', - meson_version: '>= 0.56.0', - default_options: [ - 'b_ndebug=if-release', - 'buildtype=release', - 'cpp_std=c++17', - ]) +project( + 'fmt', + ['cpp'], + default_options: [ + 'b_ndebug=if-release', + 'buildtype=release', + 'cpp_std=c++17', + ], + license: 'MIT', + meson_version: '>= 0.56.0', + version: '9.0.0', +) include_dirs = include_directories('include') |