mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-23 23:28:13 +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
18 lines
236 B
Meson
18 lines
236 B
Meson
test_unit = 'test-general'
|
|
|
|
name = 'client-' + test_unit
|
|
|
|
deps += [
|
|
libnmc_dep,
|
|
libnmc_base_dep
|
|
]
|
|
|
|
exe = executable(
|
|
name,
|
|
test_unit + '.c',
|
|
include_directories: incs,
|
|
dependencies: deps,
|
|
c_args: cflags
|
|
)
|
|
|
|
test(name, exe)
|