
meson is a build system focused on speed an ease of use, which helps speeding up the software development. This patch adds meson support along autotools. [thaller@redhat.com: rebased patch and adjusted for iwd support] https://mail.gnome.org/archives/networkmanager-list/2017-December/msg00022.html
13 lines
210 B
Meson
13 lines
210 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
|