mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-20 08:10:06 +01:00
Check that we don't repeat the omission in future.
(cherry picked from commit cb1172ee3d)
18 lines
340 B
Meson
18 lines
340 B
Meson
version_conf = configuration_data()
|
|
version_conf.set('VERSION', nm_version)
|
|
|
|
version_xml = 'version.xml'
|
|
|
|
subdir('libnm')
|
|
subdir('api')
|
|
|
|
if enable_libnm_glib
|
|
subdir('libnm-util')
|
|
subdir('libnm-glib')
|
|
endif
|
|
|
|
test(
|
|
'check-docs',
|
|
find_program(join_paths(meson.source_root(), 'tools', 'check-docs.sh')),
|
|
args: [meson.source_root()]
|
|
)
|