diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-04-07 13:58:13 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-04-07 13:58:13 -0700 |
commit | b297a7738a02b3fb7a8842e054c4068195038c38 (patch) | |
tree | 846903789c9dff94110bd724c3e98025dc56ec5e /.editorconfig | |
parent | 2b5316265c5ce6c7dbd8f726826d5d5a7385febd (diff) |
meson: Add a meson build system
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/app/appres/-/merge_requests/4>
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8f15786 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = tab +indent_size = 8 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[{meson.build, meson_options.txt}] +indent_size = 2 +indent_style = space + |