X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=meson.build;h=1694a0aa2b101fee32f17de4454b07a5ad9cdc29;hb=HEAD;hp=2f6cd15e1f86e3b9f9362237c1d66cecdf0a0516;hpb=f991de200799118355fd75237a740321bda7aaa7;p=src%2Fdrm-lease-manager.git diff --git a/meson.build b/meson.build index 2f6cd15..1694a0a 100644 --- a/meson.build +++ b/meson.build @@ -28,18 +28,21 @@ add_project_arguments( language: 'c' ) -configure_file(output: 'config.h', - configuration: config) +drm_dep = dependency('libdrm', version: '>= 2.4.89') +thread_dep = dependency('threads') +toml_dep = dependency('libtoml') -configuration_inc = include_directories('.') +systemd_dep = dependency('', required: false) +if get_option('enable-systemd') + systemd_dep = dependency('libsystemd', required: false) -drm_dep = dependency('libdrm', version: '>= 2.4.89') + config.set('HAVE_SYSTEMD_DAEMON', '1') +endif enable_tests = get_option('enable-tests') if enable_tests check_dep = dependency('check') - thread_dep = dependency('threads') # Default to the system provided version of fff.h. # otherwise fetch it ourselves. @@ -55,6 +58,11 @@ if enable_tests endif endif +configure_file(output: 'config.h', + configuration: config) + +configuration_inc = include_directories('.') + subdir('common') subdir('libdlmclient') subdir('drm-lease-manager')