aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorAleksander Morgado <aleksandermj@chromium.org>2023-04-27 11:23:22 +0000
committerAleksander Morgado <aleksander@aleksander.es>2023-04-27 12:23:04 +0000
commitefcfce02a95fe43adb40c1e01e82e0719a217983 (patch)
tree6db930fd8f86ae4075a5eed620a9561f2b0666b5 /meson.build
parent549e2f511874cc5d8b6ff4b8d0cca6aafe461a35 (diff)
build-aux,mkenums: import custom mkenums tool from libqmi/libmbim
We're going to use certain new features included in the custom tool.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index d7085f92..09ae4488 100644
--- a/meson.build
+++ b/meson.build
@@ -50,15 +50,19 @@ mm_gir_version = '1.0'
gnome = import('gnome')
i18n = import('i18n')
pkg = import('pkgconfig')
+python = import('python').find_installation('python3')
source_root = meson.current_source_dir()
build_root = meson.current_build_dir()
build_aux_dir = source_root / 'build-aux'
+templates_dir = source_root / 'build-aux/templates'
po_dir = source_root / 'po'
src_dir = source_root / 'src'
plugins_dir = source_root / 'src/plugins'
+mm_mkenums = find_program(source_root / 'build-aux/mm-mkenums')
+
top_inc = include_directories('.')
cc = meson.get_compiler('c')