X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=bcba6519ee81aa1be39c6e41e9bb49a0d58e34c8;hb=fb389b6747c6ea8db9257d8ad55251909d140358;hp=d6d0e99b55fbe4127c82e38dda78e81bc2b35fc8;hpb=d5ba26d705460a7e37213eeb4954b2efed8bebf0;p=plocate diff --git a/meson.build b/meson.build index d6d0e99..bcba651 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.4-pre') +project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.4') # Make the version available as a #define. add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', language: 'cpp') @@ -12,7 +12,7 @@ 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', 'serializer.cpp', 'access_rx_cache.cpp'], +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'])