From 11085f91c24dd895dfd1e9d02a71f1a3346e3c00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Mart=C3=ADnez?= Date: Sat, 11 Aug 2018 13:57:42 +0200 Subject: build: Do not make heavy use of project_name The current meson build files make heavy use of meson's `project_name` function. However this makes difficult for any developer to find for given program/library/file names. The project name is also never going to change. Due to this reason these calls have been changed for `dconf` itself. --- tests/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/meson.build b/tests/meson.build index 83bb446..96e45dc 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -5,7 +5,7 @@ sources = files( ) libdconf_mock = static_library( - meson.project_name() + '-mock', + 'dconf-mock', sources: sources, dependencies: glib_dep ) -- cgit v1.2.1