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

meson.build « example - github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a5a53c72e8dc52a9ea0b8362d7c5a5fc2ce3fbb (plain)
1
2
3
4
5
6
7
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