mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager
synced 2024-11-05 19:03:31 +00:00
5e16bcf268
Some targets are missing dependencies on some generated sources in the meson port. These makes the build to fail due to missing source files on a highly parallelized build. These dependencies have been resolved by taking advantage of meson's internal dependencies which can be used to pass source files, include directories, libraries and compiler flags. One of such internal dependencies called `core_dep` was already in use. However, in order to avoid any confusion with another new internal dependency called `nm_core_dep`, which is used to include directories and source files from the `libnm-core` directory, the `core_dep` dependency has been renamed to `nm_dep`. These changes have allowed minimizing the build details which are inherited by using those dependencies. The parallelized build has also been improved.
45 lines
1.1 KiB
Meson
45 lines
1.1 KiB
Meson
shared_inc = include_directories('.')
|
|
|
|
version_conf = configuration_data()
|
|
version_conf.set('NM_MAJOR_VERSION', nm_major_version)
|
|
version_conf.set('NM_MINOR_VERSION', nm_minor_version)
|
|
version_conf.set('NM_MICRO_VERSION', nm_micro_version)
|
|
|
|
version = 'nm-version-macros.h'
|
|
|
|
version_header = configure_file(
|
|
input: version + '.in',
|
|
output: version,
|
|
configuration: version_conf
|
|
)
|
|
|
|
shared_meta_setting = files('nm-meta-setting.c')
|
|
|
|
shared_test_utils = files('nm-test-utils-impl.c')
|
|
|
|
shared_siphash = files('nm-utils/siphash24.c')
|
|
|
|
shared_udev_utils = files('nm-utils/nm-udev-utils.c')
|
|
|
|
shared_utils = files(
|
|
'nm-utils/nm-enum-utils.c',
|
|
'nm-utils/nm-hash-utils.c',
|
|
'nm-utils/nm-random-utils.c',
|
|
'nm-utils/nm-shared-utils.c'
|
|
)
|
|
|
|
shared_vpn_plugin_utils = files('nm-utils/nm-vpn-plugin-utils.c')
|
|
|
|
shared_sources = shared_utils + shared_meta_setting + shared_udev_utils + files(
|
|
'nm-utils/c-list-util.c',
|
|
'nm-utils/nm-dedup-multi.c'
|
|
)
|
|
|
|
shared_dep = declare_dependency(
|
|
include_directories: [
|
|
top_inc,
|
|
shared_inc,
|
|
include_directories('nm-utils')
|
|
],
|
|
dependencies: glib_dep
|
|
)
|