Skip to content

Commit e9c1b8f

Browse files
author
Alex R
authored
make meson find gatt module (#113)
1 parent 5118e08 commit e9c1b8f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('siglo',
22
version: '0.1.0',
3-
meson_version: '>= 0.50.0',
3+
meson_version: '>= 0.55.0',
44
default_options: [ 'warning_level=2',
55
],
66
)

src/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ gnome.compile_resources('siglo',
1212
python = import('python')
1313

1414
conf = configuration_data()
15-
conf.set('PYTHON', python.find_installation('python3').path())
15+
conf.set('PYTHON', python.find_installation('python3', modules: ['gatt']).full_path())
1616
conf.set('VERSION', meson.project_version())
1717
conf.set('localedir', join_paths(get_option('prefix'), get_option('localedir')))
1818
conf.set('pkgdatadir', pkgdatadir)

0 commit comments

Comments
 (0)