diff options
author | Manatsawin Hanmongkolchai <[email protected]> | 2022-11-14 23:52:41 +0700 |
---|---|---|
committer | raveit65 <[email protected]> | 2023-04-20 18:07:49 +0200 |
commit | 94abc672375a68425d210bec872167922808391c (patch) | |
tree | 9376b2dfc478aa304e9dfae79883ff3720d4a72c /meson.build | |
parent | faf2001f46509a7434fc10ee848ce1ce84255dcd (diff) | |
download | eom-94abc672375a68425d210bec872167922808391c.tar.bz2 eom-94abc672375a68425d210bec872167922808391c.tar.xz |
Add plugin build
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 237ea0e..54b6db0 100644 --- a/meson.build +++ b/meson.build @@ -20,6 +20,7 @@ libdir = join_paths(get_option('prefix'), get_option('libdir')) schemadir = datadir / 'glib-2.0' / 'schemas' localedir = join_paths(get_option('prefix'), get_option('localedir')) includedir = join_paths(get_option('prefix'), get_option('includedir')) +pluginsdir = libdir / 'eom' / 'plugins' # Dependencies glib_required = '2.52.0' @@ -200,7 +201,7 @@ endif subdir('cut-n-paste') subdir('src') subdir('man') -#subdir('plugins') +subdir('plugins') subdir('help') subdir('data') subdir('doc') |