summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPeter Eisenmann <4240-p3732@users.noreply.gitlab.freedesktop.org>2022-09-07 14:24:43 +0000
committerJan Rybar <jrybar@redhat.com>2022-09-07 14:24:43 +0000
commita405b3e00ac24ae21ea36834cfc61cbae041bf39 (patch)
tree3679c33ed7cc9cf6d05f61e84afa22b6135871cb /test
parent91597f08929ddf1bc3a90a7122f9e23ea96d6e11 (diff)
downloadpolkit-a405b3e00ac24ae21ea36834cfc61cbae041bf39.tar.gz
build: add option to skip building polkitd
Diffstat (limited to 'test')
-rw-r--r--test/meson.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/meson.build b/test/meson.build
index 3f02d35..3acdbd4 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -23,4 +23,6 @@ test_env.set('MOCK_NETGROUP', test_etc_dir / 'netgroup')
test_env.set('POLKIT_TEST_DATA', test_data_dir)
subdir('polkit')
-subdir('polkitbackend')
+if not get_option('libs-only')
+ subdir('polkitbackend')
+endif