
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
12 lines
234 B
Meson
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],
|
|
)
|