gnome-control-center/tests/printers/meson.build
Georges Basile Stavracas Neto af0186aaf9 project: Update meson files
I probably have OCD. Seeing these files
with this poor alignment gives me physical
pain.
2018-05-03 00:45:29 -03:00

22 lines
483 B
Meson

test_units = [
'test-canonicalization',
'test-shift'
]
includes = [top_inc, include_directories('../../panels/printers')]
cflags = '-DTEST_SRCDIR="@0@"'.format(meson.current_source_dir())
foreach unit: test_units
exe = executable(
unit,
[unit + '.c'],
include_directories : includes,
dependencies : common_deps,
link_with : [printers_panel_lib],
c_args : cflags
)
test(unit, exe)
endforeach