X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=341f60b877eaa5df081657ddbc234f0f268631cb;hb=1773b6cc68ccd37bb8cbc2e920e46970f4079df5;hp=7c6755bcd695e01af23b410d05fc8599e9d63713;hpb=4ecef43ea601ab99ad2f2cf7715dbc52e8f3c775;p=plocate diff --git a/meson.build b/meson.build index 7c6755b..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.4-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') @@ -7,13 +7,14 @@ 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', 'serializer.cpp'], - dependencies: [uringdep, zstddep, threaddep], +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',