
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.
22 lines
424 B
Meson
22 lines
424 B
Meson
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2021 Iñigo Martinez <inigomartinez@gmail.com>
|
|
|
|
test_units = [
|
|
'common-helpers',
|
|
'pco',
|
|
]
|
|
|
|
foreach test_unit: test_units
|
|
test_name = 'test-' + test_unit
|
|
|
|
exe = executable(
|
|
test_name,
|
|
test_name + '.c',
|
|
include_directories: top_inc,
|
|
dependencies: libmm_glib_dep,
|
|
c_args: '-DLIBMM_GLIB_COMPILATION',
|
|
)
|
|
|
|
test(test_name, exe)
|
|
endforeach
|