diff options
| author | Michael Biebl <biebl@debian.org> | 2021-10-01 23:05:04 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2021-10-01 23:05:04 +0200 |
| commit | e74c568b07b50b97873fb4ee1d776dedefbd54d6 (patch) | |
| tree | 3469f17ea9af91f7ff169b890633bda68b0cf76e /src/libnm-platform/meson.build | |
| parent | bfe522304da217296e2a61040f58e35ec5d6f3f2 (diff) | |
New upstream version 1.32.12 upstream/1.32.12
Diffstat (limited to 'src/libnm-platform/meson.build')
| -rw-r--r-- | src/libnm-platform/meson.build | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/libnm-platform/meson.build b/src/libnm-platform/meson.build new file mode 100644 index 00000000..3e4f41a9 --- /dev/null +++ b/src/libnm-platform/meson.build @@ -0,0 +1,25 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +libnm_platform = static_library( + 'nm-platform', + sources: [ + 'nm-linux-platform.c', + 'nm-netlink.c', + 'nm-platform-utils.c', + 'nm-platform.c', + 'nmp-netns.c', + 'nmp-object.c', + 'nmp-rules-manager.c', + 'wifi/nm-wifi-utils-nl80211.c', + 'wifi/nm-wifi-utils.c', + 'wpan/nm-wpan-utils.c', + ] + (enable_wext ? [ 'wifi/nm-wifi-utils-wext.c' ] : []), + include_directories: [ + src_inc, + top_inc, + ], + dependencies: [ + glib_dep, + libudev_dep, + ], +) |