diff options
author | David Robillard <d@drobilla.net> | 2023-09-23 16:08:07 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-23 17:09:41 -0400 |
commit | 31a8dbcca82a394f0dd236776692a8a53a031777 (patch) | |
tree | 6e6e09921441c8ba33de9b88ae2db7ba3f402f49 /plugins/eg-scope.lv2/meson.build | |
parent | 7e8c1c7f96ea94869040fadd4550852b5ad67911 (diff) | |
download | lv2-31a8dbcca82a394f0dd236776692a8a53a031777.tar.xz |
Format meson.build files with muon
The less time wasted with manual code formatting, the better.
Diffstat (limited to 'plugins/eg-scope.lv2/meson.build')
-rw-r--r-- | plugins/eg-scope.lv2/meson.build | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/plugins/eg-scope.lv2/meson.build b/plugins/eg-scope.lv2/meson.build index 773a3d0..d776ee7 100644 --- a/plugins/eg-scope.lv2/meson.build +++ b/plugins/eg-scope.lv2/meson.build @@ -6,10 +6,12 @@ ui_sources = files('examploscope_ui.c') bundle_name = 'eg-scope.lv2' data_filenames = ['manifest.ttl.in', 'examploscope.ttl.in'] -gtk2_dep = dependency('gtk+-2.0', - include_type: 'system', - required: get_option('plugins'), - version: '>= 2.18.0') +gtk2_dep = dependency( + 'gtk+-2.0', + include_type: 'system', + required: get_option('plugins'), + version: '>= 2.18.0', +) module = shared_library( 'examploscope', @@ -25,7 +27,7 @@ module = shared_library( config = configuration_data( { 'LIB_EXT': '.' + module.full_path().split('.')[-1], - } + }, ) foreach filename : data_filenames |