mirror of
https://github.com/pantor/inja.git
synced 2026-04-28 10:19:25 +00:00
27 lines
539 B
Meson
27 lines
539 B
Meson
unit_test = executable(
|
|
'inja-test',
|
|
'src/unit.cpp',
|
|
'src/unit-files.cpp',
|
|
'src/unit-renderer.cpp',
|
|
'src/unit-string-helper.cpp',
|
|
dependencies: inja_dep
|
|
)
|
|
|
|
unit_single_test = executable(
|
|
'inja-single-test',
|
|
'src/unit.cpp',
|
|
'src/unit-files.cpp',
|
|
'src/unit-renderer.cpp',
|
|
'src/unit-string-helper.cpp',
|
|
dependencies: inja_single_dep
|
|
)
|
|
|
|
inja_benchmark = executable(
|
|
'inja_benchmark',
|
|
'src/benchmark.cpp',
|
|
dependencies: inja_dep
|
|
)
|
|
|
|
test('Inja unit test', unit_test)
|
|
test('Inja single unit test', unit_single_test)
|