Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'example/meson.build')
-rw-r--r--example/meson.build8
1 files changed, 8 insertions, 0 deletions
diff --git a/example/meson.build b/example/meson.build
new file mode 100644
index 00000000..0a5a53c7
--- /dev/null
+++ b/example/meson.build
@@ -0,0 +1,8 @@
+example_matrix = [
+ ['spdlog-example', spdlog_dep],
+ ['spdlog-example-ho', spdlog_headeronly_dep],
+]
+
+foreach i : example_matrix
+ test_exe = executable(i[0], ['example.cpp'], dependencies: i[1])
+endforeach