X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=341f60b877eaa5df081657ddbc234f0f268631cb;hb=1773b6cc68ccd37bb8cbc2e920e46970f4079df5;hp=ba12c7b35b51a43061ae281a01fd5449d6fd806e;hpb=2ce47a17931bbb6d690592cd19f4a3f3b3dca25c;p=plocate diff --git a/meson.build b/meson.build index ba12c7b..341f60b 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.3-pre') +project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.5-pre') # Make the version available as a #define. add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', language: 'cpp') @@ -6,13 +6,15 @@ add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', lan cxx = meson.get_compiler('cpp') uringdep = dependency('liburing', required: false) zstddep = dependency('libzstd') +threaddep = dependency('threads') +atomicdep = dependency('atomic', required: false) if not uringdep.found() add_project_arguments('-DWITHOUT_URING', language: 'cpp') endif -executable('plocate', ['plocate.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp', 'parse_trigrams.cpp'], - dependencies: [uringdep, zstddep], +executable('plocate', ['plocate.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp', 'parse_trigrams.cpp', 'serializer.cpp', 'access_rx_cache.cpp', 'needle.cpp'], + dependencies: [uringdep, zstddep, threaddep, atomicdep], install: true, install_mode: ['rwxr-sr-x', 'root', 'mlocate']) executable('plocate-build', 'plocate-build.cpp', @@ -21,14 +23,18 @@ executable('plocate-build', 'plocate-build.cpp', install_dir: get_option('sbindir')) conf_data = configuration_data() +conf_data.set('PROCESSED_BY_MESON', '1') conf_data.set('sbindir', get_option('prefix') + '/' + get_option('sbindir')) +conf_data.set('locategroup', get_option('locategroup')) update_script = configure_file(input: 'update-plocate.sh', output: 'update-plocate.sh', configuration: conf_data) -install_data(update_script, - install_dir: '/etc/cron.daily', - rename: 'plocate') +if get_option('install_cron') + install_data(update_script, + install_dir: '/etc/cron.daily', + rename: 'plocate') +endif install_man('plocate.1') install_man('plocate-build.8')