X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=913fc0f8a98b04d5a2c690652eb29e8ba2a8d340;hb=601e6fef22bc018be1ca3b19215e54a2c2edcb9d;hp=3521fd55db57e86fa9c7efda0d9e8b40b3185324;hpb=db80346f0412329379cfde7a6aa0de8fd731ce4a;p=plocate diff --git a/meson.build b/meson.build index 3521fd5..913fc0f 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.1-pre') +project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.4-pre') # Make the version available as a #define. add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', language: 'cpp') @@ -6,13 +6,14 @@ 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') 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], install: true, install_mode: ['rwxr-sr-x', 'root', 'mlocate']) executable('plocate-build', 'plocate-build.cpp', @@ -21,14 +22,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')) -configure_file(input: 'update-plocate.sh', +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-plocate.sh', - 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') @@ -41,7 +46,7 @@ if run_command('[', '-r', pfordir + '/libic.a', ']').returncode() == 0 turbopfordep = declare_dependency( include_directories: include_directories('TurboPFor-Integer-Compression'), dependencies: meson.get_compiler('cpp').find_library('ic', dirs: pfordir)) - executable('bench', ['bench.cpp', 'io_uring_engine.cpp'], + executable('bench', ['bench.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp'], dependencies: [uringdep, turbopfordep], build_by_default: false, install: false)