diff options
author | John Turner <jturner.usa@gmail.com> | 2025-09-14 00:06:33 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-09-14 00:06:33 -0400 |
commit | c6bd9c80ef5038cca580191148d9b88ab505bcf6 (patch) | |
tree | 596ab05ee81a5d5ad5c351fdef5e78eb50efe708 /meson.build | |
download | sqlite-kv-bench-c6bd9c80ef5038cca580191148d9b88ab505bcf6.tar.gz |
init
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..642de1e --- /dev/null +++ b/meson.build @@ -0,0 +1,14 @@ +project( + 'sqlite-kv-bench', + 'cpp', + meson_version: '>=1.4.0', + default_options: ['warning_level=3', 'cpp_std=c++23'], +) + +cmake = import('cmake') + +boost_sqlite = cmake.subproject('boost-sqlite').dependency('boost-sqlite') + +sources = files('src/main.cpp') + +executable('bench', sources, dependencies: [boost_sqlite]) |