From fb0c97485d90a37ecd870810d2152c7442a9e84c Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Thu, 30 Apr 2020 19:52:28 +0000 Subject: data: switch gdm.service.in to use cmake format We're going to be switching to meson, and meson doesn't deal too well with an @ in the configuration file that's not part of a substitution variable. This commit switches the gdm service over to use a cmake style of substitution variables, so we can later tell meson to use configure in cmake mode and workaround the @ confusion. --- tests/meson.build | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tests/meson.build (limited to 'tests') diff --git a/tests/meson.build b/tests/meson.build new file mode 100644 index 00000000..128b5d2e --- /dev/null +++ b/tests/meson.build @@ -0,0 +1,17 @@ +m_common_test_src = [ + 'm-common.c', + 's-common-address.c', + 's-common.c', +] + +m_common_test_deps = [ + libgdmcommon_dep, + libcheck_dep, +] + +m_common_test = executable('m-common', + m_common_test_src, + dependencies: m_common_test_deps, +) + +test('m-common', m_common_test) -- cgit v1.2.1