X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=meson.build;h=2e68459c44428315809731dfa00dec92ac9fa5d1;hb=edc3f0417302d72e5fbdc43e665db160fce30db5;hp=94ac72a472cd0abe853c4fd85198cac001d49b60;hpb=fef1478c684948646f4cb5b0174da4bdff7462c4;p=plocate diff --git a/meson.build b/meson.build index 94ac72a..2e68459 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') +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], + dependencies: [uringdep, zstddep, threaddep], install: true, install_mode: ['rwxr-sr-x', 'root', 'mlocate']) executable('plocate-build', 'plocate-build.cpp',