Files
inja/meson.build
2024-10-05 10:01:11 +02:00

63 lines
1.2 KiB
Meson

project(
'inja',
'cpp',
version: '3.4.0',
default_options: ['cpp_std=c++17', 'warning_level=3'],
meson_version: '>=0.56'
)
inja_dep = declare_dependency(
include_directories: include_directories('include', 'third_party/include')
)
install_headers(
'include/inja/config.hpp',
'include/inja/environment.hpp',
'include/inja/exceptions.hpp',
'include/inja/function_storage.hpp',
'include/inja/inja.hpp',
'include/inja/lexer.hpp',
'include/inja/node.hpp',
'include/inja/parser.hpp',
'include/inja/renderer.hpp',
'include/inja/statistics.hpp',
'include/inja/template.hpp',
'include/inja/token.hpp',
'include/inja/utils.hpp',
subdir: 'inja'
)
run_command(
find_program('scripts/update_single_include.sh'),
check: true
)
if get_option('build_tests')
inja_test = executable(
'inja_test',
'test/test.cpp',
dependencies: inja_dep
)
inja_single_test = executable(
'inja_single_test',
'test/test.cpp',
'single_include/inja/inja.hpp',
dependencies: [inja_dep]
)
test('Inja unit test', inja_test)
test('Inja single include test', inja_single_test)
inja_benchmark = executable(
'inja_benchmark',
'test/benchmark.cpp',
dependencies: inja_dep
)
endif