diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2017-02-15 16:48:39 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-02-15 16:48:39 +0000 |
commit | fa7d140eb524b2f56abc9ced757ef866ff2bb99a (patch) | |
tree | a16f91c5342f65c9e532f3ca81b6f8089ceca76b /meson.build | |
parent | 877fe816a75030c5e82b1b1b72398033011afbec (diff) | |
download | libepoxy-fa7d140eb524b2f56abc9ced757ef866ff2bb99a.tar.gz |
Annotate build issues with Meson
We depend on an older version of Meson; once we can bump up the minimum
version, we'll be able to fix a couple of less than optimal uses of the
Meson API.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 4137646..d271d95 100644 --- a/meson.build +++ b/meson.build @@ -203,12 +203,16 @@ configure_file(input: 'epoxy.pc.in', install_dir: join_paths(epoxy_libdir, 'pkgconfig')) # Python +# XXX: Depend on 0.37.1 for: +# python = import('python3').find_python() python = find_program('python3', required: false) if not python.found() python = find_program('python', required: true) endif # Generates the dispatch tables +# XXX: Depend on 0.38.1 for: +# gen_dispatch_py = files('src/gen_dispatch.py') gen_dispatch_py = join_paths(meson.source_root(), 'src/gen_dispatch.py') gl_registry = files('registry/gl.xml') |