The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

doc/meson: Remove install arg.

The project currently is set to meson version 0.49.0 but uses features
the install argument for configure_file was introduced with meson 0.50.0.

This patch removes the unused parameter fixes the following warnings:
```
WARNING: Project targeting '>=0.49.0' but tried to use feature introduced in '0.50.0': install arg in configure_file
WARNING: Project specifies a minimum meson_version '>=0.49.0' but uses features which were added in newer versions:
* 0.50.0: {'install arg in configure_file'}
WARNING: Deprecated features used:
* 0.50.0: {'install arg in configure_file'}
```

In an initial patch I just bumped the meson version, but this introduced
problems in our Debian CI.
An increase in the meson version would be possible by using a meson
distribution from pip, as it's done for old distros in xrdesktop.

+1 -1
+1 -1
doc/meson.build
··· 23 23 endif 24 24 25 25 doxyfile = configure_file(input: 'Doxyfile.in', 26 - output: 'Doxyfile', configuration: doxyconf, install: false) 26 + output: 'Doxyfile', configuration: doxyconf) 27 27 28 28 html = custom_target('docs', 29 29 input: doxyfile, output: 'html', command: [doxygen, doxyfile],