diff options
| author | mbkma <[email protected]> | 2026-03-22 10:18:37 +0100 |
|---|---|---|
| committer | mbkma <[email protected]> | 2026-03-22 22:08:28 +0100 |
| commit | 4a14e878c1187d6cc1f76b87a24a6007314d996e (patch) | |
| tree | 14e01a5357bd807b95d368da78202cb495658718 /plugins/meson.build | |
| parent | f1fd658bda21506fac8966821fcdb4c2a154b590 (diff) | |
| download | pluma-meson.tar.bz2 pluma-meson.tar.xz | |
add meson supportmeson
Diffstat (limited to 'plugins/meson.build')
| -rw-r--r-- | plugins/meson.build | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/meson.build b/plugins/meson.build new file mode 100644 index 00000000..93d78b2d --- /dev/null +++ b/plugins/meson.build @@ -0,0 +1,19 @@ +plugin_cflags = [ + '-I' + meson.project_source_root(), + '-I' + meson.project_source_root() / 'pluma', +] + +subdir('docinfo') +subdir('externaltools') +subdir('filebrowser') +subdir('modelines') +subdir('pythonconsole') +subdir('quickopen') +subdir('snippets') +subdir('sort') +subdir('taglist') +subdir('time') +subdir('trailsave') +if have_enchant + subdir('spell') +endif |
