X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=5bf6d993fe1474604a6e588c7aa0a9b3558df30b;hb=3c481c94adcbd3d0aa3a9767129664d7253cf189;hp=eca029769cc3a5de48cce87d5d3b54307234454d;hpb=9b18498b6959f908db04d2c46fc3af46221fb96c;p=plocate diff --git a/meson.build b/meson.build index eca0297..5bf6d99 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,8 @@ project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.0-pre') +# Make the version available as a #define. +add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', language: 'cpp') + cxx = meson.get_compiler('cpp') uringdep = dependency('liburing', required: false) zstddep = dependency('libzstd') @@ -8,7 +11,7 @@ if not uringdep.found() add_project_arguments('-DWITHOUT_URING', language: 'cpp') endif -executable('plocate', ['plocate.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp'], +executable('plocate', ['plocate.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp', 'parse_trigrams.cpp'], dependencies: [uringdep, zstddep], install: true, install_mode: ['rwxr-sr-x', 'root', 'mlocate']) @@ -20,6 +23,8 @@ executable('plocate-build', 'plocate-build.cpp', install_data('update-plocate.sh', install_dir: '/etc/cron.daily', rename: 'plocate') +install_man('plocate.1') +install_man('plocate-build.8') # Requires having TurboPFor checked out, so not built by default. # Unless you have a recent Meson, there's no apparently good way