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:
authorGabi Melman <gmelman1@gmail.com>2019-07-01 14:53:46 +0300
committerGitHub <noreply@github.com>2019-07-01 14:53:46 +0300
commit7b218737cc0c3f44cd6c7ada21e84255aca74373 (patch)
treee74961b2a84907b1df6a777a0458eeb9d1854017 /example
parentb1520a87c34aa63850953658656e15521fe8ca96 (diff)
parent2a2a34601c316f540b1dd21d7ca36f613e10c783 (diff)
Merge pull request #1126 from mensinda/meson
Add meson support
Diffstat (limited to 'example')
-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