diff options
author | Aleksander Morgado <aleksandermj@chromium.org> | 2022-12-08 13:37:55 +0000 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2023-01-03 13:56:25 +0000 |
commit | e14b904cbd6816cb0227d519d308ae71ddaf6e07 (patch) | |
tree | 4997ab68cc606fdf4d72a571e821cec0c8df42ef /meson.build | |
parent | 072d7ac9065f444e83b390a1e2af5471ac0d48f6 (diff) |
build: move plugins directory to src/plugins
We are going to allow including the plugin sources built within the
ModemManager daemon binary; moving the sources within the daemon
sources directory makes it easier.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meson.build b/meson.build index 34b93486..cc2191fe 100644 --- a/meson.build +++ b/meson.build @@ -55,9 +55,9 @@ source_root = meson.current_source_dir() build_root = meson.current_build_dir() build_aux_dir = source_root / 'build-aux' -plugins_dir = source_root / 'plugins' po_dir = source_root / 'po' src_dir = source_root / 'src' +plugins_dir = source_root / 'src/plugins' top_inc = include_directories('.') @@ -397,7 +397,6 @@ endif subdir('libmm-glib') subdir('src') -subdir('plugins') subdir('cli') if enable_tests |