Skip to content

Commit

Permalink
make meson find gatt module (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex R committed Jun 21, 2022
1 parent 5118e08 commit e9c1b8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
@@ -1,6 +1,6 @@
project('siglo',
version: '0.1.0',
meson_version: '>= 0.50.0',
meson_version: '>= 0.55.0',
default_options: [ 'warning_level=2',
],
)
Expand Down
2 changes: 1 addition & 1 deletion src/meson.build
Expand Up @@ -12,7 +12,7 @@ gnome.compile_resources('siglo',
python = import('python')

conf = configuration_data()
conf.set('PYTHON', python.find_installation('python3').path())
conf.set('PYTHON', python.find_installation('python3', modules: ['gatt']).full_path())
conf.set('VERSION', meson.project_version())
conf.set('localedir', join_paths(get_option('prefix'), get_option('localedir')))
conf.set('pkgdatadir', pkgdatadir)
Expand Down

0 comments on commit e9c1b8f

Please sign in to comment.