mirror of
https://github.com/pantor/inja.git
synced 2026-03-06 01:06:25 +00:00
10 lines
182 B
Meson
10 lines
182 B
Meson
project('inja', 'cpp', default_options : ['cpp_std=c++11'])
|
|
|
|
inja_inc = include_directories('src')
|
|
|
|
inja_dep = declare_dependency(
|
|
include_directories : inja_inc
|
|
)
|
|
|
|
subdir('test')
|