mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-01 11:28:02 +02:00
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
22 lines
245 B
Meson
22 lines
245 B
Meson
subdir('adsl')
|
|
|
|
if enable_modem_manager
|
|
subdir('wwan')
|
|
subdir('bluetooth')
|
|
endif
|
|
|
|
if enable_wifi
|
|
subdir('wifi')
|
|
endif
|
|
|
|
if enable_teamdctl
|
|
subdir('team')
|
|
endif
|
|
|
|
if enable_ovs
|
|
subdir('ovs')
|
|
endif
|
|
|
|
if enable_tests
|
|
subdir('tests')
|
|
endif
|