1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-09-28 14:55:26 +00:00

data: Check desktop file in build dir

It got moved in f6f9e3f039
This commit is contained in:
Guido Günther 2020-11-17 10:55:12 +01:00
parent 9afd49e6e7
commit 1e3c117978

View file

@ -23,11 +23,11 @@ desktop_file = i18n.merge_file(
desktop_utils = find_program('desktop-file-validate', required: false)
if desktop_utils.found()
test('Validate desktop file', desktop_utils,
args: [join_paths(meson.current_source_dir(),
args: [join_paths(meson.current_build_dir(),
'sm.puri.Calls.desktop')
])
test('Validate daemon desktop file', desktop_utils,
args: [join_paths(meson.current_source_dir(),
args: [join_paths(meson.current_build_dir(),
'sm.puri.Calls-daemon.desktop')
])
endif