summaryrefslogtreecommitdiffstats
path: root/subprojects/fmt/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/fmt/meson.build')
-rw-r--r--subprojects/fmt/meson.build19
1 files changed, 19 insertions, 0 deletions
diff --git a/subprojects/fmt/meson.build b/subprojects/fmt/meson.build
new file mode 100644
index 0000000..cf9f6b5
--- /dev/null
+++ b/subprojects/fmt/meson.build
@@ -0,0 +1,19 @@
+# Copyright 2022 David Robillard <d@drobilla.net>
+# SPDX-License-Identifier: 0BSD OR GPL-3.0-or-later
+
+project(
+ 'fmt',
+ ['cpp'],
+ default_options: [
+ 'b_ndebug=if-release',
+ 'buildtype=release',
+ 'cpp_std=c++17',
+ ],
+ license: 'MIT',
+ meson_version: '>= 0.56.0',
+ version: '9.0.0',
+)
+
+include_dirs = include_directories('include')
+
+fmt_dep = declare_dependency(include_directories: include_dirs)