Added example meson.build

This commit is contained in:
Daniel Mensinger
2019-07-01 12:32:12 +02:00
parent af4026104c
commit 3c64b3da97
2 changed files with 9 additions and 0 deletions

8
example/meson.build Normal file
View File

@@ -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