Files
NetworkManager/docs/meson.build
Iñigo Martínez 82e79e40a5 meson: Avoid the use of source_root and build_root methods
The way some directory paths are defined has also been changed to
avoid the use of the `source_root` and `build_root` functions
because they are discouraged[0]

[0] https://wiki.gnome.org/Initiatives/GnomeGoals/MesonPorting
2019-10-01 09:49:33 +02:00

12 lines
234 B
Meson

version_conf = configuration_data()
version_conf.set('VERSION', nm_version)
subdir('libnm')
subdir('api')
test(
'check-docs',
find_program(join_paths(source_root, 'tools', 'check-docs.sh')),
args: [source_root, build_root],
)