]> git.sesse.net Git - plocate/blobdiff - meson.build
Remove unfinished debug code.
[plocate] / meson.build
index 081da3ac6fe7bdf0b17846bce5f9c7670e76ee3f..f3094eafbd206918b9f5c2ca3b848faea40974e3 100644 (file)
@@ -1,4 +1,4 @@
-project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.6')
+project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.8-pre')
 
 # Make the version available as a #define.
 add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', language: 'cpp')
@@ -12,6 +12,9 @@ atomicdep = cxx.find_library('atomic', required: false)
 if not uringdep.found()
        add_project_arguments('-DWITHOUT_URING', language: 'cpp')
 endif
+if cxx.has_header('endian.h')
+       add_project_arguments('-DHAS_ENDIAN_H', language: 'cpp')
+endif
 
 # Function multiversioning is x86-only _and_ not available on certain targets
 # (they need “ifunc”, indirect functions, a GNU extension).
@@ -26,7 +29,7 @@ executable('plocate', ['plocate.cpp', 'io_uring_engine.cpp', 'turbopfor.cpp', 'p
        dependencies: [uringdep, zstddep, threaddep, atomicdep],
        install: true,
        install_mode: ['rwxr-sr-x', 'root', 'mlocate'])
-executable('plocate-build', 'plocate-build.cpp',
+executable('plocate-build', ['plocate-build.cpp', 'database-builder.cpp'],
        dependencies: [zstddep],
        install: true,
        install_dir: get_option('sbindir'))