mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-01 14:10:12 +01:00
Functions derived from generators as `configure_file`, `custom_target` and `i18n.merge_file` can use placeholders like `@BASENAME@` that removes the extension from the input filename string. The output string has been replaced by this placeholder that allows in some cases the use of less variables.
11 lines
258 B
Meson
11 lines
258 B
Meson
version_conf = configuration_data()
|
|
version_conf.set('VERSION', nm_version)
|
|
|
|
subdir('libnm')
|
|
subdir('api')
|
|
|
|
test(
|
|
'check-docs',
|
|
find_program(join_paths(meson.source_root(), 'tools', 'check-docs.sh')),
|
|
args: [meson.source_root(), meson.build_root()],
|
|
)
|